composer.lock 435 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164
  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": "cb44f967436248d818ff0c782b82fb99",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^8.1"
  31. },
  32. "conflict": {
  33. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  34. },
  35. "require-dev": {
  36. "doctrine/dbal": "^4.0.0",
  37. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  38. "phpunit/phpunit": "^10.3"
  39. },
  40. "type": "library",
  41. "autoload": {
  42. "psr-4": {
  43. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  44. }
  45. },
  46. "notification-url": "https://packagist.org/downloads/",
  47. "license": [
  48. "MIT"
  49. ],
  50. "authors": [
  51. {
  52. "name": "KyleKatarn",
  53. "email": "kylekatarnls@gmail.com"
  54. }
  55. ],
  56. "description": "Types to use Carbon in Doctrine",
  57. "keywords": [
  58. "carbon",
  59. "date",
  60. "datetime",
  61. "doctrine",
  62. "time"
  63. ],
  64. "support": {
  65. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  66. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  67. },
  68. "funding": [
  69. {
  70. "url": "https://github.com/kylekatarnls",
  71. "type": "github"
  72. },
  73. {
  74. "url": "https://opencollective.com/Carbon",
  75. "type": "open_collective"
  76. },
  77. {
  78. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  79. "type": "tidelift"
  80. }
  81. ],
  82. "time": "2024-02-09T16:56:22+00:00"
  83. },
  84. {
  85. "name": "doctrine/inflector",
  86. "version": "2.0.10",
  87. "source": {
  88. "type": "git",
  89. "url": "https://github.com/doctrine/inflector.git",
  90. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  91. },
  92. "dist": {
  93. "type": "zip",
  94. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  95. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  96. "shasum": "",
  97. "mirrors": [
  98. {
  99. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  100. "preferred": true
  101. }
  102. ]
  103. },
  104. "require": {
  105. "php": "^7.2 || ^8.0"
  106. },
  107. "require-dev": {
  108. "doctrine/coding-standard": "^11.0",
  109. "phpstan/phpstan": "^1.8",
  110. "phpstan/phpstan-phpunit": "^1.1",
  111. "phpstan/phpstan-strict-rules": "^1.3",
  112. "phpunit/phpunit": "^8.5 || ^9.5",
  113. "vimeo/psalm": "^4.25 || ^5.4"
  114. },
  115. "type": "library",
  116. "autoload": {
  117. "psr-4": {
  118. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "authors": [
  126. {
  127. "name": "Guilherme Blanco",
  128. "email": "guilhermeblanco@gmail.com"
  129. },
  130. {
  131. "name": "Roman Borschel",
  132. "email": "roman@code-factory.org"
  133. },
  134. {
  135. "name": "Benjamin Eberlei",
  136. "email": "kontakt@beberlei.de"
  137. },
  138. {
  139. "name": "Jonathan Wage",
  140. "email": "jonwage@gmail.com"
  141. },
  142. {
  143. "name": "Johannes Schmitt",
  144. "email": "schmittjoh@gmail.com"
  145. }
  146. ],
  147. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  148. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  149. "keywords": [
  150. "inflection",
  151. "inflector",
  152. "lowercase",
  153. "manipulation",
  154. "php",
  155. "plural",
  156. "singular",
  157. "strings",
  158. "uppercase",
  159. "words"
  160. ],
  161. "support": {
  162. "issues": "https://github.com/doctrine/inflector/issues",
  163. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  164. },
  165. "funding": [
  166. {
  167. "url": "https://www.doctrine-project.org/sponsorship.html",
  168. "type": "custom"
  169. },
  170. {
  171. "url": "https://www.patreon.com/phpdoctrine",
  172. "type": "patreon"
  173. },
  174. {
  175. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  176. "type": "tidelift"
  177. }
  178. ],
  179. "time": "2024-02-18T20:23:39+00:00"
  180. },
  181. {
  182. "name": "doctrine/instantiator",
  183. "version": "1.5.0",
  184. "source": {
  185. "type": "git",
  186. "url": "https://github.com/doctrine/instantiator.git",
  187. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  188. },
  189. "dist": {
  190. "type": "zip",
  191. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  192. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  193. "shasum": "",
  194. "mirrors": [
  195. {
  196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  197. "preferred": true
  198. }
  199. ]
  200. },
  201. "require": {
  202. "php": "^7.1 || ^8.0"
  203. },
  204. "require-dev": {
  205. "doctrine/coding-standard": "^9 || ^11",
  206. "ext-pdo": "*",
  207. "ext-phar": "*",
  208. "phpbench/phpbench": "^0.16 || ^1",
  209. "phpstan/phpstan": "^1.4",
  210. "phpstan/phpstan-phpunit": "^1",
  211. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  212. "vimeo/psalm": "^4.30 || ^5.4"
  213. },
  214. "type": "library",
  215. "autoload": {
  216. "psr-4": {
  217. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  218. }
  219. },
  220. "notification-url": "https://packagist.org/downloads/",
  221. "license": [
  222. "MIT"
  223. ],
  224. "authors": [
  225. {
  226. "name": "Marco Pivetta",
  227. "email": "ocramius@gmail.com",
  228. "homepage": "https://ocramius.github.io/"
  229. }
  230. ],
  231. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  232. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  233. "keywords": [
  234. "constructor",
  235. "instantiate"
  236. ],
  237. "support": {
  238. "issues": "https://github.com/doctrine/instantiator/issues",
  239. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  240. },
  241. "funding": [
  242. {
  243. "url": "https://www.doctrine-project.org/sponsorship.html",
  244. "type": "custom"
  245. },
  246. {
  247. "url": "https://www.patreon.com/phpdoctrine",
  248. "type": "patreon"
  249. },
  250. {
  251. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  252. "type": "tidelift"
  253. }
  254. ],
  255. "time": "2022-12-30T00:15:36+00:00"
  256. },
  257. {
  258. "name": "elasticsearch/elasticsearch",
  259. "version": "v7.17.2",
  260. "source": {
  261. "type": "git",
  262. "url": "https://github.com/elastic/elasticsearch-php.git",
  263. "reference": "2d302233f2bb0926812d82823bb820d405e130fc"
  264. },
  265. "dist": {
  266. "type": "zip",
  267. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/2d302233f2bb0926812d82823bb820d405e130fc",
  268. "reference": "2d302233f2bb0926812d82823bb820d405e130fc",
  269. "shasum": "",
  270. "mirrors": [
  271. {
  272. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  273. "preferred": true
  274. }
  275. ]
  276. },
  277. "require": {
  278. "ext-json": ">=1.3.7",
  279. "ezimuel/ringphp": "^1.1.2",
  280. "php": "^7.3 || ^8.0",
  281. "psr/log": "^1|^2|^3"
  282. },
  283. "require-dev": {
  284. "ext-yaml": "*",
  285. "ext-zip": "*",
  286. "mockery/mockery": "^1.2",
  287. "phpstan/phpstan": "^1.10",
  288. "phpunit/phpunit": "^9.3",
  289. "squizlabs/php_codesniffer": "^3.4",
  290. "symfony/finder": "~4.0"
  291. },
  292. "suggest": {
  293. "ext-curl": "*",
  294. "monolog/monolog": "Allows for client-level logging and tracing"
  295. },
  296. "type": "library",
  297. "autoload": {
  298. "files": [
  299. "src/autoload.php"
  300. ],
  301. "psr-4": {
  302. "Elasticsearch\\": "src/Elasticsearch/"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "Apache-2.0",
  308. "LGPL-2.1-only"
  309. ],
  310. "authors": [
  311. {
  312. "name": "Zachary Tong"
  313. },
  314. {
  315. "name": "Enrico Zimuel"
  316. }
  317. ],
  318. "description": "PHP Client for Elasticsearch",
  319. "keywords": [
  320. "client",
  321. "elasticsearch",
  322. "search"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  326. "source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.2"
  327. },
  328. "time": "2023-04-21T15:31:12+00:00"
  329. },
  330. {
  331. "name": "ezimuel/guzzlestreams",
  332. "version": "3.1.0",
  333. "source": {
  334. "type": "git",
  335. "url": "https://github.com/ezimuel/guzzlestreams.git",
  336. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997"
  337. },
  338. "dist": {
  339. "type": "zip",
  340. "url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  341. "reference": "b4b5a025dfee70d6cd34c780e07330eb93d5b997",
  342. "shasum": "",
  343. "mirrors": [
  344. {
  345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  346. "preferred": true
  347. }
  348. ]
  349. },
  350. "require": {
  351. "php": ">=5.4.0"
  352. },
  353. "require-dev": {
  354. "phpunit/phpunit": "~9.0"
  355. },
  356. "type": "library",
  357. "extra": {
  358. "branch-alias": {
  359. "dev-master": "3.0-dev"
  360. }
  361. },
  362. "autoload": {
  363. "psr-4": {
  364. "GuzzleHttp\\Stream\\": "src/"
  365. }
  366. },
  367. "notification-url": "https://packagist.org/downloads/",
  368. "license": [
  369. "MIT"
  370. ],
  371. "authors": [
  372. {
  373. "name": "Michael Dowling",
  374. "email": "mtdowling@gmail.com",
  375. "homepage": "https://github.com/mtdowling"
  376. }
  377. ],
  378. "description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
  379. "homepage": "http://guzzlephp.org/",
  380. "keywords": [
  381. "Guzzle",
  382. "stream"
  383. ],
  384. "support": {
  385. "source": "https://github.com/ezimuel/guzzlestreams/tree/3.1.0"
  386. },
  387. "time": "2022-10-24T12:58:50+00:00"
  388. },
  389. {
  390. "name": "ezimuel/ringphp",
  391. "version": "1.2.3",
  392. "source": {
  393. "type": "git",
  394. "url": "https://github.com/ezimuel/ringphp.git",
  395. "reference": "648a9c3c8b5f2591a317d31aa7a18a784011b00d"
  396. },
  397. "dist": {
  398. "type": "zip",
  399. "url": "https://api.github.com/repos/ezimuel/ringphp/zipball/648a9c3c8b5f2591a317d31aa7a18a784011b00d",
  400. "reference": "648a9c3c8b5f2591a317d31aa7a18a784011b00d",
  401. "shasum": "",
  402. "mirrors": [
  403. {
  404. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  405. "preferred": true
  406. }
  407. ]
  408. },
  409. "require": {
  410. "ezimuel/guzzlestreams": "^3.0.1",
  411. "php": ">=5.4.0",
  412. "react/promise": "~2.0"
  413. },
  414. "replace": {
  415. "guzzlehttp/ringphp": "self.version"
  416. },
  417. "require-dev": {
  418. "ext-curl": "*",
  419. "phpunit/phpunit": "~9.0"
  420. },
  421. "suggest": {
  422. "ext-curl": "Guzzle will use specific adapters if cURL is present"
  423. },
  424. "type": "library",
  425. "extra": {
  426. "branch-alias": {
  427. "dev-master": "1.1-dev"
  428. }
  429. },
  430. "autoload": {
  431. "psr-4": {
  432. "GuzzleHttp\\Ring\\": "src/"
  433. }
  434. },
  435. "notification-url": "https://packagist.org/downloads/",
  436. "license": [
  437. "MIT"
  438. ],
  439. "authors": [
  440. {
  441. "name": "Michael Dowling",
  442. "email": "mtdowling@gmail.com",
  443. "homepage": "https://github.com/mtdowling"
  444. }
  445. ],
  446. "description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
  447. "support": {
  448. "source": "https://github.com/ezimuel/ringphp/tree/1.2.3"
  449. },
  450. "time": "2025-01-14T12:59:43+00:00"
  451. },
  452. {
  453. "name": "fig/http-message-util",
  454. "version": "1.1.5",
  455. "source": {
  456. "type": "git",
  457. "url": "https://github.com/php-fig/http-message-util.git",
  458. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  459. },
  460. "dist": {
  461. "type": "zip",
  462. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  463. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  464. "shasum": "",
  465. "mirrors": [
  466. {
  467. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  468. "preferred": true
  469. }
  470. ]
  471. },
  472. "require": {
  473. "php": "^5.3 || ^7.0 || ^8.0"
  474. },
  475. "suggest": {
  476. "psr/http-message": "The package containing the PSR-7 interfaces"
  477. },
  478. "type": "library",
  479. "extra": {
  480. "branch-alias": {
  481. "dev-master": "1.1.x-dev"
  482. }
  483. },
  484. "autoload": {
  485. "psr-4": {
  486. "Fig\\Http\\Message\\": "src/"
  487. }
  488. },
  489. "notification-url": "https://packagist.org/downloads/",
  490. "license": [
  491. "MIT"
  492. ],
  493. "authors": [
  494. {
  495. "name": "PHP-FIG",
  496. "homepage": "https://www.php-fig.org/"
  497. }
  498. ],
  499. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  500. "keywords": [
  501. "http",
  502. "http-message",
  503. "psr",
  504. "psr-7",
  505. "request",
  506. "response"
  507. ],
  508. "support": {
  509. "issues": "https://github.com/php-fig/http-message-util/issues",
  510. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  511. },
  512. "time": "2020-11-24T22:02:12+00:00"
  513. },
  514. {
  515. "name": "graham-campbell/result-type",
  516. "version": "1.1.x-dev",
  517. "source": {
  518. "type": "git",
  519. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  520. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66"
  521. },
  522. "dist": {
  523. "type": "zip",
  524. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  525. "reference": "9d6c1d7ce69a3329936e603617e59ba205ab0a66",
  526. "shasum": "",
  527. "mirrors": [
  528. {
  529. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  530. "preferred": true
  531. }
  532. ]
  533. },
  534. "require": {
  535. "php": "^7.2.5 || ^8.0",
  536. "phpoption/phpoption": "^1.9.3"
  537. },
  538. "require-dev": {
  539. "phpunit/phpunit": "^8.5.41 || ^9.6.22 || ^10.5.45 || ^11.5.7"
  540. },
  541. "default-branch": true,
  542. "type": "library",
  543. "autoload": {
  544. "psr-4": {
  545. "GrahamCampbell\\ResultType\\": "src/"
  546. }
  547. },
  548. "notification-url": "https://packagist.org/downloads/",
  549. "license": [
  550. "MIT"
  551. ],
  552. "authors": [
  553. {
  554. "name": "Graham Campbell",
  555. "email": "hello@gjcampbell.co.uk",
  556. "homepage": "https://github.com/GrahamCampbell"
  557. }
  558. ],
  559. "description": "An Implementation Of The Result Type",
  560. "keywords": [
  561. "Graham Campbell",
  562. "GrahamCampbell",
  563. "Result Type",
  564. "Result-Type",
  565. "result"
  566. ],
  567. "support": {
  568. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  569. "source": "https://github.com/GrahamCampbell/Result-Type/tree/1.1"
  570. },
  571. "funding": [
  572. {
  573. "url": "https://github.com/GrahamCampbell",
  574. "type": "github"
  575. },
  576. {
  577. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  578. "type": "tidelift"
  579. }
  580. ],
  581. "time": "2025-02-09T22:43:44+00:00"
  582. },
  583. {
  584. "name": "guzzlehttp/guzzle",
  585. "version": "7.9.2",
  586. "source": {
  587. "type": "git",
  588. "url": "https://github.com/guzzle/guzzle.git",
  589. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  590. },
  591. "dist": {
  592. "type": "zip",
  593. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  594. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  595. "shasum": "",
  596. "mirrors": [
  597. {
  598. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  599. "preferred": true
  600. }
  601. ]
  602. },
  603. "require": {
  604. "ext-json": "*",
  605. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  606. "guzzlehttp/psr7": "^2.7.0",
  607. "php": "^7.2.5 || ^8.0",
  608. "psr/http-client": "^1.0",
  609. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  610. },
  611. "provide": {
  612. "psr/http-client-implementation": "1.0"
  613. },
  614. "require-dev": {
  615. "bamarni/composer-bin-plugin": "^1.8.2",
  616. "ext-curl": "*",
  617. "guzzle/client-integration-tests": "3.0.2",
  618. "php-http/message-factory": "^1.1",
  619. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  620. "psr/log": "^1.1 || ^2.0 || ^3.0"
  621. },
  622. "suggest": {
  623. "ext-curl": "Required for CURL handler support",
  624. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  625. "psr/log": "Required for using the Log middleware"
  626. },
  627. "type": "library",
  628. "extra": {
  629. "bamarni-bin": {
  630. "bin-links": true,
  631. "forward-command": false
  632. }
  633. },
  634. "autoload": {
  635. "files": [
  636. "src/functions_include.php"
  637. ],
  638. "psr-4": {
  639. "GuzzleHttp\\": "src/"
  640. }
  641. },
  642. "notification-url": "https://packagist.org/downloads/",
  643. "license": [
  644. "MIT"
  645. ],
  646. "authors": [
  647. {
  648. "name": "Graham Campbell",
  649. "email": "hello@gjcampbell.co.uk",
  650. "homepage": "https://github.com/GrahamCampbell"
  651. },
  652. {
  653. "name": "Michael Dowling",
  654. "email": "mtdowling@gmail.com",
  655. "homepage": "https://github.com/mtdowling"
  656. },
  657. {
  658. "name": "Jeremy Lindblom",
  659. "email": "jeremeamia@gmail.com",
  660. "homepage": "https://github.com/jeremeamia"
  661. },
  662. {
  663. "name": "George Mponos",
  664. "email": "gmponos@gmail.com",
  665. "homepage": "https://github.com/gmponos"
  666. },
  667. {
  668. "name": "Tobias Nyholm",
  669. "email": "tobias.nyholm@gmail.com",
  670. "homepage": "https://github.com/Nyholm"
  671. },
  672. {
  673. "name": "Márk Sági-Kazár",
  674. "email": "mark.sagikazar@gmail.com",
  675. "homepage": "https://github.com/sagikazarmark"
  676. },
  677. {
  678. "name": "Tobias Schultze",
  679. "email": "webmaster@tubo-world.de",
  680. "homepage": "https://github.com/Tobion"
  681. }
  682. ],
  683. "description": "Guzzle is a PHP HTTP client library",
  684. "keywords": [
  685. "client",
  686. "curl",
  687. "framework",
  688. "http",
  689. "http client",
  690. "psr-18",
  691. "psr-7",
  692. "rest",
  693. "web service"
  694. ],
  695. "support": {
  696. "issues": "https://github.com/guzzle/guzzle/issues",
  697. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  698. },
  699. "funding": [
  700. {
  701. "url": "https://github.com/GrahamCampbell",
  702. "type": "github"
  703. },
  704. {
  705. "url": "https://github.com/Nyholm",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  710. "type": "tidelift"
  711. }
  712. ],
  713. "time": "2024-07-24T11:22:20+00:00"
  714. },
  715. {
  716. "name": "guzzlehttp/promises",
  717. "version": "2.2.0",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/guzzle/promises.git",
  721. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  726. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  727. "shasum": "",
  728. "mirrors": [
  729. {
  730. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  731. "preferred": true
  732. }
  733. ]
  734. },
  735. "require": {
  736. "php": "^7.2.5 || ^8.0"
  737. },
  738. "require-dev": {
  739. "bamarni/composer-bin-plugin": "^1.8.2",
  740. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  741. },
  742. "type": "library",
  743. "extra": {
  744. "bamarni-bin": {
  745. "bin-links": true,
  746. "forward-command": false
  747. }
  748. },
  749. "autoload": {
  750. "psr-4": {
  751. "GuzzleHttp\\Promise\\": "src/"
  752. }
  753. },
  754. "notification-url": "https://packagist.org/downloads/",
  755. "license": [
  756. "MIT"
  757. ],
  758. "authors": [
  759. {
  760. "name": "Graham Campbell",
  761. "email": "hello@gjcampbell.co.uk",
  762. "homepage": "https://github.com/GrahamCampbell"
  763. },
  764. {
  765. "name": "Michael Dowling",
  766. "email": "mtdowling@gmail.com",
  767. "homepage": "https://github.com/mtdowling"
  768. },
  769. {
  770. "name": "Tobias Nyholm",
  771. "email": "tobias.nyholm@gmail.com",
  772. "homepage": "https://github.com/Nyholm"
  773. },
  774. {
  775. "name": "Tobias Schultze",
  776. "email": "webmaster@tubo-world.de",
  777. "homepage": "https://github.com/Tobion"
  778. }
  779. ],
  780. "description": "Guzzle promises library",
  781. "keywords": [
  782. "promise"
  783. ],
  784. "support": {
  785. "issues": "https://github.com/guzzle/promises/issues",
  786. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  787. },
  788. "funding": [
  789. {
  790. "url": "https://github.com/GrahamCampbell",
  791. "type": "github"
  792. },
  793. {
  794. "url": "https://github.com/Nyholm",
  795. "type": "github"
  796. },
  797. {
  798. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  799. "type": "tidelift"
  800. }
  801. ],
  802. "time": "2025-03-27T13:27:01+00:00"
  803. },
  804. {
  805. "name": "guzzlehttp/psr7",
  806. "version": "2.7.1",
  807. "source": {
  808. "type": "git",
  809. "url": "https://github.com/guzzle/psr7.git",
  810. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  811. },
  812. "dist": {
  813. "type": "zip",
  814. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  815. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  816. "shasum": "",
  817. "mirrors": [
  818. {
  819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  820. "preferred": true
  821. }
  822. ]
  823. },
  824. "require": {
  825. "php": "^7.2.5 || ^8.0",
  826. "psr/http-factory": "^1.0",
  827. "psr/http-message": "^1.1 || ^2.0",
  828. "ralouphie/getallheaders": "^3.0"
  829. },
  830. "provide": {
  831. "psr/http-factory-implementation": "1.0",
  832. "psr/http-message-implementation": "1.0"
  833. },
  834. "require-dev": {
  835. "bamarni/composer-bin-plugin": "^1.8.2",
  836. "http-interop/http-factory-tests": "0.9.0",
  837. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  838. },
  839. "suggest": {
  840. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  841. },
  842. "type": "library",
  843. "extra": {
  844. "bamarni-bin": {
  845. "bin-links": true,
  846. "forward-command": false
  847. }
  848. },
  849. "autoload": {
  850. "psr-4": {
  851. "GuzzleHttp\\Psr7\\": "src/"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Graham Campbell",
  861. "email": "hello@gjcampbell.co.uk",
  862. "homepage": "https://github.com/GrahamCampbell"
  863. },
  864. {
  865. "name": "Michael Dowling",
  866. "email": "mtdowling@gmail.com",
  867. "homepage": "https://github.com/mtdowling"
  868. },
  869. {
  870. "name": "George Mponos",
  871. "email": "gmponos@gmail.com",
  872. "homepage": "https://github.com/gmponos"
  873. },
  874. {
  875. "name": "Tobias Nyholm",
  876. "email": "tobias.nyholm@gmail.com",
  877. "homepage": "https://github.com/Nyholm"
  878. },
  879. {
  880. "name": "Márk Sági-Kazár",
  881. "email": "mark.sagikazar@gmail.com",
  882. "homepage": "https://github.com/sagikazarmark"
  883. },
  884. {
  885. "name": "Tobias Schultze",
  886. "email": "webmaster@tubo-world.de",
  887. "homepage": "https://github.com/Tobion"
  888. },
  889. {
  890. "name": "Márk Sági-Kazár",
  891. "email": "mark.sagikazar@gmail.com",
  892. "homepage": "https://sagikazarmark.hu"
  893. }
  894. ],
  895. "description": "PSR-7 message implementation that also provides common utility methods",
  896. "keywords": [
  897. "http",
  898. "message",
  899. "psr-7",
  900. "request",
  901. "response",
  902. "stream",
  903. "uri",
  904. "url"
  905. ],
  906. "support": {
  907. "issues": "https://github.com/guzzle/psr7/issues",
  908. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  909. },
  910. "funding": [
  911. {
  912. "url": "https://github.com/GrahamCampbell",
  913. "type": "github"
  914. },
  915. {
  916. "url": "https://github.com/Nyholm",
  917. "type": "github"
  918. },
  919. {
  920. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  921. "type": "tidelift"
  922. }
  923. ],
  924. "time": "2025-03-27T12:30:47+00:00"
  925. },
  926. {
  927. "name": "hyperf/amqp",
  928. "version": "v3.1.50",
  929. "source": {
  930. "type": "git",
  931. "url": "https://github.com/hyperf/amqp.git",
  932. "reference": "db5e24822f2dcc3af055b5c985702f59901be380"
  933. },
  934. "dist": {
  935. "type": "zip",
  936. "url": "https://api.github.com/repos/hyperf/amqp/zipball/db5e24822f2dcc3af055b5c985702f59901be380",
  937. "reference": "db5e24822f2dcc3af055b5c985702f59901be380",
  938. "shasum": "",
  939. "mirrors": [
  940. {
  941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  942. "preferred": true
  943. }
  944. ]
  945. },
  946. "require": {
  947. "doctrine/instantiator": "^1.2.0",
  948. "hyperf/codec": "~3.1.0",
  949. "hyperf/contract": "~3.1.0",
  950. "hyperf/coroutine": "~3.1.0",
  951. "hyperf/pool": "~3.1.0",
  952. "hyperf/process": "~3.1.0",
  953. "hyperf/support": "~3.1.0",
  954. "hyperf/utils": "~3.1.0",
  955. "php": ">=8.1",
  956. "php-amqplib/php-amqplib": "^3.5",
  957. "psr/container": "^1.0 || ^2.0",
  958. "psr/event-dispatcher": "^1.0",
  959. "psr/log": "^1.0 || ^2.0 || ^3.0"
  960. },
  961. "suggest": {
  962. "hyperf/di": "Required to use annotations.",
  963. "hyperf/event": "Declare queue and start consumers automatically."
  964. },
  965. "type": "library",
  966. "extra": {
  967. "hyperf": {
  968. "config": "Hyperf\\Amqp\\ConfigProvider"
  969. },
  970. "branch-alias": {
  971. "dev-master": "3.1-dev"
  972. }
  973. },
  974. "autoload": {
  975. "psr-4": {
  976. "Hyperf\\Amqp\\": "src/"
  977. }
  978. },
  979. "notification-url": "https://packagist.org/downloads/",
  980. "license": [
  981. "MIT"
  982. ],
  983. "description": "A amqplib for hyperf.",
  984. "homepage": "https://hyperf.io",
  985. "keywords": [
  986. "AMQP",
  987. "hyperf",
  988. "php"
  989. ],
  990. "support": {
  991. "docs": "https://hyperf.wiki",
  992. "issues": "https://github.com/hyperf/hyperf/issues",
  993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  994. "source": "https://github.com/hyperf/hyperf"
  995. },
  996. "funding": [
  997. {
  998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  999. "type": "custom"
  1000. },
  1001. {
  1002. "url": "https://opencollective.com/hyperf",
  1003. "type": "open_collective"
  1004. }
  1005. ],
  1006. "time": "2025-01-08T08:57:09+00:00"
  1007. },
  1008. {
  1009. "name": "hyperf/async-queue",
  1010. "version": "v3.1.51",
  1011. "source": {
  1012. "type": "git",
  1013. "url": "https://github.com/hyperf/async-queue.git",
  1014. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0"
  1015. },
  1016. "dist": {
  1017. "type": "zip",
  1018. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1019. "reference": "29f49ba266dd0a5763e2c4d8edfe5a448f944ff0",
  1020. "shasum": "",
  1021. "mirrors": [
  1022. {
  1023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1024. "preferred": true
  1025. }
  1026. ]
  1027. },
  1028. "require": {
  1029. "hyperf/codec": "~3.1.0",
  1030. "hyperf/collection": "~3.1.0",
  1031. "hyperf/command": "~3.1.0",
  1032. "hyperf/contract": "~3.1.0",
  1033. "hyperf/support": "~3.1.0",
  1034. "hyperf/utils": "~3.1.0",
  1035. "php": ">=8.1",
  1036. "psr/container": "^1.0 || ^2.0",
  1037. "psr/event-dispatcher": "^1.0"
  1038. },
  1039. "suggest": {
  1040. "hyperf/di": "Required to use annotations.",
  1041. "hyperf/event": "Required to dispatch a event.",
  1042. "hyperf/logger": "Required to use QueueHandleListener.",
  1043. "hyperf/process": "Auto register the consumer process for server."
  1044. },
  1045. "type": "library",
  1046. "extra": {
  1047. "hyperf": {
  1048. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1049. },
  1050. "branch-alias": {
  1051. "dev-master": "3.1-dev"
  1052. }
  1053. },
  1054. "autoload": {
  1055. "files": [
  1056. "src/Functions.php"
  1057. ],
  1058. "psr-4": {
  1059. "Hyperf\\AsyncQueue\\": "src/"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "description": "A async queue component for hyperf.",
  1067. "homepage": "https://hyperf.io",
  1068. "keywords": [
  1069. "async-queue",
  1070. "hyperf",
  1071. "php"
  1072. ],
  1073. "support": {
  1074. "docs": "https://hyperf.wiki",
  1075. "issues": "https://github.com/hyperf/hyperf/issues",
  1076. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1077. "source": "https://github.com/hyperf/hyperf"
  1078. },
  1079. "funding": [
  1080. {
  1081. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1082. "type": "custom"
  1083. },
  1084. {
  1085. "url": "https://opencollective.com/hyperf",
  1086. "type": "open_collective"
  1087. }
  1088. ],
  1089. "time": "2025-01-14T06:55:15+00:00"
  1090. },
  1091. {
  1092. "name": "hyperf/cache",
  1093. "version": "v3.1.43",
  1094. "source": {
  1095. "type": "git",
  1096. "url": "https://github.com/hyperf/cache.git",
  1097. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1098. },
  1099. "dist": {
  1100. "type": "zip",
  1101. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1102. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1103. "shasum": "",
  1104. "mirrors": [
  1105. {
  1106. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1107. "preferred": true
  1108. }
  1109. ]
  1110. },
  1111. "require": {
  1112. "hyperf/codec": "~3.1.0",
  1113. "hyperf/collection": "~3.1.0",
  1114. "hyperf/contract": "~3.1.0",
  1115. "hyperf/support": "~3.1.0",
  1116. "hyperf/utils": "~3.1.0",
  1117. "php": ">=8.1",
  1118. "psr/container": "^1.0 || ^2.0",
  1119. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1120. },
  1121. "suggest": {
  1122. "hyperf/di": "Use cache annotations.",
  1123. "hyperf/event": "Use listener to delete annotation cache."
  1124. },
  1125. "type": "library",
  1126. "extra": {
  1127. "hyperf": {
  1128. "config": "Hyperf\\Cache\\ConfigProvider"
  1129. },
  1130. "branch-alias": {
  1131. "dev-master": "3.1-dev"
  1132. }
  1133. },
  1134. "autoload": {
  1135. "psr-4": {
  1136. "Hyperf\\Cache\\": "src/"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "description": "A cache component for hyperf.",
  1144. "homepage": "https://hyperf.io",
  1145. "keywords": [
  1146. "cache",
  1147. "hyperf",
  1148. "php"
  1149. ],
  1150. "support": {
  1151. "docs": "https://hyperf.wiki",
  1152. "issues": "https://github.com/hyperf/hyperf/issues",
  1153. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1154. "source": "https://github.com/hyperf/hyperf"
  1155. },
  1156. "funding": [
  1157. {
  1158. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1159. "type": "custom"
  1160. },
  1161. {
  1162. "url": "https://opencollective.com/hyperf",
  1163. "type": "open_collective"
  1164. }
  1165. ],
  1166. "time": "2024-10-09T10:22:39+00:00"
  1167. },
  1168. {
  1169. "name": "hyperf/code-parser",
  1170. "version": "v3.1.52",
  1171. "source": {
  1172. "type": "git",
  1173. "url": "https://github.com/hyperf/code-parser.git",
  1174. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1175. },
  1176. "dist": {
  1177. "type": "zip",
  1178. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1179. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1180. "shasum": "",
  1181. "mirrors": [
  1182. {
  1183. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1184. "preferred": true
  1185. }
  1186. ]
  1187. },
  1188. "require": {
  1189. "hyperf/collection": "~3.1.0",
  1190. "hyperf/stringable": "~3.1.0",
  1191. "hyperf/support": "~3.1.0",
  1192. "php": ">=8.1"
  1193. },
  1194. "suggest": {
  1195. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1196. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1197. },
  1198. "type": "library",
  1199. "extra": {
  1200. "branch-alias": {
  1201. "dev-master": "3.1-dev"
  1202. }
  1203. },
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Hyperf\\CodeParser\\": "src/"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "description": "A code parser component for Hyperf.",
  1214. "homepage": "https://hyperf.io",
  1215. "keywords": [
  1216. "code-parser",
  1217. "hyperf",
  1218. "php",
  1219. "swoole"
  1220. ],
  1221. "support": {
  1222. "docs": "https://hyperf.wiki",
  1223. "issues": "https://github.com/hyperf/hyperf/issues",
  1224. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1225. "source": "https://github.com/hyperf/hyperf"
  1226. },
  1227. "funding": [
  1228. {
  1229. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1230. "type": "custom"
  1231. },
  1232. {
  1233. "url": "https://opencollective.com/hyperf",
  1234. "type": "open_collective"
  1235. }
  1236. ],
  1237. "time": "2025-02-27T07:40:13+00:00"
  1238. },
  1239. {
  1240. "name": "hyperf/codec",
  1241. "version": "v3.1.42",
  1242. "source": {
  1243. "type": "git",
  1244. "url": "https://github.com/hyperf/codec.git",
  1245. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1246. },
  1247. "dist": {
  1248. "type": "zip",
  1249. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1250. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1251. "shasum": "",
  1252. "mirrors": [
  1253. {
  1254. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1255. "preferred": true
  1256. }
  1257. ]
  1258. },
  1259. "require": {
  1260. "ext-json": "*",
  1261. "ext-xml": "*",
  1262. "hyperf/contract": "~3.1.0",
  1263. "php": ">=8.1"
  1264. },
  1265. "suggest": {
  1266. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1267. },
  1268. "type": "library",
  1269. "extra": {
  1270. "branch-alias": {
  1271. "dev-master": "3.1-dev"
  1272. }
  1273. },
  1274. "autoload": {
  1275. "psr-4": {
  1276. "Hyperf\\Codec\\": "src/"
  1277. }
  1278. },
  1279. "notification-url": "https://packagist.org/downloads/",
  1280. "license": [
  1281. "MIT"
  1282. ],
  1283. "description": "A codec component for Hyperf.",
  1284. "homepage": "https://hyperf.io",
  1285. "keywords": [
  1286. "codec",
  1287. "hyperf",
  1288. "php",
  1289. "swoole"
  1290. ],
  1291. "support": {
  1292. "docs": "https://hyperf.wiki",
  1293. "issues": "https://github.com/hyperf/hyperf/issues",
  1294. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1295. "source": "https://github.com/hyperf/hyperf"
  1296. },
  1297. "funding": [
  1298. {
  1299. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1300. "type": "custom"
  1301. },
  1302. {
  1303. "url": "https://opencollective.com/hyperf",
  1304. "type": "open_collective"
  1305. }
  1306. ],
  1307. "time": "2024-09-25T02:54:12+00:00"
  1308. },
  1309. {
  1310. "name": "hyperf/collection",
  1311. "version": "v3.1.52",
  1312. "source": {
  1313. "type": "git",
  1314. "url": "https://github.com/hyperf/collection.git",
  1315. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1316. },
  1317. "dist": {
  1318. "type": "zip",
  1319. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1320. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1321. "shasum": "",
  1322. "mirrors": [
  1323. {
  1324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1325. "preferred": true
  1326. }
  1327. ]
  1328. },
  1329. "require": {
  1330. "hyperf/conditionable": "~3.1.0",
  1331. "hyperf/contract": "~3.1.0",
  1332. "hyperf/macroable": "~3.1.0",
  1333. "hyperf/stringable": "~3.1.0",
  1334. "php": ">=8.1"
  1335. },
  1336. "type": "library",
  1337. "extra": {
  1338. "branch-alias": {
  1339. "dev-master": "3.1-dev"
  1340. }
  1341. },
  1342. "autoload": {
  1343. "files": [
  1344. "src/Functions.php"
  1345. ],
  1346. "psr-4": {
  1347. "Hyperf\\Collection\\": "src/"
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "description": "Hyperf Collection package which come from illuminate/collections",
  1355. "homepage": "https://hyperf.io",
  1356. "keywords": [
  1357. "collection",
  1358. "hyperf",
  1359. "php",
  1360. "swoole"
  1361. ],
  1362. "support": {
  1363. "docs": "https://hyperf.wiki",
  1364. "issues": "https://github.com/hyperf/hyperf/issues",
  1365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1366. "source": "https://github.com/hyperf/hyperf"
  1367. },
  1368. "funding": [
  1369. {
  1370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1371. "type": "custom"
  1372. },
  1373. {
  1374. "url": "https://opencollective.com/hyperf",
  1375. "type": "open_collective"
  1376. }
  1377. ],
  1378. "time": "2025-02-17T03:58:59+00:00"
  1379. },
  1380. {
  1381. "name": "hyperf/command",
  1382. "version": "v3.1.51",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/hyperf/command.git",
  1386. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1391. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1392. "shasum": "",
  1393. "mirrors": [
  1394. {
  1395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1396. "preferred": true
  1397. }
  1398. ]
  1399. },
  1400. "require": {
  1401. "hyperf/collection": "~3.1.0",
  1402. "hyperf/context": "~3.1.0",
  1403. "hyperf/contract": "~3.1.0",
  1404. "hyperf/coroutine": "~3.1.0",
  1405. "hyperf/di": "~3.1.0",
  1406. "hyperf/stringable": "~3.1.0",
  1407. "hyperf/support": "~3.1.0",
  1408. "hyperf/tappable": "~3.1.0",
  1409. "php": ">=8.1",
  1410. "psr/event-dispatcher": "^1.0",
  1411. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1412. },
  1413. "suggest": {
  1414. "hyperf/di": "Required to use annotations.",
  1415. "hyperf/event": "Required to use listeners."
  1416. },
  1417. "type": "library",
  1418. "extra": {
  1419. "hyperf": {
  1420. "config": "Hyperf\\Command\\ConfigProvider"
  1421. },
  1422. "branch-alias": {
  1423. "dev-master": "3.1-dev"
  1424. }
  1425. },
  1426. "autoload": {
  1427. "psr-4": {
  1428. "Hyperf\\Command\\": "src/"
  1429. }
  1430. },
  1431. "notification-url": "https://packagist.org/downloads/",
  1432. "license": [
  1433. "MIT"
  1434. ],
  1435. "description": "Command for hyperf",
  1436. "keywords": [
  1437. "command",
  1438. "php",
  1439. "swoole"
  1440. ],
  1441. "support": {
  1442. "issues": "https://github.com/hyperf/command/issues",
  1443. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1444. },
  1445. "funding": [
  1446. {
  1447. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1448. "type": "custom"
  1449. },
  1450. {
  1451. "url": "https://opencollective.com/hyperf",
  1452. "type": "open_collective"
  1453. }
  1454. ],
  1455. "time": "2025-02-06T03:40:37+00:00"
  1456. },
  1457. {
  1458. "name": "hyperf/conditionable",
  1459. "version": "v3.1.42",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/hyperf/conditionable.git",
  1463. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1468. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1469. "shasum": "",
  1470. "mirrors": [
  1471. {
  1472. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1473. "preferred": true
  1474. }
  1475. ]
  1476. },
  1477. "require": {
  1478. "php": ">=8.1"
  1479. },
  1480. "type": "library",
  1481. "extra": {
  1482. "branch-alias": {
  1483. "dev-master": "3.1-dev"
  1484. }
  1485. },
  1486. "autoload": {
  1487. "psr-4": {
  1488. "Hyperf\\Conditionable\\": "src/"
  1489. }
  1490. },
  1491. "notification-url": "https://packagist.org/downloads/",
  1492. "license": [
  1493. "MIT"
  1494. ],
  1495. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1496. "homepage": "https://hyperf.io",
  1497. "keywords": [
  1498. "conditionable",
  1499. "hyperf",
  1500. "php",
  1501. "swoole"
  1502. ],
  1503. "support": {
  1504. "docs": "https://hyperf.wiki",
  1505. "issues": "https://github.com/hyperf/hyperf/issues",
  1506. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1507. "source": "https://github.com/hyperf/hyperf"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://opencollective.com/hyperf",
  1516. "type": "open_collective"
  1517. }
  1518. ],
  1519. "time": "2024-09-25T02:54:12+00:00"
  1520. },
  1521. {
  1522. "name": "hyperf/config",
  1523. "version": "v3.1.42",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/hyperf/config.git",
  1527. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1532. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1533. "shasum": "",
  1534. "mirrors": [
  1535. {
  1536. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1537. "preferred": true
  1538. }
  1539. ]
  1540. },
  1541. "require": {
  1542. "hyperf/collection": "~3.1.0",
  1543. "hyperf/contract": "~3.1.0",
  1544. "hyperf/support": "~3.1.0",
  1545. "php": ">=8.1",
  1546. "psr/container": "^1.0 || ^2.0",
  1547. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1548. },
  1549. "suggest": {
  1550. "hyperf/context": "Required to use config()",
  1551. "hyperf/di": "Allows using @Value annotation",
  1552. "hyperf/event": "Allows using @Value annotation",
  1553. "hyperf/framework": "Allows using @Value annotation",
  1554. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "hyperf": {
  1559. "config": "Hyperf\\Config\\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\\Config\\": "src/"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "description": "An independent component that provides configuration container.",
  1578. "homepage": "https://hyperf.io",
  1579. "keywords": [
  1580. "config",
  1581. "configuration",
  1582. "hyperf",
  1583. "php",
  1584. "swoole"
  1585. ],
  1586. "support": {
  1587. "docs": "https://hyperf.wiki",
  1588. "issues": "https://github.com/hyperf/hyperf/issues",
  1589. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1590. "source": "https://github.com/hyperf/hyperf"
  1591. },
  1592. "funding": [
  1593. {
  1594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1595. "type": "custom"
  1596. },
  1597. {
  1598. "url": "https://opencollective.com/hyperf",
  1599. "type": "open_collective"
  1600. }
  1601. ],
  1602. "time": "2024-09-25T02:54:12+00:00"
  1603. },
  1604. {
  1605. "name": "hyperf/constants",
  1606. "version": "v3.1.42",
  1607. "source": {
  1608. "type": "git",
  1609. "url": "https://github.com/hyperf/constants.git",
  1610. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1611. },
  1612. "dist": {
  1613. "type": "zip",
  1614. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1615. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1616. "shasum": "",
  1617. "mirrors": [
  1618. {
  1619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1620. "preferred": true
  1621. }
  1622. ]
  1623. },
  1624. "require": {
  1625. "hyperf/di": "~3.1.0",
  1626. "hyperf/support": "~3.1.0",
  1627. "hyperf/utils": "~3.1.0",
  1628. "php": ">=8.1"
  1629. },
  1630. "suggest": {
  1631. "hyperf/translation": "Required to use translation."
  1632. },
  1633. "type": "library",
  1634. "extra": {
  1635. "hyperf": {
  1636. "config": "Hyperf\\Constants\\ConfigProvider"
  1637. },
  1638. "branch-alias": {
  1639. "dev-master": "3.1-dev"
  1640. }
  1641. },
  1642. "autoload": {
  1643. "psr-4": {
  1644. "Hyperf\\Constants\\": "src/"
  1645. }
  1646. },
  1647. "notification-url": "https://packagist.org/downloads/",
  1648. "license": [
  1649. "MIT"
  1650. ],
  1651. "description": "A constants component for hyperf.",
  1652. "homepage": "https://hyperf.io",
  1653. "keywords": [
  1654. "constants",
  1655. "hyperf",
  1656. "php"
  1657. ],
  1658. "support": {
  1659. "docs": "https://hyperf.wiki",
  1660. "issues": "https://github.com/hyperf/hyperf/issues",
  1661. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1662. "source": "https://github.com/hyperf/hyperf"
  1663. },
  1664. "funding": [
  1665. {
  1666. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1667. "type": "custom"
  1668. },
  1669. {
  1670. "url": "https://opencollective.com/hyperf",
  1671. "type": "open_collective"
  1672. }
  1673. ],
  1674. "time": "2024-09-25T02:54:12+00:00"
  1675. },
  1676. {
  1677. "name": "hyperf/context",
  1678. "version": "v3.1.42",
  1679. "source": {
  1680. "type": "git",
  1681. "url": "https://github.com/hyperf/context.git",
  1682. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1683. },
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1687. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1688. "shasum": "",
  1689. "mirrors": [
  1690. {
  1691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1692. "preferred": true
  1693. }
  1694. ]
  1695. },
  1696. "require": {
  1697. "hyperf/engine": "^2.0",
  1698. "php": ">=8.1"
  1699. },
  1700. "suggest": {
  1701. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "3.1-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "Hyperf\\Context\\": "src/"
  1712. }
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "description": "A coroutine/application context library.",
  1719. "homepage": "https://hyperf.io",
  1720. "keywords": [
  1721. "Context",
  1722. "hyperf",
  1723. "php",
  1724. "swoole"
  1725. ],
  1726. "support": {
  1727. "docs": "https://hyperf.wiki",
  1728. "issues": "https://github.com/hyperf/hyperf/issues",
  1729. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1730. "source": "https://github.com/hyperf/hyperf"
  1731. },
  1732. "funding": [
  1733. {
  1734. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1735. "type": "custom"
  1736. },
  1737. {
  1738. "url": "https://opencollective.com/hyperf",
  1739. "type": "open_collective"
  1740. }
  1741. ],
  1742. "time": "2024-09-25T02:54:12+00:00"
  1743. },
  1744. {
  1745. "name": "hyperf/contract",
  1746. "version": "v3.1.42",
  1747. "source": {
  1748. "type": "git",
  1749. "url": "https://github.com/hyperf/contract.git",
  1750. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1751. },
  1752. "dist": {
  1753. "type": "zip",
  1754. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1755. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1756. "shasum": "",
  1757. "mirrors": [
  1758. {
  1759. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1760. "preferred": true
  1761. }
  1762. ]
  1763. },
  1764. "require": {
  1765. "php": ">=8.1"
  1766. },
  1767. "type": "library",
  1768. "extra": {
  1769. "branch-alias": {
  1770. "dev-master": "3.1-dev"
  1771. }
  1772. },
  1773. "autoload": {
  1774. "psr-4": {
  1775. "Hyperf\\Contract\\": "src/"
  1776. }
  1777. },
  1778. "notification-url": "https://packagist.org/downloads/",
  1779. "license": [
  1780. "MIT"
  1781. ],
  1782. "description": "The contracts of Hyperf.",
  1783. "homepage": "https://hyperf.io",
  1784. "keywords": [
  1785. "hyperf",
  1786. "php",
  1787. "swoole"
  1788. ],
  1789. "support": {
  1790. "docs": "https://hyperf.wiki",
  1791. "issues": "https://github.com/hyperf/hyperf/issues",
  1792. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1793. "source": "https://github.com/hyperf/hyperf"
  1794. },
  1795. "funding": [
  1796. {
  1797. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1798. "type": "custom"
  1799. },
  1800. {
  1801. "url": "https://opencollective.com/hyperf",
  1802. "type": "open_collective"
  1803. }
  1804. ],
  1805. "time": "2024-09-25T02:54:12+00:00"
  1806. },
  1807. {
  1808. "name": "hyperf/coordinator",
  1809. "version": "v3.1.42",
  1810. "source": {
  1811. "type": "git",
  1812. "url": "https://github.com/hyperf/coordinator.git",
  1813. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1814. },
  1815. "dist": {
  1816. "type": "zip",
  1817. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1818. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1819. "shasum": "",
  1820. "mirrors": [
  1821. {
  1822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1823. "preferred": true
  1824. }
  1825. ]
  1826. },
  1827. "require": {
  1828. "hyperf/engine": "^2.0",
  1829. "php": ">=8.1"
  1830. },
  1831. "type": "library",
  1832. "extra": {
  1833. "branch-alias": {
  1834. "dev-master": "3.1-dev"
  1835. }
  1836. },
  1837. "autoload": {
  1838. "files": [
  1839. "src/Functions.php"
  1840. ],
  1841. "psr-4": {
  1842. "Hyperf\\Coordinator\\": "src/"
  1843. }
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "description": "Hyperf Coordinator",
  1850. "homepage": "https://hyperf.io",
  1851. "keywords": [
  1852. "Coordinator",
  1853. "hyperf",
  1854. "php",
  1855. "swoole"
  1856. ],
  1857. "support": {
  1858. "docs": "https://hyperf.wiki",
  1859. "issues": "https://github.com/hyperf/hyperf/issues",
  1860. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1861. "source": "https://github.com/hyperf/hyperf"
  1862. },
  1863. "funding": [
  1864. {
  1865. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1866. "type": "custom"
  1867. },
  1868. {
  1869. "url": "https://opencollective.com/hyperf",
  1870. "type": "open_collective"
  1871. }
  1872. ],
  1873. "time": "2024-09-25T02:54:12+00:00"
  1874. },
  1875. {
  1876. "name": "hyperf/coroutine",
  1877. "version": "v3.1.52",
  1878. "source": {
  1879. "type": "git",
  1880. "url": "https://github.com/hyperf/coroutine.git",
  1881. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64"
  1882. },
  1883. "dist": {
  1884. "type": "zip",
  1885. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  1886. "reference": "223f0f9e17ee9dc8bf6e8da9e651296ba93e8d64",
  1887. "shasum": "",
  1888. "mirrors": [
  1889. {
  1890. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1891. "preferred": true
  1892. }
  1893. ]
  1894. },
  1895. "require": {
  1896. "hyperf/context": "~3.1.0",
  1897. "hyperf/contract": "~3.1.0",
  1898. "hyperf/engine": "^2.13.0",
  1899. "php": ">=8.1"
  1900. },
  1901. "type": "library",
  1902. "extra": {
  1903. "branch-alias": {
  1904. "dev-master": "3.1-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "files": [
  1909. "src/Functions.php"
  1910. ],
  1911. "psr-4": {
  1912. "Hyperf\\Coroutine\\": "src/"
  1913. }
  1914. },
  1915. "notification-url": "https://packagist.org/downloads/",
  1916. "license": [
  1917. "MIT"
  1918. ],
  1919. "description": "Hyperf Coroutine",
  1920. "homepage": "https://hyperf.io",
  1921. "keywords": [
  1922. "coroutine",
  1923. "hyperf",
  1924. "php",
  1925. "swoole"
  1926. ],
  1927. "support": {
  1928. "docs": "https://hyperf.wiki",
  1929. "issues": "https://github.com/hyperf/hyperf/issues",
  1930. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1931. "source": "https://github.com/hyperf/hyperf"
  1932. },
  1933. "funding": [
  1934. {
  1935. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1936. "type": "custom"
  1937. },
  1938. {
  1939. "url": "https://opencollective.com/hyperf",
  1940. "type": "open_collective"
  1941. }
  1942. ],
  1943. "time": "2025-02-08T03:41:26+00:00"
  1944. },
  1945. {
  1946. "name": "hyperf/database",
  1947. "version": "v3.1.52",
  1948. "source": {
  1949. "type": "git",
  1950. "url": "https://github.com/hyperf/database.git",
  1951. "reference": "52ca85a84ca1cbc8a5a0259b01b09a4091a3a991"
  1952. },
  1953. "dist": {
  1954. "type": "zip",
  1955. "url": "https://api.github.com/repos/hyperf/database/zipball/52ca85a84ca1cbc8a5a0259b01b09a4091a3a991",
  1956. "reference": "52ca85a84ca1cbc8a5a0259b01b09a4091a3a991",
  1957. "shasum": "",
  1958. "mirrors": [
  1959. {
  1960. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1961. "preferred": true
  1962. }
  1963. ]
  1964. },
  1965. "require": {
  1966. "hyperf/code-parser": "~3.1.0",
  1967. "hyperf/collection": "~3.1.23",
  1968. "hyperf/conditionable": "~3.1.0",
  1969. "hyperf/macroable": "~3.1.0",
  1970. "hyperf/support": "~3.1.0",
  1971. "hyperf/tappable": "~3.1.0",
  1972. "hyperf/utils": "~3.1.0",
  1973. "nesbot/carbon": "^2.0",
  1974. "php": ">=8.1",
  1975. "psr/container": "^1.0 || ^2.0",
  1976. "psr/event-dispatcher": "^1.0"
  1977. },
  1978. "suggest": {
  1979. "doctrine/dbal": "Required to rename columns (^3.0).",
  1980. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1981. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1982. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1983. },
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "3.1-dev"
  1988. }
  1989. },
  1990. "autoload": {
  1991. "psr-4": {
  1992. "Hyperf\\Database\\": "src/"
  1993. }
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "MIT"
  1998. ],
  1999. "description": "A flexible database library.",
  2000. "homepage": "https://hyperf.io",
  2001. "keywords": [
  2002. "database",
  2003. "hyperf",
  2004. "php"
  2005. ],
  2006. "support": {
  2007. "docs": "https://hyperf.wiki",
  2008. "issues": "https://github.com/hyperf/hyperf/issues",
  2009. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2010. "source": "https://github.com/hyperf/hyperf"
  2011. },
  2012. "funding": [
  2013. {
  2014. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2015. "type": "custom"
  2016. },
  2017. {
  2018. "url": "https://opencollective.com/hyperf",
  2019. "type": "open_collective"
  2020. }
  2021. ],
  2022. "time": "2025-02-27T07:49:26+00:00"
  2023. },
  2024. {
  2025. "name": "hyperf/db-connection",
  2026. "version": "v3.1.44",
  2027. "source": {
  2028. "type": "git",
  2029. "url": "https://github.com/hyperf/db-connection.git",
  2030. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2031. },
  2032. "dist": {
  2033. "type": "zip",
  2034. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2035. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2036. "shasum": "",
  2037. "mirrors": [
  2038. {
  2039. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2040. "preferred": true
  2041. }
  2042. ]
  2043. },
  2044. "require": {
  2045. "hyperf/database": "~3.1.0",
  2046. "hyperf/di": "~3.1.0",
  2047. "hyperf/framework": "~3.1.0",
  2048. "hyperf/model-listener": "~3.1.0",
  2049. "hyperf/pool": "~3.1.0",
  2050. "hyperf/support": "~3.1.0",
  2051. "hyperf/utils": "~3.1.0",
  2052. "php": ">=8.1",
  2053. "psr/container": "^1.0 || ^2.0"
  2054. },
  2055. "type": "library",
  2056. "extra": {
  2057. "hyperf": {
  2058. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2059. },
  2060. "branch-alias": {
  2061. "dev-master": "3.1-dev"
  2062. }
  2063. },
  2064. "autoload": {
  2065. "psr-4": {
  2066. "Hyperf\\DbConnection\\": "src/"
  2067. }
  2068. },
  2069. "notification-url": "https://packagist.org/downloads/",
  2070. "license": [
  2071. "MIT"
  2072. ],
  2073. "description": "A hyperf db connection handler for hyperf/database.",
  2074. "homepage": "https://hyperf.io",
  2075. "keywords": [
  2076. "Connection",
  2077. "database",
  2078. "hyperf",
  2079. "php"
  2080. ],
  2081. "support": {
  2082. "docs": "https://hyperf.wiki",
  2083. "issues": "https://github.com/hyperf/hyperf/issues",
  2084. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2085. "source": "https://github.com/hyperf/hyperf"
  2086. },
  2087. "funding": [
  2088. {
  2089. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2090. "type": "custom"
  2091. },
  2092. {
  2093. "url": "https://opencollective.com/hyperf",
  2094. "type": "open_collective"
  2095. }
  2096. ],
  2097. "time": "2024-10-11T08:58:16+00:00"
  2098. },
  2099. {
  2100. "name": "hyperf/di",
  2101. "version": "v3.1.52",
  2102. "source": {
  2103. "type": "git",
  2104. "url": "https://github.com/hyperf/di.git",
  2105. "reference": "964d99b957185d317c0c4176de6b97c7436074fc"
  2106. },
  2107. "dist": {
  2108. "type": "zip",
  2109. "url": "https://api.github.com/repos/hyperf/di/zipball/964d99b957185d317c0c4176de6b97c7436074fc",
  2110. "reference": "964d99b957185d317c0c4176de6b97c7436074fc",
  2111. "shasum": "",
  2112. "mirrors": [
  2113. {
  2114. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2115. "preferred": true
  2116. }
  2117. ]
  2118. },
  2119. "require": {
  2120. "doctrine/instantiator": "^1.0",
  2121. "hyperf/code-parser": "~3.1.0",
  2122. "hyperf/pipeline": "~3.1.0",
  2123. "hyperf/stdlib": "~3.1.0",
  2124. "hyperf/support": "~3.1.0",
  2125. "nikic/php-parser": "^4.1",
  2126. "php": ">=8.1",
  2127. "php-di/phpdoc-reader": "^2.2",
  2128. "psr/container": "^1.0 || ^2.0",
  2129. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2130. "vlucas/phpdotenv": "^5.0"
  2131. },
  2132. "suggest": {
  2133. "ext-pcntl": "Required to scan annotations.",
  2134. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "hyperf": {
  2139. "config": "Hyperf\\Di\\ConfigProvider"
  2140. },
  2141. "branch-alias": {
  2142. "dev-master": "3.1-dev"
  2143. }
  2144. },
  2145. "autoload": {
  2146. "psr-4": {
  2147. "Hyperf\\Di\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "description": "A DI for Hyperf.",
  2155. "homepage": "https://hyperf.io",
  2156. "keywords": [
  2157. "annotation",
  2158. "di",
  2159. "hyperf",
  2160. "php",
  2161. "swoole"
  2162. ],
  2163. "support": {
  2164. "docs": "https://hyperf.wiki",
  2165. "issues": "https://github.com/hyperf/hyperf/issues",
  2166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2167. "source": "https://github.com/hyperf/hyperf"
  2168. },
  2169. "funding": [
  2170. {
  2171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2172. "type": "custom"
  2173. },
  2174. {
  2175. "url": "https://opencollective.com/hyperf",
  2176. "type": "open_collective"
  2177. }
  2178. ],
  2179. "time": "2025-02-27T06:49:30+00:00"
  2180. },
  2181. {
  2182. "name": "hyperf/dispatcher",
  2183. "version": "v3.1.42",
  2184. "source": {
  2185. "type": "git",
  2186. "url": "https://github.com/hyperf/dispatcher.git",
  2187. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2188. },
  2189. "dist": {
  2190. "type": "zip",
  2191. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2192. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2193. "shasum": "",
  2194. "mirrors": [
  2195. {
  2196. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2197. "preferred": true
  2198. }
  2199. ]
  2200. },
  2201. "require": {
  2202. "hyperf/contract": "~3.1.0",
  2203. "php": ">=8.1",
  2204. "psr/container": "^1.0 || ^2.0",
  2205. "psr/http-message": "^1.0 || ^2.0",
  2206. "psr/http-server-middleware": "^1.0"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "hyperf": {
  2211. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2212. },
  2213. "branch-alias": {
  2214. "dev-master": "3.1-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Hyperf\\Dispatcher\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "A HTTP Server for Hyperf.",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "dispatcher",
  2230. "filter",
  2231. "hyperf",
  2232. "middleware",
  2233. "php",
  2234. "swoole"
  2235. ],
  2236. "support": {
  2237. "docs": "https://hyperf.wiki",
  2238. "issues": "https://github.com/hyperf/hyperf/issues",
  2239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2240. "source": "https://github.com/hyperf/hyperf"
  2241. },
  2242. "funding": [
  2243. {
  2244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2245. "type": "custom"
  2246. },
  2247. {
  2248. "url": "https://opencollective.com/hyperf",
  2249. "type": "open_collective"
  2250. }
  2251. ],
  2252. "time": "2024-09-25T02:54:12+00:00"
  2253. },
  2254. {
  2255. "name": "hyperf/elasticsearch",
  2256. "version": "v3.1.42",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://github.com/hyperf/elasticsearch.git",
  2260. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://api.github.com/repos/hyperf/elasticsearch/zipball/ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2265. "reference": "ed654ef85e1b53deca8b128bb1ebbdc6cdba52b0",
  2266. "shasum": "",
  2267. "mirrors": [
  2268. {
  2269. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2270. "preferred": true
  2271. }
  2272. ]
  2273. },
  2274. "require": {
  2275. "elasticsearch/elasticsearch": "^7.0",
  2276. "hyperf/guzzle": "~3.1.0",
  2277. "php": ">=8.1"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "3.1-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\Elasticsearch\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "Elasticsearch client for hyperf",
  2295. "keywords": [
  2296. "elasticsearch",
  2297. "php",
  2298. "swoole"
  2299. ],
  2300. "support": {
  2301. "issues": "https://github.com/hyperf/elasticsearch/issues",
  2302. "source": "https://github.com/hyperf/elasticsearch/tree/v3.1.42"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2307. "type": "custom"
  2308. },
  2309. {
  2310. "url": "https://opencollective.com/hyperf",
  2311. "type": "open_collective"
  2312. }
  2313. ],
  2314. "time": "2024-09-25T02:54:12+00:00"
  2315. },
  2316. {
  2317. "name": "hyperf/engine",
  2318. "version": "v2.13.1",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/hyperf/engine.git",
  2322. "reference": "3002d34cfb6278c3a25f9d94c41c43bed03a88a6"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/hyperf/engine/zipball/3002d34cfb6278c3a25f9d94c41c43bed03a88a6",
  2327. "reference": "3002d34cfb6278c3a25f9d94c41c43bed03a88a6",
  2328. "shasum": "",
  2329. "mirrors": [
  2330. {
  2331. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2332. "preferred": true
  2333. }
  2334. ]
  2335. },
  2336. "require": {
  2337. "hyperf/engine-contract": "~1.12.0",
  2338. "php": ">=8.0"
  2339. },
  2340. "conflict": {
  2341. "ext-swoole": "<5.0"
  2342. },
  2343. "require-dev": {
  2344. "friendsofphp/php-cs-fixer": "^3.0",
  2345. "hyperf/guzzle": "^3.0",
  2346. "hyperf/http-message": "^3.0",
  2347. "mockery/mockery": "^1.5",
  2348. "phpstan/phpstan": "^1.0",
  2349. "phpunit/phpunit": "^9.4",
  2350. "swoole/ide-helper": "5.*"
  2351. },
  2352. "suggest": {
  2353. "ext-sockets": "*",
  2354. "ext-swoole": ">=5.0",
  2355. "hyperf/http-message": "Required to use ResponseEmitter.",
  2356. "psr/http-message": "Required to use WebSocket Frame."
  2357. },
  2358. "type": "library",
  2359. "extra": {
  2360. "hyperf": {
  2361. "config": "Hyperf\\Engine\\ConfigProvider"
  2362. },
  2363. "branch-alias": {
  2364. "dev-master": "2.13-dev"
  2365. }
  2366. },
  2367. "autoload": {
  2368. "files": [
  2369. "src/Functions.php"
  2370. ],
  2371. "psr-4": {
  2372. "Hyperf\\Engine\\": "src/"
  2373. }
  2374. },
  2375. "notification-url": "https://packagist.org/downloads/",
  2376. "license": [
  2377. "MIT"
  2378. ],
  2379. "description": "Coroutine engine provided by swoole.",
  2380. "keywords": [
  2381. "engine",
  2382. "hyperf",
  2383. "php",
  2384. "swoole"
  2385. ],
  2386. "support": {
  2387. "issues": "https://github.com/hyperf/engine/issues",
  2388. "source": "https://github.com/hyperf/engine/tree/v2.13.1"
  2389. },
  2390. "funding": [
  2391. {
  2392. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2393. "type": "custom"
  2394. },
  2395. {
  2396. "url": "https://opencollective.com/hyperf",
  2397. "type": "open_collective"
  2398. }
  2399. ],
  2400. "time": "2025-02-08T03:29:51+00:00"
  2401. },
  2402. {
  2403. "name": "hyperf/engine-contract",
  2404. "version": "v1.12.0",
  2405. "source": {
  2406. "type": "git",
  2407. "url": "https://github.com/hyperf/engine-contract.git",
  2408. "reference": "08539eac8047e525384dd49f3da87f175d7e3c90"
  2409. },
  2410. "dist": {
  2411. "type": "zip",
  2412. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/08539eac8047e525384dd49f3da87f175d7e3c90",
  2413. "reference": "08539eac8047e525384dd49f3da87f175d7e3c90",
  2414. "shasum": "",
  2415. "mirrors": [
  2416. {
  2417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2418. "preferred": true
  2419. }
  2420. ]
  2421. },
  2422. "require": {
  2423. "php": ">=8.0"
  2424. },
  2425. "require-dev": {
  2426. "friendsofphp/php-cs-fixer": "^3.0",
  2427. "mockery/mockery": "^1.0",
  2428. "phpstan/phpstan": "^1.0",
  2429. "phpunit/phpunit": ">=7.0",
  2430. "psr/http-message": "^1.0",
  2431. "swoole/ide-helper": "^4.5"
  2432. },
  2433. "suggest": {
  2434. "psr/http-message": "Required to use WebSocket Frame."
  2435. },
  2436. "type": "library",
  2437. "extra": {
  2438. "branch-alias": {
  2439. "dev-master": "1.11-dev"
  2440. }
  2441. },
  2442. "autoload": {
  2443. "psr-4": {
  2444. "Hyperf\\Engine\\Contract\\": "src/"
  2445. }
  2446. },
  2447. "notification-url": "https://packagist.org/downloads/",
  2448. "license": [
  2449. "MIT"
  2450. ],
  2451. "description": "Contract for Coroutine Engine",
  2452. "keywords": [
  2453. "contract",
  2454. "coroutine",
  2455. "engine",
  2456. "hyperf",
  2457. "php"
  2458. ],
  2459. "support": {
  2460. "issues": "https://github.com/hyperf/engine-contract/issues",
  2461. "source": "https://github.com/hyperf/engine-contract/tree/v1.12.0"
  2462. },
  2463. "funding": [
  2464. {
  2465. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2466. "type": "custom"
  2467. },
  2468. {
  2469. "url": "https://opencollective.com/hyperf",
  2470. "type": "open_collective"
  2471. }
  2472. ],
  2473. "time": "2025-02-08T02:36:22+00:00"
  2474. },
  2475. {
  2476. "name": "hyperf/event",
  2477. "version": "v3.1.42",
  2478. "source": {
  2479. "type": "git",
  2480. "url": "https://github.com/hyperf/event.git",
  2481. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2482. },
  2483. "dist": {
  2484. "type": "zip",
  2485. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2486. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2487. "shasum": "",
  2488. "mirrors": [
  2489. {
  2490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2491. "preferred": true
  2492. }
  2493. ]
  2494. },
  2495. "require": {
  2496. "hyperf/contract": "~3.1.0",
  2497. "hyperf/stdlib": "~3.1.0",
  2498. "php": ">=8.1",
  2499. "psr/event-dispatcher": "^1.0"
  2500. },
  2501. "suggest": {
  2502. "hyperf/di": "Required to use annotatioins."
  2503. },
  2504. "type": "library",
  2505. "extra": {
  2506. "hyperf": {
  2507. "config": "Hyperf\\Event\\ConfigProvider"
  2508. },
  2509. "branch-alias": {
  2510. "dev-master": "3.1-dev"
  2511. }
  2512. },
  2513. "autoload": {
  2514. "psr-4": {
  2515. "Hyperf\\Event\\": "src/"
  2516. }
  2517. },
  2518. "notification-url": "https://packagist.org/downloads/",
  2519. "license": [
  2520. "MIT"
  2521. ],
  2522. "description": "an event manager that implements PSR-14.",
  2523. "homepage": "https://hyperf.io",
  2524. "keywords": [
  2525. "event",
  2526. "hyperf",
  2527. "php",
  2528. "swoole"
  2529. ],
  2530. "support": {
  2531. "docs": "https://hyperf.wiki",
  2532. "issues": "https://github.com/hyperf/hyperf/issues",
  2533. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2534. "source": "https://github.com/hyperf/hyperf"
  2535. },
  2536. "funding": [
  2537. {
  2538. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2539. "type": "custom"
  2540. },
  2541. {
  2542. "url": "https://opencollective.com/hyperf",
  2543. "type": "open_collective"
  2544. }
  2545. ],
  2546. "time": "2024-09-25T02:54:12+00:00"
  2547. },
  2548. {
  2549. "name": "hyperf/exception-handler",
  2550. "version": "v3.1.42",
  2551. "source": {
  2552. "type": "git",
  2553. "url": "https://github.com/hyperf/exception-handler.git",
  2554. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2555. },
  2556. "dist": {
  2557. "type": "zip",
  2558. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2559. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2560. "shasum": "",
  2561. "mirrors": [
  2562. {
  2563. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2564. "preferred": true
  2565. }
  2566. ]
  2567. },
  2568. "require": {
  2569. "hyperf/context": "~3.1.0",
  2570. "hyperf/contract": "~3.1.0",
  2571. "hyperf/dispatcher": "~3.1.0",
  2572. "hyperf/http-message": "~3.1.0",
  2573. "hyperf/stdlib": "~3.1.0",
  2574. "hyperf/support": "~3.1.0",
  2575. "php": ">=8.1",
  2576. "psr/container": "^1.0 || ^2.0",
  2577. "psr/http-message": "^1.0 || ^2.0",
  2578. "swow/psr7-plus": "^1.0"
  2579. },
  2580. "suggest": {
  2581. "hyperf/di": "Required to use #[ExceptionHandler]",
  2582. "hyperf/event": "Required to use listeners",
  2583. "hyperf/framework": "Required to use listeners",
  2584. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2585. },
  2586. "type": "library",
  2587. "extra": {
  2588. "hyperf": {
  2589. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2590. },
  2591. "branch-alias": {
  2592. "dev-master": "3.1-dev"
  2593. }
  2594. },
  2595. "autoload": {
  2596. "psr-4": {
  2597. "Hyperf\\ExceptionHandler\\": "src/"
  2598. }
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "description": "Exception handler for hyperf",
  2605. "homepage": "https://hyperf.io",
  2606. "keywords": [
  2607. "exception-handler",
  2608. "php",
  2609. "swoole"
  2610. ],
  2611. "support": {
  2612. "docs": "https://hyperf.wiki",
  2613. "issues": "https://github.com/hyperf/hyperf/issues",
  2614. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2615. "source": "https://github.com/hyperf/hyperf"
  2616. },
  2617. "funding": [
  2618. {
  2619. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2620. "type": "custom"
  2621. },
  2622. {
  2623. "url": "https://opencollective.com/hyperf",
  2624. "type": "open_collective"
  2625. }
  2626. ],
  2627. "time": "2024-09-25T02:54:12+00:00"
  2628. },
  2629. {
  2630. "name": "hyperf/framework",
  2631. "version": "v3.1.42",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/hyperf/framework.git",
  2635. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2640. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2641. "shasum": "",
  2642. "mirrors": [
  2643. {
  2644. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2645. "preferred": true
  2646. }
  2647. ]
  2648. },
  2649. "require": {
  2650. "fig/http-message-util": "^1.1.2",
  2651. "hyperf/contract": "~3.1.0",
  2652. "hyperf/coordinator": "~3.1.0",
  2653. "hyperf/coroutine": "~3.1.0",
  2654. "php": ">=8.1",
  2655. "psr/container": "^1.0 || ^2.0",
  2656. "psr/event-dispatcher": "^1.0",
  2657. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2658. },
  2659. "suggest": {
  2660. "ext-swoole": "Required to use swoole engine.",
  2661. "hyperf/command": "Required to use Command annotation.",
  2662. "hyperf/di": "Required to use Command annotation.",
  2663. "hyperf/dispatcher": "Required to use BootApplication event.",
  2664. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2665. },
  2666. "type": "library",
  2667. "extra": {
  2668. "hyperf": {
  2669. "config": "Hyperf\\Framework\\ConfigProvider"
  2670. },
  2671. "branch-alias": {
  2672. "dev-master": "3.1-dev"
  2673. }
  2674. },
  2675. "autoload": {
  2676. "psr-4": {
  2677. "Hyperf\\Framework\\": "src/"
  2678. }
  2679. },
  2680. "notification-url": "https://packagist.org/downloads/",
  2681. "license": [
  2682. "MIT"
  2683. ],
  2684. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2685. "homepage": "https://hyperf.io",
  2686. "keywords": [
  2687. "Microservice",
  2688. "framework",
  2689. "hyperf",
  2690. "middleware",
  2691. "php",
  2692. "swoole"
  2693. ],
  2694. "support": {
  2695. "docs": "https://hyperf.wiki",
  2696. "issues": "https://github.com/hyperf/hyperf/issues",
  2697. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2698. "source": "https://github.com/hyperf/hyperf"
  2699. },
  2700. "funding": [
  2701. {
  2702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2703. "type": "custom"
  2704. },
  2705. {
  2706. "url": "https://opencollective.com/hyperf",
  2707. "type": "open_collective"
  2708. }
  2709. ],
  2710. "time": "2024-09-25T02:54:12+00:00"
  2711. },
  2712. {
  2713. "name": "hyperf/guzzle",
  2714. "version": "v3.1.42",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/hyperf/guzzle.git",
  2718. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2723. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2724. "shasum": "",
  2725. "mirrors": [
  2726. {
  2727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2728. "preferred": true
  2729. }
  2730. ]
  2731. },
  2732. "require": {
  2733. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2734. "php": ">=8.1",
  2735. "psr/container": "^1.0 || ^2.0",
  2736. "psr/http-message": "^1.0 || ^2.0"
  2737. },
  2738. "suggest": {
  2739. "ext-curl": "Required for CURL handler support",
  2740. "hyperf/pool": "Required to use pool handler."
  2741. },
  2742. "type": "library",
  2743. "extra": {
  2744. "hyperf": {
  2745. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2746. },
  2747. "branch-alias": {
  2748. "dev-master": "3.1-dev"
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "Hyperf\\Guzzle\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "description": "Swoole coroutine handler for guzzle",
  2761. "keywords": [
  2762. "Guzzle",
  2763. "handler",
  2764. "php",
  2765. "swoole"
  2766. ],
  2767. "support": {
  2768. "issues": "https://github.com/hyperf/guzzle/issues",
  2769. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2770. },
  2771. "funding": [
  2772. {
  2773. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2774. "type": "custom"
  2775. },
  2776. {
  2777. "url": "https://opencollective.com/hyperf",
  2778. "type": "open_collective"
  2779. }
  2780. ],
  2781. "time": "2024-09-25T02:54:12+00:00"
  2782. },
  2783. {
  2784. "name": "hyperf/http-message",
  2785. "version": "v3.1.48",
  2786. "source": {
  2787. "type": "git",
  2788. "url": "https://github.com/hyperf/http-message.git",
  2789. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2790. },
  2791. "dist": {
  2792. "type": "zip",
  2793. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2794. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2795. "shasum": "",
  2796. "mirrors": [
  2797. {
  2798. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2799. "preferred": true
  2800. }
  2801. ]
  2802. },
  2803. "require": {
  2804. "hyperf/codec": "~3.1.0",
  2805. "hyperf/engine": "^2.11",
  2806. "hyperf/support": "~3.1.0",
  2807. "laminas/laminas-mime": "^2.7",
  2808. "php": ">=8.1",
  2809. "psr/http-message": "^1.0 || ^2.0",
  2810. "swow/psr7-plus": "^1.0"
  2811. },
  2812. "suggest": {
  2813. "psr/container": "Required to replace RequestParserInterface."
  2814. },
  2815. "type": "library",
  2816. "extra": {
  2817. "hyperf": {
  2818. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2819. },
  2820. "branch-alias": {
  2821. "dev-master": "3.1-dev"
  2822. }
  2823. },
  2824. "autoload": {
  2825. "psr-4": {
  2826. "Hyperf\\HttpMessage\\": "src/"
  2827. }
  2828. },
  2829. "notification-url": "https://packagist.org/downloads/",
  2830. "license": [
  2831. "MIT"
  2832. ],
  2833. "description": "microservice framework base on swoole",
  2834. "keywords": [
  2835. "http-message",
  2836. "hyperf",
  2837. "php",
  2838. "swoole"
  2839. ],
  2840. "support": {
  2841. "issues": "https://github.com/hyperf/http-message/issues",
  2842. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2843. },
  2844. "funding": [
  2845. {
  2846. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2847. "type": "custom"
  2848. },
  2849. {
  2850. "url": "https://opencollective.com/hyperf",
  2851. "type": "open_collective"
  2852. }
  2853. ],
  2854. "time": "2024-12-05T02:41:08+00:00"
  2855. },
  2856. {
  2857. "name": "hyperf/http-server",
  2858. "version": "v3.1.42",
  2859. "source": {
  2860. "type": "git",
  2861. "url": "https://github.com/hyperf/http-server.git",
  2862. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2863. },
  2864. "dist": {
  2865. "type": "zip",
  2866. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2867. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2868. "shasum": "",
  2869. "mirrors": [
  2870. {
  2871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2872. "preferred": true
  2873. }
  2874. ]
  2875. },
  2876. "require": {
  2877. "hyperf/codec": "~3.1.0",
  2878. "hyperf/collection": "~3.1.0",
  2879. "hyperf/context": "~3.1.0",
  2880. "hyperf/contract": "~3.1.0",
  2881. "hyperf/coroutine": "~3.1.0",
  2882. "hyperf/dispatcher": "~3.1.0",
  2883. "hyperf/event": "~3.1.0",
  2884. "hyperf/exception-handler": "~3.1.0",
  2885. "hyperf/http-message": "~3.1.0",
  2886. "hyperf/macroable": "~3.1.0",
  2887. "hyperf/serializer": "~3.1.0",
  2888. "hyperf/server": "~3.1.0",
  2889. "hyperf/stdlib": "~3.1.0",
  2890. "hyperf/support": "~3.1.0",
  2891. "nikic/fast-route": "^1.3",
  2892. "php": ">=8.1",
  2893. "psr/container": "^1.0 || ^2.0",
  2894. "swow/psr7-plus": "^1.0"
  2895. },
  2896. "suggest": {
  2897. "hyperf/di": "Required to use annotations."
  2898. },
  2899. "type": "library",
  2900. "extra": {
  2901. "hyperf": {
  2902. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2903. },
  2904. "branch-alias": {
  2905. "dev-master": "3.1-dev"
  2906. }
  2907. },
  2908. "autoload": {
  2909. "psr-4": {
  2910. "Hyperf\\HttpServer\\": "src/"
  2911. }
  2912. },
  2913. "notification-url": "https://packagist.org/downloads/",
  2914. "license": [
  2915. "MIT"
  2916. ],
  2917. "description": "A HTTP Server for Hyperf.",
  2918. "homepage": "https://hyperf.io",
  2919. "keywords": [
  2920. "http",
  2921. "http-server",
  2922. "hyperf",
  2923. "php",
  2924. "swoole"
  2925. ],
  2926. "support": {
  2927. "docs": "https://hyperf.wiki",
  2928. "issues": "https://github.com/hyperf/hyperf/issues",
  2929. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2930. "source": "https://github.com/hyperf/hyperf"
  2931. },
  2932. "funding": [
  2933. {
  2934. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2935. "type": "custom"
  2936. },
  2937. {
  2938. "url": "https://opencollective.com/hyperf",
  2939. "type": "open_collective"
  2940. }
  2941. ],
  2942. "time": "2024-09-25T02:54:12+00:00"
  2943. },
  2944. {
  2945. "name": "hyperf/json-rpc",
  2946. "version": "v3.1.47",
  2947. "source": {
  2948. "type": "git",
  2949. "url": "https://github.com/hyperf/json-rpc.git",
  2950. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2951. },
  2952. "dist": {
  2953. "type": "zip",
  2954. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2955. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2956. "shasum": "",
  2957. "mirrors": [
  2958. {
  2959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2960. "preferred": true
  2961. }
  2962. ]
  2963. },
  2964. "require": {
  2965. "hyperf/codec": "~3.1.0",
  2966. "hyperf/context": "~3.1.0",
  2967. "hyperf/contract": "~3.1.0",
  2968. "hyperf/engine": "^2.0",
  2969. "hyperf/http-message": "~3.1.0",
  2970. "hyperf/load-balancer": "~3.1.0",
  2971. "hyperf/rpc": "~3.1.0",
  2972. "hyperf/serializer": "~3.1.0",
  2973. "hyperf/support": "~3.1.0",
  2974. "hyperf/utils": "~3.1.0",
  2975. "php": ">=8.1",
  2976. "psr/container": "^1.0 || ^2.0",
  2977. "swow/psr7-plus": "^1.0"
  2978. },
  2979. "suggest": {
  2980. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2981. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2982. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2983. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2984. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2985. },
  2986. "type": "library",
  2987. "extra": {
  2988. "hyperf": {
  2989. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2990. },
  2991. "branch-alias": {
  2992. "dev-master": "3.1-dev"
  2993. }
  2994. },
  2995. "autoload": {
  2996. "psr-4": {
  2997. "Hyperf\\JsonRpc\\": "src/"
  2998. }
  2999. },
  3000. "notification-url": "https://packagist.org/downloads/",
  3001. "license": [
  3002. "MIT"
  3003. ],
  3004. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3005. "homepage": "https://hyperf.io",
  3006. "keywords": [
  3007. "hyperf",
  3008. "json-rpc",
  3009. "php",
  3010. "swoole"
  3011. ],
  3012. "support": {
  3013. "docs": "https://hyperf.wiki",
  3014. "issues": "https://github.com/hyperf/hyperf/issues",
  3015. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3016. "source": "https://github.com/hyperf/hyperf"
  3017. },
  3018. "funding": [
  3019. {
  3020. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3021. "type": "custom"
  3022. },
  3023. {
  3024. "url": "https://opencollective.com/hyperf",
  3025. "type": "open_collective"
  3026. }
  3027. ],
  3028. "time": "2024-11-28T01:51:55+00:00"
  3029. },
  3030. {
  3031. "name": "hyperf/load-balancer",
  3032. "version": "v3.1.42",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/hyperf/load-balancer.git",
  3036. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3041. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3042. "shasum": "",
  3043. "mirrors": [
  3044. {
  3045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3046. "preferred": true
  3047. }
  3048. ]
  3049. },
  3050. "require": {
  3051. "hyperf/coordinator": "~3.1.0",
  3052. "hyperf/coroutine": "~3.1.0",
  3053. "markrogoyski/math-php": "^2.0",
  3054. "php": ">=8.1",
  3055. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3056. },
  3057. "type": "library",
  3058. "extra": {
  3059. "hyperf": {
  3060. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3061. },
  3062. "branch-alias": {
  3063. "dev-master": "3.1-dev"
  3064. }
  3065. },
  3066. "autoload": {
  3067. "psr-4": {
  3068. "Hyperf\\LoadBalancer\\": "src/"
  3069. }
  3070. },
  3071. "notification-url": "https://packagist.org/downloads/",
  3072. "license": [
  3073. "MIT"
  3074. ],
  3075. "description": "A load balancer library for Hyperf.",
  3076. "homepage": "https://hyperf.io",
  3077. "keywords": [
  3078. "hyperf",
  3079. "load-balancer",
  3080. "php",
  3081. "swoole"
  3082. ],
  3083. "support": {
  3084. "docs": "https://hyperf.wiki",
  3085. "issues": "https://github.com/hyperf/hyperf/issues",
  3086. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3087. "source": "https://github.com/hyperf/hyperf"
  3088. },
  3089. "funding": [
  3090. {
  3091. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3092. "type": "custom"
  3093. },
  3094. {
  3095. "url": "https://opencollective.com/hyperf",
  3096. "type": "open_collective"
  3097. }
  3098. ],
  3099. "time": "2024-09-25T02:54:12+00:00"
  3100. },
  3101. {
  3102. "name": "hyperf/logger",
  3103. "version": "v3.1.42",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/hyperf/logger.git",
  3107. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3112. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3113. "shasum": "",
  3114. "mirrors": [
  3115. {
  3116. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3117. "preferred": true
  3118. }
  3119. ]
  3120. },
  3121. "require": {
  3122. "hyperf/contract": "~3.1.0",
  3123. "hyperf/support": "~3.1.0",
  3124. "hyperf/utils": "~3.1.0",
  3125. "monolog/monolog": "^2.7 || ^3.1",
  3126. "php": ">=8.1",
  3127. "psr/container": "^1.0 || ^2.0",
  3128. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3129. },
  3130. "type": "library",
  3131. "extra": {
  3132. "hyperf": {
  3133. "config": "Hyperf\\Logger\\ConfigProvider"
  3134. },
  3135. "branch-alias": {
  3136. "dev-master": "3.1-dev"
  3137. }
  3138. },
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Hyperf\\Logger\\": "src/"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "description": "A logger component for hyperf.",
  3149. "homepage": "https://hyperf.io",
  3150. "keywords": [
  3151. "hyperf",
  3152. "logger",
  3153. "php"
  3154. ],
  3155. "support": {
  3156. "docs": "https://hyperf.wiki",
  3157. "issues": "https://github.com/hyperf/hyperf/issues",
  3158. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3159. "source": "https://github.com/hyperf/hyperf"
  3160. },
  3161. "funding": [
  3162. {
  3163. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3164. "type": "custom"
  3165. },
  3166. {
  3167. "url": "https://opencollective.com/hyperf",
  3168. "type": "open_collective"
  3169. }
  3170. ],
  3171. "time": "2024-09-25T02:54:12+00:00"
  3172. },
  3173. {
  3174. "name": "hyperf/macroable",
  3175. "version": "v3.1.42",
  3176. "source": {
  3177. "type": "git",
  3178. "url": "https://github.com/hyperf/macroable.git",
  3179. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3180. },
  3181. "dist": {
  3182. "type": "zip",
  3183. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3184. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3185. "shasum": "",
  3186. "mirrors": [
  3187. {
  3188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3189. "preferred": true
  3190. }
  3191. ]
  3192. },
  3193. "require": {
  3194. "php": ">=8.1"
  3195. },
  3196. "type": "library",
  3197. "extra": {
  3198. "branch-alias": {
  3199. "dev-master": "3.1-dev"
  3200. }
  3201. },
  3202. "autoload": {
  3203. "psr-4": {
  3204. "Hyperf\\Macroable\\": "src/"
  3205. }
  3206. },
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "MIT"
  3210. ],
  3211. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3212. "homepage": "https://hyperf.io",
  3213. "keywords": [
  3214. "hyperf",
  3215. "macroable",
  3216. "php",
  3217. "swoole"
  3218. ],
  3219. "support": {
  3220. "docs": "https://hyperf.wiki",
  3221. "issues": "https://github.com/hyperf/hyperf/issues",
  3222. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3223. "source": "https://github.com/hyperf/hyperf"
  3224. },
  3225. "funding": [
  3226. {
  3227. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3228. "type": "custom"
  3229. },
  3230. {
  3231. "url": "https://opencollective.com/hyperf",
  3232. "type": "open_collective"
  3233. }
  3234. ],
  3235. "time": "2024-09-25T02:54:12+00:00"
  3236. },
  3237. {
  3238. "name": "hyperf/memory",
  3239. "version": "v3.1.42",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://github.com/hyperf/memory.git",
  3243. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3248. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3249. "shasum": "",
  3250. "mirrors": [
  3251. {
  3252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3253. "preferred": true
  3254. }
  3255. ]
  3256. },
  3257. "require": {
  3258. "php": ">=8.1"
  3259. },
  3260. "type": "library",
  3261. "extra": {
  3262. "hyperf": {
  3263. "config": "Hyperf\\Memory\\ConfigProvider"
  3264. },
  3265. "branch-alias": {
  3266. "dev-master": "3.1-dev"
  3267. }
  3268. },
  3269. "autoload": {
  3270. "psr-4": {
  3271. "Hyperf\\Memory\\": "src/"
  3272. }
  3273. },
  3274. "notification-url": "https://packagist.org/downloads/",
  3275. "license": [
  3276. "MIT"
  3277. ],
  3278. "description": "An independent component that use to operate and manage memory.",
  3279. "homepage": "https://hyperf.io",
  3280. "keywords": [
  3281. "hyperf",
  3282. "memory",
  3283. "php",
  3284. "swoole"
  3285. ],
  3286. "support": {
  3287. "docs": "https://hyperf.wiki",
  3288. "issues": "https://github.com/hyperf/hyperf/issues",
  3289. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3290. "source": "https://github.com/hyperf/hyperf"
  3291. },
  3292. "funding": [
  3293. {
  3294. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3295. "type": "custom"
  3296. },
  3297. {
  3298. "url": "https://opencollective.com/hyperf",
  3299. "type": "open_collective"
  3300. }
  3301. ],
  3302. "time": "2024-09-25T02:54:12+00:00"
  3303. },
  3304. {
  3305. "name": "hyperf/model-cache",
  3306. "version": "v3.1.51",
  3307. "source": {
  3308. "type": "git",
  3309. "url": "https://github.com/hyperf/model-cache.git",
  3310. "reference": "70d1c97364cccef852c505a7eb1fcbfd8a62c1ec"
  3311. },
  3312. "dist": {
  3313. "type": "zip",
  3314. "url": "https://api.github.com/repos/hyperf/model-cache/zipball/70d1c97364cccef852c505a7eb1fcbfd8a62c1ec",
  3315. "reference": "70d1c97364cccef852c505a7eb1fcbfd8a62c1ec",
  3316. "shasum": "",
  3317. "mirrors": [
  3318. {
  3319. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3320. "preferred": true
  3321. }
  3322. ]
  3323. },
  3324. "require": {
  3325. "hyperf/codec": "~3.1.0",
  3326. "hyperf/contract": "~3.1.0",
  3327. "hyperf/db-connection": "~3.1.0",
  3328. "hyperf/support": "~3.1.0",
  3329. "hyperf/utils": "~3.1.0",
  3330. "php": ">=8.1",
  3331. "psr/container": "^1.0 || ^2.0",
  3332. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  3333. },
  3334. "suggest": {
  3335. "hyperf/event": "Required to use DeleteCacheListener."
  3336. },
  3337. "type": "library",
  3338. "extra": {
  3339. "hyperf": {
  3340. "config": "Hyperf\\ModelCache\\ConfigProvider"
  3341. },
  3342. "branch-alias": {
  3343. "dev-master": "3.1-dev"
  3344. }
  3345. },
  3346. "autoload": {
  3347. "psr-4": {
  3348. "Hyperf\\ModelCache\\": "src/"
  3349. }
  3350. },
  3351. "notification-url": "https://packagist.org/downloads/",
  3352. "license": [
  3353. "MIT"
  3354. ],
  3355. "description": "A model cache component for hyperf.",
  3356. "homepage": "https://hyperf.io",
  3357. "keywords": [
  3358. "hyperf",
  3359. "model-cache",
  3360. "php"
  3361. ],
  3362. "support": {
  3363. "docs": "https://hyperf.wiki",
  3364. "issues": "https://github.com/hyperf/hyperf/issues",
  3365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3366. "source": "https://github.com/hyperf/hyperf"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://opencollective.com/hyperf",
  3375. "type": "open_collective"
  3376. }
  3377. ],
  3378. "time": "2025-02-06T07:02:37+00:00"
  3379. },
  3380. {
  3381. "name": "hyperf/model-listener",
  3382. "version": "v3.1.42",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/hyperf/model-listener.git",
  3386. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3391. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3392. "shasum": "",
  3393. "mirrors": [
  3394. {
  3395. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3396. "preferred": true
  3397. }
  3398. ]
  3399. },
  3400. "require": {
  3401. "hyperf/contract": "~3.1.0",
  3402. "hyperf/database": "~3.1.0",
  3403. "hyperf/di": "~3.1.0",
  3404. "hyperf/event": "~3.1.0",
  3405. "hyperf/support": "~3.1.0",
  3406. "hyperf/utils": "~3.1.0",
  3407. "php": ">=8.1",
  3408. "psr/container": "^1.0 || ^2.0"
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "hyperf": {
  3413. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3414. },
  3415. "branch-alias": {
  3416. "dev-master": "3.1-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Hyperf\\ModelListener\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "description": "A model listener for Hyperf.",
  3429. "homepage": "https://hyperf.io",
  3430. "keywords": [
  3431. "hyperf",
  3432. "model-listener",
  3433. "php",
  3434. "swoole"
  3435. ],
  3436. "support": {
  3437. "docs": "https://hyperf.wiki",
  3438. "issues": "https://github.com/hyperf/hyperf/issues",
  3439. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3440. "source": "https://github.com/hyperf/hyperf"
  3441. },
  3442. "funding": [
  3443. {
  3444. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3445. "type": "custom"
  3446. },
  3447. {
  3448. "url": "https://opencollective.com/hyperf",
  3449. "type": "open_collective"
  3450. }
  3451. ],
  3452. "time": "2024-09-25T02:54:12+00:00"
  3453. },
  3454. {
  3455. "name": "hyperf/pipeline",
  3456. "version": "v3.1.42",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/hyperf/pipeline.git",
  3460. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3465. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3466. "shasum": "",
  3467. "mirrors": [
  3468. {
  3469. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3470. "preferred": true
  3471. }
  3472. ]
  3473. },
  3474. "require": {
  3475. "php": ">=8.1",
  3476. "psr/container": "^1.0 || ^2.0"
  3477. },
  3478. "type": "library",
  3479. "extra": {
  3480. "branch-alias": {
  3481. "dev-master": "3.1-dev"
  3482. }
  3483. },
  3484. "autoload": {
  3485. "psr-4": {
  3486. "Hyperf\\Pipeline\\": "src/"
  3487. }
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "MIT"
  3492. ],
  3493. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3494. "homepage": "https://hyperf.io",
  3495. "keywords": [
  3496. "hyperf",
  3497. "php",
  3498. "pipeline",
  3499. "swoole"
  3500. ],
  3501. "support": {
  3502. "docs": "https://hyperf.wiki",
  3503. "issues": "https://github.com/hyperf/hyperf/issues",
  3504. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3505. "source": "https://github.com/hyperf/hyperf"
  3506. },
  3507. "funding": [
  3508. {
  3509. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3510. "type": "custom"
  3511. },
  3512. {
  3513. "url": "https://opencollective.com/hyperf",
  3514. "type": "open_collective"
  3515. }
  3516. ],
  3517. "time": "2024-09-25T02:54:12+00:00"
  3518. },
  3519. {
  3520. "name": "hyperf/pool",
  3521. "version": "v3.1.42",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://github.com/hyperf/pool.git",
  3525. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3530. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3531. "shasum": "",
  3532. "mirrors": [
  3533. {
  3534. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3535. "preferred": true
  3536. }
  3537. ]
  3538. },
  3539. "require": {
  3540. "hyperf/contract": "~3.1.0",
  3541. "hyperf/support": "~3.1.0",
  3542. "hyperf/utils": "~3.1.0",
  3543. "php": ">=8.1",
  3544. "psr/container": "^1.0 || ^2.0"
  3545. },
  3546. "suggest": {
  3547. "psr/event-dispatcher": "Required to use events."
  3548. },
  3549. "type": "library",
  3550. "extra": {
  3551. "hyperf": {
  3552. "config": "Hyperf\\Pool\\ConfigProvider"
  3553. },
  3554. "branch-alias": {
  3555. "dev-master": "3.1-dev"
  3556. }
  3557. },
  3558. "autoload": {
  3559. "psr-4": {
  3560. "Hyperf\\Pool\\": "src/"
  3561. }
  3562. },
  3563. "notification-url": "https://packagist.org/downloads/",
  3564. "license": [
  3565. "MIT"
  3566. ],
  3567. "description": "An independent universal connection pool component.",
  3568. "homepage": "https://hyperf.io",
  3569. "keywords": [
  3570. "connection-pool",
  3571. "hyperf",
  3572. "php",
  3573. "swoole"
  3574. ],
  3575. "support": {
  3576. "docs": "https://hyperf.wiki",
  3577. "issues": "https://github.com/hyperf/hyperf/issues",
  3578. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3579. "source": "https://github.com/hyperf/hyperf"
  3580. },
  3581. "funding": [
  3582. {
  3583. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3584. "type": "custom"
  3585. },
  3586. {
  3587. "url": "https://opencollective.com/hyperf",
  3588. "type": "open_collective"
  3589. }
  3590. ],
  3591. "time": "2024-09-25T02:54:12+00:00"
  3592. },
  3593. {
  3594. "name": "hyperf/process",
  3595. "version": "v3.1.48",
  3596. "source": {
  3597. "type": "git",
  3598. "url": "https://github.com/hyperf/process.git",
  3599. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3600. },
  3601. "dist": {
  3602. "type": "zip",
  3603. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3604. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3605. "shasum": "",
  3606. "mirrors": [
  3607. {
  3608. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3609. "preferred": true
  3610. }
  3611. ]
  3612. },
  3613. "require": {
  3614. "hyperf/contract": "~3.1.0",
  3615. "hyperf/support": "~3.1.0",
  3616. "hyperf/utils": "~3.1.0",
  3617. "php": ">=8.1",
  3618. "psr/container": "^1.0 || ^2.0",
  3619. "psr/event-dispatcher": "^1.0"
  3620. },
  3621. "suggest": {
  3622. "hyperf/di": "Required to use annotations.",
  3623. "hyperf/event": "Required to dump the message before and after process.",
  3624. "hyperf/framework": "Required to use BootProcessListener."
  3625. },
  3626. "type": "library",
  3627. "extra": {
  3628. "hyperf": {
  3629. "config": "Hyperf\\Process\\ConfigProvider"
  3630. },
  3631. "branch-alias": {
  3632. "dev-master": "3.1-dev"
  3633. }
  3634. },
  3635. "autoload": {
  3636. "psr-4": {
  3637. "Hyperf\\Process\\": "src/"
  3638. }
  3639. },
  3640. "notification-url": "https://packagist.org/downloads/",
  3641. "license": [
  3642. "MIT"
  3643. ],
  3644. "description": "A process component for hyperf.",
  3645. "homepage": "https://hyperf.io",
  3646. "keywords": [
  3647. "hyperf",
  3648. "php",
  3649. "process"
  3650. ],
  3651. "support": {
  3652. "docs": "https://hyperf.wiki",
  3653. "issues": "https://github.com/hyperf/hyperf/issues",
  3654. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3655. "source": "https://github.com/hyperf/hyperf"
  3656. },
  3657. "funding": [
  3658. {
  3659. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3660. "type": "custom"
  3661. },
  3662. {
  3663. "url": "https://opencollective.com/hyperf",
  3664. "type": "open_collective"
  3665. }
  3666. ],
  3667. "time": "2024-12-02T10:54:30+00:00"
  3668. },
  3669. {
  3670. "name": "hyperf/redis",
  3671. "version": "v3.1.51",
  3672. "source": {
  3673. "type": "git",
  3674. "url": "https://github.com/hyperf/redis.git",
  3675. "reference": "4f4088abbfe70ec0d2766c9ffab749a9c3b1415c"
  3676. },
  3677. "dist": {
  3678. "type": "zip",
  3679. "url": "https://api.github.com/repos/hyperf/redis/zipball/4f4088abbfe70ec0d2766c9ffab749a9c3b1415c",
  3680. "reference": "4f4088abbfe70ec0d2766c9ffab749a9c3b1415c",
  3681. "shasum": "",
  3682. "mirrors": [
  3683. {
  3684. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3685. "preferred": true
  3686. }
  3687. ]
  3688. },
  3689. "require": {
  3690. "ext-redis": "^5.0 || ^6.0",
  3691. "hyperf/contract": "~3.1.0",
  3692. "hyperf/pool": "~3.1.0",
  3693. "hyperf/support": "~3.1.0",
  3694. "hyperf/tappable": "~3.1.0",
  3695. "hyperf/utils": "~3.1.0",
  3696. "php": ">=8.1",
  3697. "psr/container": "^1.0 || ^2.0"
  3698. },
  3699. "suggest": {
  3700. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3701. "hyperf/di": "Create the RedisPool via dependency injection."
  3702. },
  3703. "type": "library",
  3704. "extra": {
  3705. "hyperf": {
  3706. "config": "Hyperf\\Redis\\ConfigProvider"
  3707. },
  3708. "branch-alias": {
  3709. "dev-master": "3.1-dev"
  3710. }
  3711. },
  3712. "autoload": {
  3713. "psr-4": {
  3714. "Hyperf\\Redis\\": "src/"
  3715. }
  3716. },
  3717. "notification-url": "https://packagist.org/downloads/",
  3718. "license": [
  3719. "MIT"
  3720. ],
  3721. "description": "A redis component for hyperf.",
  3722. "homepage": "https://hyperf.io",
  3723. "keywords": [
  3724. "hyperf",
  3725. "php",
  3726. "pool",
  3727. "redis"
  3728. ],
  3729. "support": {
  3730. "docs": "https://hyperf.wiki",
  3731. "issues": "https://github.com/hyperf/hyperf/issues",
  3732. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3733. "source": "https://github.com/hyperf/hyperf"
  3734. },
  3735. "funding": [
  3736. {
  3737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3738. "type": "custom"
  3739. },
  3740. {
  3741. "url": "https://opencollective.com/hyperf",
  3742. "type": "open_collective"
  3743. }
  3744. ],
  3745. "time": "2025-02-06T04:12:35+00:00"
  3746. },
  3747. {
  3748. "name": "hyperf/rpc",
  3749. "version": "v3.1.42",
  3750. "source": {
  3751. "type": "git",
  3752. "url": "https://github.com/hyperf/rpc.git",
  3753. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3754. },
  3755. "dist": {
  3756. "type": "zip",
  3757. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3758. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3759. "shasum": "",
  3760. "mirrors": [
  3761. {
  3762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3763. "preferred": true
  3764. }
  3765. ]
  3766. },
  3767. "require": {
  3768. "hyperf/codec": "~3.1.0",
  3769. "hyperf/contract": "~3.1.0",
  3770. "hyperf/support": "~3.1.0",
  3771. "jetbrains/phpstorm-attributes": "^1.0",
  3772. "php": ">=8.1"
  3773. },
  3774. "type": "library",
  3775. "extra": {
  3776. "hyperf": [],
  3777. "branch-alias": {
  3778. "dev-master": "3.1-dev"
  3779. }
  3780. },
  3781. "autoload": {
  3782. "psr-4": {
  3783. "Hyperf\\Rpc\\": "src/"
  3784. }
  3785. },
  3786. "notification-url": "https://packagist.org/downloads/",
  3787. "license": [
  3788. "MIT"
  3789. ],
  3790. "description": "A rpc basic library for Hyperf.",
  3791. "homepage": "https://hyperf.io",
  3792. "keywords": [
  3793. "hyperf",
  3794. "php",
  3795. "rpc",
  3796. "swoole"
  3797. ],
  3798. "support": {
  3799. "docs": "https://hyperf.wiki",
  3800. "issues": "https://github.com/hyperf/hyperf/issues",
  3801. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3802. "source": "https://github.com/hyperf/hyperf"
  3803. },
  3804. "funding": [
  3805. {
  3806. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3807. "type": "custom"
  3808. },
  3809. {
  3810. "url": "https://opencollective.com/hyperf",
  3811. "type": "open_collective"
  3812. }
  3813. ],
  3814. "time": "2024-09-25T02:54:12+00:00"
  3815. },
  3816. {
  3817. "name": "hyperf/rpc-client",
  3818. "version": "v3.1.42",
  3819. "source": {
  3820. "type": "git",
  3821. "url": "https://github.com/hyperf/rpc-client.git",
  3822. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3823. },
  3824. "dist": {
  3825. "type": "zip",
  3826. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3827. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3828. "shasum": "",
  3829. "mirrors": [
  3830. {
  3831. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3832. "preferred": true
  3833. }
  3834. ]
  3835. },
  3836. "require": {
  3837. "hyperf/code-parser": "~3.1.0",
  3838. "hyperf/load-balancer": "~3.1.0",
  3839. "hyperf/rpc": "~3.1.0",
  3840. "hyperf/support": "~3.1.0",
  3841. "hyperf/utils": "~3.1.0",
  3842. "jetbrains/phpstorm-attributes": "^1.0",
  3843. "php": ">=8.1",
  3844. "psr/container": "^1.0 || ^2.0"
  3845. },
  3846. "suggest": {
  3847. "hyperf/di": "For better container experience.",
  3848. "hyperf/pool": "Required to use connection pool.",
  3849. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3850. },
  3851. "type": "library",
  3852. "extra": {
  3853. "hyperf": {
  3854. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3855. },
  3856. "branch-alias": {
  3857. "dev-master": "3.1-dev"
  3858. }
  3859. },
  3860. "autoload": {
  3861. "psr-4": {
  3862. "Hyperf\\RpcClient\\": "src/"
  3863. }
  3864. },
  3865. "notification-url": "https://packagist.org/downloads/",
  3866. "license": [
  3867. "MIT"
  3868. ],
  3869. "description": "An abstract rpc server component for Hyperf.",
  3870. "homepage": "https://hyperf.io",
  3871. "keywords": [
  3872. "hyperf",
  3873. "json-rpc",
  3874. "php",
  3875. "rpc",
  3876. "rpc-client",
  3877. "swoole"
  3878. ],
  3879. "support": {
  3880. "docs": "https://hyperf.wiki",
  3881. "issues": "https://github.com/hyperf/hyperf/issues",
  3882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3883. "source": "https://github.com/hyperf/hyperf"
  3884. },
  3885. "funding": [
  3886. {
  3887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3888. "type": "custom"
  3889. },
  3890. {
  3891. "url": "https://opencollective.com/hyperf",
  3892. "type": "open_collective"
  3893. }
  3894. ],
  3895. "time": "2024-09-25T02:54:12+00:00"
  3896. },
  3897. {
  3898. "name": "hyperf/rpc-server",
  3899. "version": "v3.1.42",
  3900. "source": {
  3901. "type": "git",
  3902. "url": "https://github.com/hyperf/rpc-server.git",
  3903. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3904. },
  3905. "dist": {
  3906. "type": "zip",
  3907. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3908. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3909. "shasum": "",
  3910. "mirrors": [
  3911. {
  3912. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3913. "preferred": true
  3914. }
  3915. ]
  3916. },
  3917. "require": {
  3918. "hyperf/http-server": "~3.1.0",
  3919. "hyperf/rpc": "~3.1.0",
  3920. "php": ">=8.1"
  3921. },
  3922. "suggest": {
  3923. "hyperf/di": "Required to use annotations."
  3924. },
  3925. "type": "library",
  3926. "extra": {
  3927. "hyperf": {
  3928. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3929. },
  3930. "branch-alias": {
  3931. "dev-master": "3.1-dev"
  3932. }
  3933. },
  3934. "autoload": {
  3935. "psr-4": {
  3936. "Hyperf\\RpcServer\\": "src/"
  3937. }
  3938. },
  3939. "notification-url": "https://packagist.org/downloads/",
  3940. "license": [
  3941. "MIT"
  3942. ],
  3943. "description": "An abstract rpc server component for Hyperf.",
  3944. "homepage": "https://hyperf.io",
  3945. "keywords": [
  3946. "hyperf",
  3947. "php",
  3948. "rpc",
  3949. "rpc-server",
  3950. "swoole"
  3951. ],
  3952. "support": {
  3953. "docs": "https://hyperf.wiki",
  3954. "issues": "https://github.com/hyperf/hyperf/issues",
  3955. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3956. "source": "https://github.com/hyperf/hyperf"
  3957. },
  3958. "funding": [
  3959. {
  3960. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3961. "type": "custom"
  3962. },
  3963. {
  3964. "url": "https://opencollective.com/hyperf",
  3965. "type": "open_collective"
  3966. }
  3967. ],
  3968. "time": "2024-09-25T02:54:12+00:00"
  3969. },
  3970. {
  3971. "name": "hyperf/serializer",
  3972. "version": "v3.1.42",
  3973. "source": {
  3974. "type": "git",
  3975. "url": "https://github.com/hyperf/serializer.git",
  3976. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3977. },
  3978. "dist": {
  3979. "type": "zip",
  3980. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3981. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3982. "shasum": "",
  3983. "mirrors": [
  3984. {
  3985. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3986. "preferred": true
  3987. }
  3988. ]
  3989. },
  3990. "require": {
  3991. "hyperf/contract": "~3.1.0",
  3992. "php": ">=8.1"
  3993. },
  3994. "suggest": {
  3995. "hyperf/di": "Required to use ExceptionNormalizer",
  3996. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3997. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3998. },
  3999. "type": "library",
  4000. "extra": {
  4001. "hyperf": {
  4002. "config": "Hyperf\\Serializer\\ConfigProvider"
  4003. },
  4004. "branch-alias": {
  4005. "dev-master": "3.1-dev"
  4006. }
  4007. },
  4008. "autoload": {
  4009. "psr-4": {
  4010. "Hyperf\\Serializer\\": "src/"
  4011. }
  4012. },
  4013. "notification-url": "https://packagist.org/downloads/",
  4014. "license": [
  4015. "MIT"
  4016. ],
  4017. "description": "A serializer component for Hyperf.",
  4018. "homepage": "https://hyperf.io",
  4019. "keywords": [
  4020. "hyperf",
  4021. "php",
  4022. "swoole",
  4023. "tappable"
  4024. ],
  4025. "support": {
  4026. "docs": "https://hyperf.wiki",
  4027. "issues": "https://github.com/hyperf/hyperf/issues",
  4028. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4029. "source": "https://github.com/hyperf/hyperf"
  4030. },
  4031. "funding": [
  4032. {
  4033. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4034. "type": "custom"
  4035. },
  4036. {
  4037. "url": "https://opencollective.com/hyperf",
  4038. "type": "open_collective"
  4039. }
  4040. ],
  4041. "time": "2024-09-25T02:54:12+00:00"
  4042. },
  4043. {
  4044. "name": "hyperf/server",
  4045. "version": "v3.1.42",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/hyperf/server.git",
  4049. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4054. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4055. "shasum": "",
  4056. "mirrors": [
  4057. {
  4058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4059. "preferred": true
  4060. }
  4061. ]
  4062. },
  4063. "require": {
  4064. "hyperf/contract": "~3.1.0",
  4065. "hyperf/coordinator": "~3.1.0",
  4066. "hyperf/engine": "^2.8",
  4067. "hyperf/support": "~3.1.0",
  4068. "hyperf/tappable": "~3.1.0",
  4069. "php": ">=8.1",
  4070. "psr/container": "^1.0 || ^2.0",
  4071. "psr/event-dispatcher": "^1.0",
  4072. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4073. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4074. },
  4075. "suggest": {
  4076. "hyperf/event": "Dump the info after server start.",
  4077. "hyperf/framework": "Dump the info after server start."
  4078. },
  4079. "type": "library",
  4080. "extra": {
  4081. "hyperf": {
  4082. "config": "Hyperf\\Server\\ConfigProvider"
  4083. },
  4084. "branch-alias": {
  4085. "dev-master": "3.1-dev"
  4086. }
  4087. },
  4088. "autoload": {
  4089. "psr-4": {
  4090. "Hyperf\\Server\\": "src/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "description": "A base server library for Hyperf.",
  4098. "homepage": "https://hyperf.io",
  4099. "keywords": [
  4100. "hyperf",
  4101. "php",
  4102. "server",
  4103. "swoole"
  4104. ],
  4105. "support": {
  4106. "docs": "https://hyperf.wiki",
  4107. "issues": "https://github.com/hyperf/hyperf/issues",
  4108. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4109. "source": "https://github.com/hyperf/hyperf"
  4110. },
  4111. "funding": [
  4112. {
  4113. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4114. "type": "custom"
  4115. },
  4116. {
  4117. "url": "https://opencollective.com/hyperf",
  4118. "type": "open_collective"
  4119. }
  4120. ],
  4121. "time": "2024-09-25T02:54:12+00:00"
  4122. },
  4123. {
  4124. "name": "hyperf/stdlib",
  4125. "version": "v3.1.42",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/hyperf/stdlib.git",
  4129. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4134. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4135. "shasum": "",
  4136. "mirrors": [
  4137. {
  4138. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4139. "preferred": true
  4140. }
  4141. ]
  4142. },
  4143. "require": {
  4144. "php": ">=8.1"
  4145. },
  4146. "type": "library",
  4147. "extra": {
  4148. "branch-alias": {
  4149. "dev-master": "3.1-dev"
  4150. }
  4151. },
  4152. "autoload": {
  4153. "psr-4": {
  4154. "Hyperf\\Stdlib\\": "src/"
  4155. }
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "description": "A stdlib component for Hyperf.",
  4162. "homepage": "https://hyperf.io",
  4163. "keywords": [
  4164. "hyperf",
  4165. "php",
  4166. "stdlib",
  4167. "swoole"
  4168. ],
  4169. "support": {
  4170. "docs": "https://hyperf.wiki",
  4171. "issues": "https://github.com/hyperf/hyperf/issues",
  4172. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4173. "source": "https://github.com/hyperf/hyperf"
  4174. },
  4175. "funding": [
  4176. {
  4177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4178. "type": "custom"
  4179. },
  4180. {
  4181. "url": "https://opencollective.com/hyperf",
  4182. "type": "open_collective"
  4183. }
  4184. ],
  4185. "time": "2024-09-25T02:54:12+00:00"
  4186. },
  4187. {
  4188. "name": "hyperf/stringable",
  4189. "version": "v3.1.50",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/hyperf/stringable.git",
  4193. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/hyperf/stringable/zipball/89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4198. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4199. "shasum": "",
  4200. "mirrors": [
  4201. {
  4202. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4203. "preferred": true
  4204. }
  4205. ]
  4206. },
  4207. "require": {
  4208. "ext-mbstring": "*",
  4209. "hyperf/collection": "~3.1.0",
  4210. "hyperf/conditionable": "~3.1.0",
  4211. "hyperf/macroable": "~3.1.0",
  4212. "hyperf/tappable": "~3.1.0",
  4213. "php": ">=8.1"
  4214. },
  4215. "suggest": {
  4216. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4217. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4218. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4219. },
  4220. "type": "library",
  4221. "extra": {
  4222. "branch-alias": {
  4223. "dev-master": "3.1-dev"
  4224. }
  4225. },
  4226. "autoload": {
  4227. "files": [
  4228. "src/Functions.php"
  4229. ],
  4230. "psr-4": {
  4231. "Hyperf\\Stringable\\": "src/"
  4232. }
  4233. },
  4234. "notification-url": "https://packagist.org/downloads/",
  4235. "license": [
  4236. "MIT"
  4237. ],
  4238. "description": "Hyperf Stringable package which come from illuminate/support",
  4239. "homepage": "https://hyperf.io",
  4240. "keywords": [
  4241. "hyperf",
  4242. "php",
  4243. "stringable",
  4244. "swoole"
  4245. ],
  4246. "support": {
  4247. "docs": "https://hyperf.wiki",
  4248. "issues": "https://github.com/hyperf/hyperf/issues",
  4249. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4250. "source": "https://github.com/hyperf/hyperf"
  4251. },
  4252. "funding": [
  4253. {
  4254. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4255. "type": "custom"
  4256. },
  4257. {
  4258. "url": "https://opencollective.com/hyperf",
  4259. "type": "open_collective"
  4260. }
  4261. ],
  4262. "time": "2025-01-08T06:57:58+00:00"
  4263. },
  4264. {
  4265. "name": "hyperf/support",
  4266. "version": "v3.1.51",
  4267. "source": {
  4268. "type": "git",
  4269. "url": "https://github.com/hyperf/support.git",
  4270. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4271. },
  4272. "dist": {
  4273. "type": "zip",
  4274. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4275. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4276. "shasum": "",
  4277. "mirrors": [
  4278. {
  4279. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4280. "preferred": true
  4281. }
  4282. ]
  4283. },
  4284. "require": {
  4285. "hyperf/collection": "~3.1.0",
  4286. "hyperf/context": "~3.1.0",
  4287. "hyperf/contract": "~3.1.0",
  4288. "hyperf/coroutine": "~3.1.0",
  4289. "hyperf/macroable": "~3.1.0",
  4290. "hyperf/stringable": "~3.1.0",
  4291. "php": ">=8.1"
  4292. },
  4293. "suggest": {
  4294. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4295. },
  4296. "type": "library",
  4297. "extra": {
  4298. "branch-alias": {
  4299. "dev-master": "3.1-dev"
  4300. }
  4301. },
  4302. "autoload": {
  4303. "files": [
  4304. "src/Functions.php"
  4305. ],
  4306. "psr-4": {
  4307. "Hyperf\\Support\\": "src/"
  4308. }
  4309. },
  4310. "notification-url": "https://packagist.org/downloads/",
  4311. "license": [
  4312. "MIT"
  4313. ],
  4314. "description": "A support component for Hyperf.",
  4315. "homepage": "https://hyperf.io",
  4316. "keywords": [
  4317. "hyperf",
  4318. "php",
  4319. "support",
  4320. "swoole"
  4321. ],
  4322. "support": {
  4323. "docs": "https://hyperf.wiki",
  4324. "issues": "https://github.com/hyperf/hyperf/issues",
  4325. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4326. "source": "https://github.com/hyperf/hyperf"
  4327. },
  4328. "funding": [
  4329. {
  4330. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4331. "type": "custom"
  4332. },
  4333. {
  4334. "url": "https://opencollective.com/hyperf",
  4335. "type": "open_collective"
  4336. }
  4337. ],
  4338. "time": "2025-02-06T07:02:37+00:00"
  4339. },
  4340. {
  4341. "name": "hyperf/tappable",
  4342. "version": "v3.1.42",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/hyperf/tappable.git",
  4346. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4351. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4352. "shasum": "",
  4353. "mirrors": [
  4354. {
  4355. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4356. "preferred": true
  4357. }
  4358. ]
  4359. },
  4360. "require": {
  4361. "php": ">=8.1"
  4362. },
  4363. "type": "library",
  4364. "extra": {
  4365. "branch-alias": {
  4366. "dev-master": "3.1-dev"
  4367. }
  4368. },
  4369. "autoload": {
  4370. "files": [
  4371. "src/Functions.php"
  4372. ],
  4373. "psr-4": {
  4374. "Hyperf\\Tappable\\": "src/"
  4375. }
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4382. "homepage": "https://hyperf.io",
  4383. "keywords": [
  4384. "hyperf",
  4385. "php",
  4386. "swoole",
  4387. "tappable"
  4388. ],
  4389. "support": {
  4390. "docs": "https://hyperf.wiki",
  4391. "issues": "https://github.com/hyperf/hyperf/issues",
  4392. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4393. "source": "https://github.com/hyperf/hyperf"
  4394. },
  4395. "funding": [
  4396. {
  4397. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4398. "type": "custom"
  4399. },
  4400. {
  4401. "url": "https://opencollective.com/hyperf",
  4402. "type": "open_collective"
  4403. }
  4404. ],
  4405. "time": "2024-09-25T02:54:12+00:00"
  4406. },
  4407. {
  4408. "name": "hyperf/task",
  4409. "version": "v3.1.42",
  4410. "source": {
  4411. "type": "git",
  4412. "url": "https://github.com/hyperf/task.git",
  4413. "reference": "c764c465cb9a03a2ccc9d10fce639c2a9d493901"
  4414. },
  4415. "dist": {
  4416. "type": "zip",
  4417. "url": "https://api.github.com/repos/hyperf/task/zipball/c764c465cb9a03a2ccc9d10fce639c2a9d493901",
  4418. "reference": "c764c465cb9a03a2ccc9d10fce639c2a9d493901",
  4419. "shasum": "",
  4420. "mirrors": [
  4421. {
  4422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4423. "preferred": true
  4424. }
  4425. ]
  4426. },
  4427. "require": {
  4428. "hyperf/contract": "~3.1.0",
  4429. "hyperf/framework": "~3.1.0",
  4430. "hyperf/serializer": "~3.1.0",
  4431. "hyperf/support": "~3.1.0",
  4432. "hyperf/utils": "~3.1.0",
  4433. "php": ">=8.1",
  4434. "psr/container": "^1.0 || ^2.0",
  4435. "psr/event-dispatcher": "^1.0",
  4436. "symfony/property-access": "^5.0 || ^6.0",
  4437. "symfony/serializer": "^5.0 || ^6.0"
  4438. },
  4439. "suggest": {
  4440. "hyperf/di": "Required to use annotation."
  4441. },
  4442. "type": "library",
  4443. "extra": {
  4444. "hyperf": {
  4445. "config": "Hyperf\\Task\\ConfigProvider"
  4446. },
  4447. "branch-alias": {
  4448. "dev-master": "3.1-dev"
  4449. }
  4450. },
  4451. "autoload": {
  4452. "psr-4": {
  4453. "Hyperf\\Task\\": "src/"
  4454. }
  4455. },
  4456. "notification-url": "https://packagist.org/downloads/",
  4457. "license": [
  4458. "MIT"
  4459. ],
  4460. "description": "A task library for Hyperf.",
  4461. "homepage": "https://hyperf.io",
  4462. "keywords": [
  4463. "hyperf",
  4464. "php",
  4465. "swoole",
  4466. "task"
  4467. ],
  4468. "support": {
  4469. "docs": "https://hyperf.wiki",
  4470. "issues": "https://github.com/hyperf/hyperf/issues",
  4471. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4472. "source": "https://github.com/hyperf/hyperf"
  4473. },
  4474. "funding": [
  4475. {
  4476. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4477. "type": "custom"
  4478. },
  4479. {
  4480. "url": "https://opencollective.com/hyperf",
  4481. "type": "open_collective"
  4482. }
  4483. ],
  4484. "time": "2024-09-25T02:54:12+00:00"
  4485. },
  4486. {
  4487. "name": "hyperf/tracer",
  4488. "version": "v3.1.42",
  4489. "source": {
  4490. "type": "git",
  4491. "url": "https://github.com/hyperf/tracer.git",
  4492. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883"
  4493. },
  4494. "dist": {
  4495. "type": "zip",
  4496. "url": "https://api.github.com/repos/hyperf/tracer/zipball/8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4497. "reference": "8ec4b4f2499592a3d748e3760aa63bca31c78883",
  4498. "shasum": "",
  4499. "mirrors": [
  4500. {
  4501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4502. "preferred": true
  4503. }
  4504. ]
  4505. },
  4506. "require": {
  4507. "hyperf/contract": "~3.1.0",
  4508. "hyperf/di": "~3.1.0",
  4509. "hyperf/guzzle": "~3.1.0",
  4510. "hyperf/support": "~3.1.0",
  4511. "hyperf/utils": "~3.1.0",
  4512. "jcchavezs/zipkin-opentracing": "^2.0",
  4513. "opentracing/opentracing": "^1.0",
  4514. "php": ">=8.1",
  4515. "psr/http-message": "^1.0 || ^2.0"
  4516. },
  4517. "suggest": {
  4518. "hyperf/event": "Required to use DbQueryExecutedListener.",
  4519. "jonahgeorge/jaeger-client-php": "Required (^0.6) to use jaeger tracing.",
  4520. "longlang/phpkafka": "Required (^1.2) to use Kafka Producer."
  4521. },
  4522. "type": "library",
  4523. "extra": {
  4524. "hyperf": {
  4525. "config": "Hyperf\\Tracer\\ConfigProvider"
  4526. },
  4527. "branch-alias": {
  4528. "dev-master": "3.1-dev"
  4529. }
  4530. },
  4531. "autoload": {
  4532. "psr-4": {
  4533. "Hyperf\\Tracer\\": "src/"
  4534. }
  4535. },
  4536. "notification-url": "https://packagist.org/downloads/",
  4537. "license": [
  4538. "MIT"
  4539. ],
  4540. "description": "A open tracing system implemented for Hyperf or other coroutine framework",
  4541. "homepage": "https://hyperf.io",
  4542. "keywords": [
  4543. "hyperf",
  4544. "open-tracing",
  4545. "php",
  4546. "zipkin"
  4547. ],
  4548. "support": {
  4549. "docs": "https://hyperf.wiki",
  4550. "issues": "https://github.com/hyperf/hyperf/issues",
  4551. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4552. "source": "https://github.com/hyperf/hyperf"
  4553. },
  4554. "funding": [
  4555. {
  4556. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4557. "type": "custom"
  4558. },
  4559. {
  4560. "url": "https://opencollective.com/hyperf",
  4561. "type": "open_collective"
  4562. }
  4563. ],
  4564. "time": "2024-09-25T02:54:12+00:00"
  4565. },
  4566. {
  4567. "name": "hyperf/utils",
  4568. "version": "v3.1.42",
  4569. "source": {
  4570. "type": "git",
  4571. "url": "https://github.com/hyperf/utils.git",
  4572. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4573. },
  4574. "dist": {
  4575. "type": "zip",
  4576. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4577. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4578. "shasum": "",
  4579. "mirrors": [
  4580. {
  4581. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4582. "preferred": true
  4583. }
  4584. ]
  4585. },
  4586. "require": {
  4587. "doctrine/inflector": "^2.0",
  4588. "hyperf/code-parser": "~3.1.0",
  4589. "hyperf/codec": "~3.1.0",
  4590. "hyperf/collection": "~3.1.0",
  4591. "hyperf/context": "~3.1.0",
  4592. "hyperf/contract": "~3.1.0",
  4593. "hyperf/coordinator": "~3.1.0",
  4594. "hyperf/coroutine": "~3.1.0",
  4595. "hyperf/engine": "^2.0",
  4596. "hyperf/macroable": "~3.1.0",
  4597. "hyperf/serializer": "~3.1.0",
  4598. "hyperf/stringable": "~3.1.0",
  4599. "hyperf/support": "~3.1.0",
  4600. "php": ">=8.1"
  4601. },
  4602. "type": "library",
  4603. "extra": {
  4604. "branch-alias": {
  4605. "dev-master": "3.1-dev"
  4606. }
  4607. },
  4608. "notification-url": "https://packagist.org/downloads/",
  4609. "license": [
  4610. "MIT"
  4611. ],
  4612. "description": "A tools package that could help developer solved the problem quickly.",
  4613. "homepage": "https://hyperf.io",
  4614. "keywords": [
  4615. "hyperf",
  4616. "php",
  4617. "swoole",
  4618. "utils"
  4619. ],
  4620. "support": {
  4621. "docs": "https://hyperf.wiki",
  4622. "issues": "https://github.com/hyperf/hyperf/issues",
  4623. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4624. "source": "https://github.com/hyperf/hyperf"
  4625. },
  4626. "funding": [
  4627. {
  4628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4629. "type": "custom"
  4630. },
  4631. {
  4632. "url": "https://opencollective.com/hyperf",
  4633. "type": "open_collective"
  4634. }
  4635. ],
  4636. "time": "2024-09-25T02:54:12+00:00"
  4637. },
  4638. {
  4639. "name": "hyperf/view",
  4640. "version": "v3.1.42",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/hyperf/view.git",
  4644. "reference": "bc8b1eb4378b7f61a9d6f478d6f0b84dc4734dc0"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/hyperf/view/zipball/bc8b1eb4378b7f61a9d6f478d6f0b84dc4734dc0",
  4649. "reference": "bc8b1eb4378b7f61a9d6f478d6f0b84dc4734dc0",
  4650. "shasum": "",
  4651. "mirrors": [
  4652. {
  4653. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4654. "preferred": true
  4655. }
  4656. ]
  4657. },
  4658. "require": {
  4659. "hyperf/context": "~3.1.0",
  4660. "hyperf/contract": "~3.1.0",
  4661. "hyperf/support": "~3.1.0",
  4662. "hyperf/utils": "~3.1.0",
  4663. "php": ">=8.1",
  4664. "psr/container": "^1.0 || ^2.0",
  4665. "swow/psr7-plus": "^1.0"
  4666. },
  4667. "suggest": {
  4668. "duncan3dc/blade": "Required to use blade as a view render engine.",
  4669. "hyperf/task": "Required to use task as a view render mode.",
  4670. "league/plates": "Required to use plates as a view render engine.",
  4671. "smarty/smarty": "Required to use smarty as a view render engine.",
  4672. "twig/twig": "Required to use twig as a view render engine."
  4673. },
  4674. "type": "library",
  4675. "extra": {
  4676. "hyperf": {
  4677. "config": "Hyperf\\View\\ConfigProvider"
  4678. },
  4679. "branch-alias": {
  4680. "dev-master": "3.1-dev"
  4681. }
  4682. },
  4683. "autoload": {
  4684. "psr-4": {
  4685. "Hyperf\\View\\": "src/"
  4686. }
  4687. },
  4688. "notification-url": "https://packagist.org/downloads/",
  4689. "license": [
  4690. "MIT"
  4691. ],
  4692. "description": "A view library for Hyperf.",
  4693. "homepage": "https://hyperf.io",
  4694. "keywords": [
  4695. "hyperf",
  4696. "php",
  4697. "swoole",
  4698. "view"
  4699. ],
  4700. "support": {
  4701. "docs": "https://hyperf.wiki",
  4702. "issues": "https://github.com/hyperf/hyperf/issues",
  4703. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4704. "source": "https://github.com/hyperf/hyperf"
  4705. },
  4706. "funding": [
  4707. {
  4708. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4709. "type": "custom"
  4710. },
  4711. {
  4712. "url": "https://opencollective.com/hyperf",
  4713. "type": "open_collective"
  4714. }
  4715. ],
  4716. "time": "2024-09-25T02:54:12+00:00"
  4717. },
  4718. {
  4719. "name": "hyperf/view-engine",
  4720. "version": "v3.1.52",
  4721. "source": {
  4722. "type": "git",
  4723. "url": "https://github.com/hyperf/view-engine.git",
  4724. "reference": "59124d7bcf580ee22159d7ed4916f52f2a2e803c"
  4725. },
  4726. "dist": {
  4727. "type": "zip",
  4728. "url": "https://api.github.com/repos/hyperf/view-engine/zipball/59124d7bcf580ee22159d7ed4916f52f2a2e803c",
  4729. "reference": "59124d7bcf580ee22159d7ed4916f52f2a2e803c",
  4730. "shasum": "",
  4731. "mirrors": [
  4732. {
  4733. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4734. "preferred": true
  4735. }
  4736. ]
  4737. },
  4738. "require": {
  4739. "ext-json": "*",
  4740. "hyperf/collection": "~3.1.23",
  4741. "hyperf/config": "~3.1.0",
  4742. "hyperf/di": "~3.1.0",
  4743. "hyperf/event": "~3.1.0",
  4744. "hyperf/macroable": "~3.1.0",
  4745. "hyperf/support": "~3.1.0",
  4746. "hyperf/tappable": "~3.1.0",
  4747. "hyperf/utils": "~3.1.0",
  4748. "hyperf/view": "~3.1.0",
  4749. "php": ">=8.1"
  4750. },
  4751. "suggest": {
  4752. "hyperf/session": "Required to use ShareErrorsFromSession.",
  4753. "hyperf/validation": "Required to use ShareErrorsFromSession and ValidationExceptionHandle."
  4754. },
  4755. "type": "library",
  4756. "extra": {
  4757. "hyperf": {
  4758. "config": "Hyperf\\ViewEngine\\ConfigProvider"
  4759. },
  4760. "branch-alias": {
  4761. "dev-master": "3.1-dev"
  4762. }
  4763. },
  4764. "autoload": {
  4765. "files": [
  4766. "src/Functions.php"
  4767. ],
  4768. "psr-4": {
  4769. "Hyperf\\ViewEngine\\": "src/"
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "MIT"
  4775. ],
  4776. "keywords": [
  4777. "engine",
  4778. "hyperf",
  4779. "php",
  4780. "view"
  4781. ],
  4782. "support": {
  4783. "issues": "https://github.com/hyperf/view-engine/issues",
  4784. "source": "https://github.com/hyperf/view-engine/tree/v3.1.52"
  4785. },
  4786. "funding": [
  4787. {
  4788. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4789. "type": "custom"
  4790. },
  4791. {
  4792. "url": "https://opencollective.com/hyperf",
  4793. "type": "open_collective"
  4794. }
  4795. ],
  4796. "time": "2025-02-27T06:49:30+00:00"
  4797. },
  4798. {
  4799. "name": "jcchavezs/zipkin-opentracing",
  4800. "version": "2.0.3",
  4801. "source": {
  4802. "type": "git",
  4803. "url": "https://github.com/jcchavezs/zipkin-php-opentracing.git",
  4804. "reference": "bb8f1c5c3643594c0328c7df98e49fef86c85710"
  4805. },
  4806. "dist": {
  4807. "type": "zip",
  4808. "url": "https://api.github.com/repos/jcchavezs/zipkin-php-opentracing/zipball/bb8f1c5c3643594c0328c7df98e49fef86c85710",
  4809. "reference": "bb8f1c5c3643594c0328c7df98e49fef86c85710",
  4810. "shasum": "",
  4811. "mirrors": [
  4812. {
  4813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4814. "preferred": true
  4815. }
  4816. ]
  4817. },
  4818. "require": {
  4819. "opentracing/opentracing": "^1.0.1",
  4820. "openzipkin/zipkin": "^3.0.0",
  4821. "php": ">=7.4 || ^8.0"
  4822. },
  4823. "provide": {
  4824. "opentracing/opentracing": "1.0.0"
  4825. },
  4826. "require-dev": {
  4827. "phpspec/prophecy-phpunit": "^2.0",
  4828. "phpstan/phpstan": "^0.12.26",
  4829. "phpunit/phpunit": "^9.0",
  4830. "squizlabs/php_codesniffer": "3.*"
  4831. },
  4832. "type": "library",
  4833. "autoload": {
  4834. "psr-4": {
  4835. "ZipkinOpenTracing\\": "./src/ZipkinOpenTracing/"
  4836. }
  4837. },
  4838. "notification-url": "https://packagist.org/downloads/",
  4839. "license": [
  4840. "MIT"
  4841. ],
  4842. "authors": [
  4843. {
  4844. "name": "José Carlos Chávez",
  4845. "email": "jcchavezs@gmail.com"
  4846. }
  4847. ],
  4848. "description": "A Zipkin bridge with OpenTracing",
  4849. "support": {
  4850. "issues": "https://github.com/jcchavezs/zipkin-php-opentracing/issues",
  4851. "source": "https://github.com/jcchavezs/zipkin-php-opentracing/tree/2.0.3"
  4852. },
  4853. "funding": [
  4854. {
  4855. "url": "https://www.paypal.me/jcchavezs",
  4856. "type": "paypal"
  4857. }
  4858. ],
  4859. "time": "2023-06-08T11:40:46+00:00"
  4860. },
  4861. {
  4862. "name": "jetbrains/phpstorm-attributes",
  4863. "version": "1.2",
  4864. "source": {
  4865. "type": "git",
  4866. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4867. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4868. },
  4869. "dist": {
  4870. "type": "zip",
  4871. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4872. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4873. "shasum": "",
  4874. "mirrors": [
  4875. {
  4876. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4877. "preferred": true
  4878. }
  4879. ]
  4880. },
  4881. "type": "library",
  4882. "autoload": {
  4883. "psr-4": {
  4884. "JetBrains\\PhpStorm\\": "src/"
  4885. }
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "Apache-2.0"
  4890. ],
  4891. "authors": [
  4892. {
  4893. "name": "JetBrains",
  4894. "homepage": "https://www.jetbrains.com"
  4895. }
  4896. ],
  4897. "description": "PhpStorm specific attributes",
  4898. "keywords": [
  4899. "attributes",
  4900. "jetbrains",
  4901. "phpstorm"
  4902. ],
  4903. "support": {
  4904. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4905. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4906. },
  4907. "time": "2024-10-11T10:46:19+00:00"
  4908. },
  4909. {
  4910. "name": "laminas/laminas-mime",
  4911. "version": "2.12.0",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/laminas/laminas-mime.git",
  4915. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4920. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4921. "shasum": "",
  4922. "mirrors": [
  4923. {
  4924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4925. "preferred": true
  4926. }
  4927. ]
  4928. },
  4929. "require": {
  4930. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4931. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4932. },
  4933. "conflict": {
  4934. "zendframework/zend-mime": "*"
  4935. },
  4936. "require-dev": {
  4937. "laminas/laminas-coding-standard": "~2.4.0",
  4938. "laminas/laminas-mail": "^2.19.0",
  4939. "phpunit/phpunit": "~9.5.25"
  4940. },
  4941. "suggest": {
  4942. "laminas/laminas-mail": "Laminas\\Mail component"
  4943. },
  4944. "type": "library",
  4945. "autoload": {
  4946. "psr-4": {
  4947. "Laminas\\Mime\\": "src/"
  4948. }
  4949. },
  4950. "notification-url": "https://packagist.org/downloads/",
  4951. "license": [
  4952. "BSD-3-Clause"
  4953. ],
  4954. "description": "Create and parse MIME messages and parts",
  4955. "homepage": "https://laminas.dev",
  4956. "keywords": [
  4957. "laminas",
  4958. "mime"
  4959. ],
  4960. "support": {
  4961. "chat": "https://laminas.dev/chat",
  4962. "docs": "https://docs.laminas.dev/laminas-mime/",
  4963. "forum": "https://discourse.laminas.dev",
  4964. "issues": "https://github.com/laminas/laminas-mime/issues",
  4965. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4966. "source": "https://github.com/laminas/laminas-mime"
  4967. },
  4968. "funding": [
  4969. {
  4970. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4971. "type": "community_bridge"
  4972. }
  4973. ],
  4974. "time": "2023-11-02T16:47:19+00:00"
  4975. },
  4976. {
  4977. "name": "laminas/laminas-stdlib",
  4978. "version": "3.20.0",
  4979. "source": {
  4980. "type": "git",
  4981. "url": "https://github.com/laminas/laminas-stdlib.git",
  4982. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4983. },
  4984. "dist": {
  4985. "type": "zip",
  4986. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4987. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4988. "shasum": "",
  4989. "mirrors": [
  4990. {
  4991. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4992. "preferred": true
  4993. }
  4994. ]
  4995. },
  4996. "require": {
  4997. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4998. },
  4999. "conflict": {
  5000. "zendframework/zend-stdlib": "*"
  5001. },
  5002. "require-dev": {
  5003. "laminas/laminas-coding-standard": "^3.0",
  5004. "phpbench/phpbench": "^1.3.1",
  5005. "phpunit/phpunit": "^10.5.38",
  5006. "psalm/plugin-phpunit": "^0.19.0",
  5007. "vimeo/psalm": "^5.26.1"
  5008. },
  5009. "type": "library",
  5010. "autoload": {
  5011. "psr-4": {
  5012. "Laminas\\Stdlib\\": "src/"
  5013. }
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "BSD-3-Clause"
  5018. ],
  5019. "description": "SPL extensions, array utilities, error handlers, and more",
  5020. "homepage": "https://laminas.dev",
  5021. "keywords": [
  5022. "laminas",
  5023. "stdlib"
  5024. ],
  5025. "support": {
  5026. "chat": "https://laminas.dev/chat",
  5027. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5028. "forum": "https://discourse.laminas.dev",
  5029. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5030. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5031. "source": "https://github.com/laminas/laminas-stdlib"
  5032. },
  5033. "funding": [
  5034. {
  5035. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5036. "type": "community_bridge"
  5037. }
  5038. ],
  5039. "time": "2024-10-29T13:46:07+00:00"
  5040. },
  5041. {
  5042. "name": "markrogoyski/math-php",
  5043. "version": "v2.11.0",
  5044. "source": {
  5045. "type": "git",
  5046. "url": "https://github.com/markrogoyski/math-php.git",
  5047. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  5048. },
  5049. "dist": {
  5050. "type": "zip",
  5051. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5052. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  5053. "shasum": "",
  5054. "mirrors": [
  5055. {
  5056. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5057. "preferred": true
  5058. }
  5059. ]
  5060. },
  5061. "require": {
  5062. "ext-json": "*",
  5063. "php": ">=7.2.0"
  5064. },
  5065. "require-dev": {
  5066. "php-coveralls/php-coveralls": "^2.0",
  5067. "php-parallel-lint/php-parallel-lint": "^1.2",
  5068. "phploc/phploc": "*",
  5069. "phpmd/phpmd": "^2.6",
  5070. "phpstan/phpstan": "^1.10",
  5071. "phpunit/phpunit": "^8.5",
  5072. "squizlabs/php_codesniffer": "3.*"
  5073. },
  5074. "type": "library",
  5075. "autoload": {
  5076. "psr-4": {
  5077. "MathPHP\\": "src/"
  5078. }
  5079. },
  5080. "notification-url": "https://packagist.org/downloads/",
  5081. "license": [
  5082. "MIT"
  5083. ],
  5084. "authors": [
  5085. {
  5086. "name": "Mark Rogoyski",
  5087. "email": "mark@rogoyski.com",
  5088. "homepage": "https://github.com/markrogoyski",
  5089. "role": "Lead developer"
  5090. },
  5091. {
  5092. "name": "Kevin Nowaczyk",
  5093. "homepage": "https://github.com/Beakerboy",
  5094. "role": "Developer"
  5095. },
  5096. {
  5097. "name": "MathPHP Community of Contributors",
  5098. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5099. }
  5100. ],
  5101. "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",
  5102. "homepage": "https://github.com/markrogoyski/math-php/",
  5103. "keywords": [
  5104. "algebra",
  5105. "combinatorics",
  5106. "distributions",
  5107. "linear algebra",
  5108. "math",
  5109. "mathematics",
  5110. "matrix",
  5111. "numerical analysis",
  5112. "probability",
  5113. "regressions",
  5114. "statistics"
  5115. ],
  5116. "support": {
  5117. "issues": "https://github.com/markrogoyski/math-php/issues",
  5118. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  5119. },
  5120. "time": "2025-01-26T20:16:06+00:00"
  5121. },
  5122. {
  5123. "name": "monolog/monolog",
  5124. "version": "3.9.0",
  5125. "source": {
  5126. "type": "git",
  5127. "url": "https://github.com/Seldaek/monolog.git",
  5128. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  5129. },
  5130. "dist": {
  5131. "type": "zip",
  5132. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5133. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  5134. "shasum": "",
  5135. "mirrors": [
  5136. {
  5137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5138. "preferred": true
  5139. }
  5140. ]
  5141. },
  5142. "require": {
  5143. "php": ">=8.1",
  5144. "psr/log": "^2.0 || ^3.0"
  5145. },
  5146. "provide": {
  5147. "psr/log-implementation": "3.0.0"
  5148. },
  5149. "require-dev": {
  5150. "aws/aws-sdk-php": "^3.0",
  5151. "doctrine/couchdb": "~1.0@dev",
  5152. "elasticsearch/elasticsearch": "^7 || ^8",
  5153. "ext-json": "*",
  5154. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5155. "guzzlehttp/guzzle": "^7.4.5",
  5156. "guzzlehttp/psr7": "^2.2",
  5157. "mongodb/mongodb": "^1.8",
  5158. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5159. "php-console/php-console": "^3.1.8",
  5160. "phpstan/phpstan": "^2",
  5161. "phpstan/phpstan-deprecation-rules": "^2",
  5162. "phpstan/phpstan-strict-rules": "^2",
  5163. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5164. "predis/predis": "^1.1 || ^2",
  5165. "rollbar/rollbar": "^4.0",
  5166. "ruflin/elastica": "^7 || ^8",
  5167. "symfony/mailer": "^5.4 || ^6",
  5168. "symfony/mime": "^5.4 || ^6"
  5169. },
  5170. "suggest": {
  5171. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5172. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5173. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5174. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5175. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5176. "ext-mbstring": "Allow to work properly with unicode symbols",
  5177. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5178. "ext-openssl": "Required to send log messages using SSL",
  5179. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5180. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5181. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5182. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5183. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5184. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5185. },
  5186. "type": "library",
  5187. "extra": {
  5188. "branch-alias": {
  5189. "dev-main": "3.x-dev"
  5190. }
  5191. },
  5192. "autoload": {
  5193. "psr-4": {
  5194. "Monolog\\": "src/Monolog"
  5195. }
  5196. },
  5197. "notification-url": "https://packagist.org/downloads/",
  5198. "license": [
  5199. "MIT"
  5200. ],
  5201. "authors": [
  5202. {
  5203. "name": "Jordi Boggiano",
  5204. "email": "j.boggiano@seld.be",
  5205. "homepage": "https://seld.be"
  5206. }
  5207. ],
  5208. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5209. "homepage": "https://github.com/Seldaek/monolog",
  5210. "keywords": [
  5211. "log",
  5212. "logging",
  5213. "psr-3"
  5214. ],
  5215. "support": {
  5216. "issues": "https://github.com/Seldaek/monolog/issues",
  5217. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  5218. },
  5219. "funding": [
  5220. {
  5221. "url": "https://github.com/Seldaek",
  5222. "type": "github"
  5223. },
  5224. {
  5225. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5226. "type": "tidelift"
  5227. }
  5228. ],
  5229. "time": "2025-03-24T10:02:05+00:00"
  5230. },
  5231. {
  5232. "name": "nesbot/carbon",
  5233. "version": "2.73.0",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/CarbonPHP/carbon.git",
  5237. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5242. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  5243. "shasum": "",
  5244. "mirrors": [
  5245. {
  5246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5247. "preferred": true
  5248. }
  5249. ]
  5250. },
  5251. "require": {
  5252. "carbonphp/carbon-doctrine-types": "*",
  5253. "ext-json": "*",
  5254. "php": "^7.1.8 || ^8.0",
  5255. "psr/clock": "^1.0",
  5256. "symfony/polyfill-mbstring": "^1.0",
  5257. "symfony/polyfill-php80": "^1.16",
  5258. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5259. },
  5260. "provide": {
  5261. "psr/clock-implementation": "1.0"
  5262. },
  5263. "require-dev": {
  5264. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5265. "doctrine/orm": "^2.7 || ^3.0",
  5266. "friendsofphp/php-cs-fixer": "^3.0",
  5267. "kylekatarnls/multi-tester": "^2.0",
  5268. "ondrejmirtes/better-reflection": "<6",
  5269. "phpmd/phpmd": "^2.9",
  5270. "phpstan/extension-installer": "^1.0",
  5271. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5272. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5273. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5274. "squizlabs/php_codesniffer": "^3.4"
  5275. },
  5276. "bin": [
  5277. "bin/carbon"
  5278. ],
  5279. "type": "library",
  5280. "extra": {
  5281. "laravel": {
  5282. "providers": [
  5283. "Carbon\\Laravel\\ServiceProvider"
  5284. ]
  5285. },
  5286. "phpstan": {
  5287. "includes": [
  5288. "extension.neon"
  5289. ]
  5290. },
  5291. "branch-alias": {
  5292. "dev-2.x": "2.x-dev",
  5293. "dev-master": "3.x-dev"
  5294. }
  5295. },
  5296. "autoload": {
  5297. "psr-4": {
  5298. "Carbon\\": "src/Carbon/"
  5299. }
  5300. },
  5301. "notification-url": "https://packagist.org/downloads/",
  5302. "license": [
  5303. "MIT"
  5304. ],
  5305. "authors": [
  5306. {
  5307. "name": "Brian Nesbitt",
  5308. "email": "brian@nesbot.com",
  5309. "homepage": "https://markido.com"
  5310. },
  5311. {
  5312. "name": "kylekatarnls",
  5313. "homepage": "https://github.com/kylekatarnls"
  5314. }
  5315. ],
  5316. "description": "An API extension for DateTime that supports 281 different languages.",
  5317. "homepage": "https://carbon.nesbot.com",
  5318. "keywords": [
  5319. "date",
  5320. "datetime",
  5321. "time"
  5322. ],
  5323. "support": {
  5324. "docs": "https://carbon.nesbot.com/docs",
  5325. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5326. "source": "https://github.com/briannesbitt/Carbon"
  5327. },
  5328. "funding": [
  5329. {
  5330. "url": "https://github.com/sponsors/kylekatarnls",
  5331. "type": "github"
  5332. },
  5333. {
  5334. "url": "https://opencollective.com/Carbon#sponsor",
  5335. "type": "opencollective"
  5336. },
  5337. {
  5338. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5339. "type": "tidelift"
  5340. }
  5341. ],
  5342. "time": "2025-01-08T20:10:23+00:00"
  5343. },
  5344. {
  5345. "name": "nikic/fast-route",
  5346. "version": "v1.3.0",
  5347. "source": {
  5348. "type": "git",
  5349. "url": "https://github.com/nikic/FastRoute.git",
  5350. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5351. },
  5352. "dist": {
  5353. "type": "zip",
  5354. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5355. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5356. "shasum": "",
  5357. "mirrors": [
  5358. {
  5359. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5360. "preferred": true
  5361. }
  5362. ]
  5363. },
  5364. "require": {
  5365. "php": ">=5.4.0"
  5366. },
  5367. "require-dev": {
  5368. "phpunit/phpunit": "^4.8.35|~5.7"
  5369. },
  5370. "type": "library",
  5371. "autoload": {
  5372. "files": [
  5373. "src/functions.php"
  5374. ],
  5375. "psr-4": {
  5376. "FastRoute\\": "src/"
  5377. }
  5378. },
  5379. "notification-url": "https://packagist.org/downloads/",
  5380. "license": [
  5381. "BSD-3-Clause"
  5382. ],
  5383. "authors": [
  5384. {
  5385. "name": "Nikita Popov",
  5386. "email": "nikic@php.net"
  5387. }
  5388. ],
  5389. "description": "Fast request router for PHP",
  5390. "keywords": [
  5391. "router",
  5392. "routing"
  5393. ],
  5394. "support": {
  5395. "issues": "https://github.com/nikic/FastRoute/issues",
  5396. "source": "https://github.com/nikic/FastRoute/tree/master"
  5397. },
  5398. "time": "2018-02-13T20:26:39+00:00"
  5399. },
  5400. {
  5401. "name": "nikic/php-parser",
  5402. "version": "v4.19.4",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://github.com/nikic/PHP-Parser.git",
  5406. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5411. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5412. "shasum": "",
  5413. "mirrors": [
  5414. {
  5415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5416. "preferred": true
  5417. }
  5418. ]
  5419. },
  5420. "require": {
  5421. "ext-tokenizer": "*",
  5422. "php": ">=7.1"
  5423. },
  5424. "require-dev": {
  5425. "ircmaxell/php-yacc": "^0.0.7",
  5426. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5427. },
  5428. "bin": [
  5429. "bin/php-parse"
  5430. ],
  5431. "type": "library",
  5432. "extra": {
  5433. "branch-alias": {
  5434. "dev-master": "4.9-dev"
  5435. }
  5436. },
  5437. "autoload": {
  5438. "psr-4": {
  5439. "PhpParser\\": "lib/PhpParser"
  5440. }
  5441. },
  5442. "notification-url": "https://packagist.org/downloads/",
  5443. "license": [
  5444. "BSD-3-Clause"
  5445. ],
  5446. "authors": [
  5447. {
  5448. "name": "Nikita Popov"
  5449. }
  5450. ],
  5451. "description": "A PHP parser written in PHP",
  5452. "keywords": [
  5453. "parser",
  5454. "php"
  5455. ],
  5456. "support": {
  5457. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5458. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5459. },
  5460. "time": "2024-09-29T15:01:53+00:00"
  5461. },
  5462. {
  5463. "name": "opentracing/opentracing",
  5464. "version": "1.0.2",
  5465. "source": {
  5466. "type": "git",
  5467. "url": "https://github.com/opentracing/opentracing-php.git",
  5468. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116"
  5469. },
  5470. "dist": {
  5471. "type": "zip",
  5472. "url": "https://api.github.com/repos/opentracing/opentracing-php/zipball/cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5473. "reference": "cd60bd1fb2a25280600bc74c7f9e0c13881a9116",
  5474. "shasum": "",
  5475. "mirrors": [
  5476. {
  5477. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5478. "preferred": true
  5479. }
  5480. ]
  5481. },
  5482. "require": {
  5483. "php": "^7.1 || ^8.0"
  5484. },
  5485. "require-dev": {
  5486. "phpstan/phpstan": "~0.12",
  5487. "phpunit/phpunit": "^7.0 || ^9.0",
  5488. "squizlabs/php_codesniffer": "3.*"
  5489. },
  5490. "type": "library",
  5491. "autoload": {
  5492. "files": [
  5493. "src/OpenTracing/Tags.php",
  5494. "src/OpenTracing/Formats.php"
  5495. ],
  5496. "psr-4": {
  5497. "OpenTracing\\": "src/OpenTracing/"
  5498. }
  5499. },
  5500. "notification-url": "https://packagist.org/downloads/",
  5501. "license": [
  5502. "Apache-2.0"
  5503. ],
  5504. "authors": [
  5505. {
  5506. "name": "José Carlos Chávez",
  5507. "email": "jcchavezs@gmail.com"
  5508. }
  5509. ],
  5510. "description": "OpenTracing API for PHP",
  5511. "support": {
  5512. "issues": "https://github.com/opentracing/opentracing-php/issues",
  5513. "source": "https://github.com/opentracing/opentracing-php/tree/1.0.2"
  5514. },
  5515. "time": "2022-01-27T19:59:21+00:00"
  5516. },
  5517. {
  5518. "name": "openzipkin/zipkin",
  5519. "version": "3.2.0",
  5520. "source": {
  5521. "type": "git",
  5522. "url": "https://github.com/openzipkin/zipkin-php.git",
  5523. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6"
  5524. },
  5525. "dist": {
  5526. "type": "zip",
  5527. "url": "https://api.github.com/repos/openzipkin/zipkin-php/zipball/e2809f8b6775796d2116b3ca73576a1734296ff6",
  5528. "reference": "e2809f8b6775796d2116b3ca73576a1734296ff6",
  5529. "shasum": "",
  5530. "mirrors": [
  5531. {
  5532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5533. "preferred": true
  5534. }
  5535. ]
  5536. },
  5537. "require": {
  5538. "ext-curl": "*",
  5539. "php": "^7.4 || ^8.0",
  5540. "psr/http-message": "~1.0 || ~2.0",
  5541. "psr/log": "^1.0 || ^2.0 || ^3.0"
  5542. },
  5543. "require-dev": {
  5544. "ext-mysqli": "*",
  5545. "jcchavezs/httptest": "~0.2",
  5546. "middlewares/fast-route": "^2.0",
  5547. "middlewares/request-handler": "^2.0",
  5548. "nyholm/psr7": "^1.4",
  5549. "phpspec/prophecy-phpunit": "^2.0",
  5550. "phpstan/phpstan": "^0.12.26",
  5551. "phpunit/phpunit": "~9",
  5552. "psr/http-client": "^1.0",
  5553. "psr/http-server-middleware": "^1.0",
  5554. "squizlabs/php_codesniffer": "3.*"
  5555. },
  5556. "suggest": {
  5557. "ext-mysqli": "Allows to use mysqli instrumentation.",
  5558. "psr/http-client": "Allows to instrument HTTP clients following PSR18.",
  5559. "psr/http-server-middleware": "Allows to instrument HTTP servers via middlewares following PSR15."
  5560. },
  5561. "type": "library",
  5562. "autoload": {
  5563. "files": [
  5564. "./src/Zipkin/Propagation/Id.php",
  5565. "./src/Zipkin/Timestamp.php",
  5566. "./src/Zipkin/Kind.php",
  5567. "./src/Zipkin/Tags.php",
  5568. "./src/Zipkin/Annotations.php",
  5569. "./src/Zipkin/SpanName.php"
  5570. ],
  5571. "psr-4": {
  5572. "Zipkin\\": "./src/Zipkin/"
  5573. }
  5574. },
  5575. "notification-url": "https://packagist.org/downloads/",
  5576. "license": [
  5577. "Apache-2.0"
  5578. ],
  5579. "authors": [
  5580. {
  5581. "name": "José Carlos Chávez",
  5582. "email": "jcchavezs@gmail.com"
  5583. }
  5584. ],
  5585. "description": "A Zipkin instrumentation for PHP",
  5586. "homepage": "https://github.com/openzipkin/zipkin-php",
  5587. "keywords": [
  5588. "distributed-tracing",
  5589. "openzipkin",
  5590. "tracing",
  5591. "zipkin"
  5592. ],
  5593. "support": {
  5594. "issues": "https://github.com/openzipkin/zipkin-php/issues",
  5595. "source": "https://github.com/openzipkin/zipkin-php/tree/3.2.0"
  5596. },
  5597. "time": "2023-09-28T20:54:04+00:00"
  5598. },
  5599. {
  5600. "name": "paragonie/constant_time_encoding",
  5601. "version": "v3.0.0",
  5602. "source": {
  5603. "type": "git",
  5604. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5605. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5606. },
  5607. "dist": {
  5608. "type": "zip",
  5609. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5610. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5611. "shasum": "",
  5612. "mirrors": [
  5613. {
  5614. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5615. "preferred": true
  5616. }
  5617. ]
  5618. },
  5619. "require": {
  5620. "php": "^8"
  5621. },
  5622. "require-dev": {
  5623. "phpunit/phpunit": "^9",
  5624. "vimeo/psalm": "^4|^5"
  5625. },
  5626. "type": "library",
  5627. "autoload": {
  5628. "psr-4": {
  5629. "ParagonIE\\ConstantTime\\": "src/"
  5630. }
  5631. },
  5632. "notification-url": "https://packagist.org/downloads/",
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Paragon Initiative Enterprises",
  5639. "email": "security@paragonie.com",
  5640. "homepage": "https://paragonie.com",
  5641. "role": "Maintainer"
  5642. },
  5643. {
  5644. "name": "Steve 'Sc00bz' Thomas",
  5645. "email": "steve@tobtu.com",
  5646. "homepage": "https://www.tobtu.com",
  5647. "role": "Original Developer"
  5648. }
  5649. ],
  5650. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5651. "keywords": [
  5652. "base16",
  5653. "base32",
  5654. "base32_decode",
  5655. "base32_encode",
  5656. "base64",
  5657. "base64_decode",
  5658. "base64_encode",
  5659. "bin2hex",
  5660. "encoding",
  5661. "hex",
  5662. "hex2bin",
  5663. "rfc4648"
  5664. ],
  5665. "support": {
  5666. "email": "info@paragonie.com",
  5667. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5668. "source": "https://github.com/paragonie/constant_time_encoding"
  5669. },
  5670. "time": "2024-05-08T12:36:18+00:00"
  5671. },
  5672. {
  5673. "name": "paragonie/random_compat",
  5674. "version": "v9.99.100",
  5675. "source": {
  5676. "type": "git",
  5677. "url": "https://github.com/paragonie/random_compat.git",
  5678. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5679. },
  5680. "dist": {
  5681. "type": "zip",
  5682. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5683. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5684. "shasum": "",
  5685. "mirrors": [
  5686. {
  5687. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5688. "preferred": true
  5689. }
  5690. ]
  5691. },
  5692. "require": {
  5693. "php": ">= 7"
  5694. },
  5695. "require-dev": {
  5696. "phpunit/phpunit": "4.*|5.*",
  5697. "vimeo/psalm": "^1"
  5698. },
  5699. "suggest": {
  5700. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5701. },
  5702. "type": "library",
  5703. "notification-url": "https://packagist.org/downloads/",
  5704. "license": [
  5705. "MIT"
  5706. ],
  5707. "authors": [
  5708. {
  5709. "name": "Paragon Initiative Enterprises",
  5710. "email": "security@paragonie.com",
  5711. "homepage": "https://paragonie.com"
  5712. }
  5713. ],
  5714. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5715. "keywords": [
  5716. "csprng",
  5717. "polyfill",
  5718. "pseudorandom",
  5719. "random"
  5720. ],
  5721. "support": {
  5722. "email": "info@paragonie.com",
  5723. "issues": "https://github.com/paragonie/random_compat/issues",
  5724. "source": "https://github.com/paragonie/random_compat"
  5725. },
  5726. "time": "2020-10-15T08:29:30+00:00"
  5727. },
  5728. {
  5729. "name": "php-amqplib/php-amqplib",
  5730. "version": "v3.6.1",
  5731. "source": {
  5732. "type": "git",
  5733. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5734. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  5735. },
  5736. "dist": {
  5737. "type": "zip",
  5738. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5739. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5740. "shasum": "",
  5741. "mirrors": [
  5742. {
  5743. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5744. "preferred": true
  5745. }
  5746. ]
  5747. },
  5748. "require": {
  5749. "ext-mbstring": "*",
  5750. "ext-sockets": "*",
  5751. "php": "^7.2||^8.0",
  5752. "phpseclib/phpseclib": "^2.0|^3.0"
  5753. },
  5754. "conflict": {
  5755. "php": "7.4.0 - 7.4.1"
  5756. },
  5757. "replace": {
  5758. "videlalvaro/php-amqplib": "self.version"
  5759. },
  5760. "require-dev": {
  5761. "ext-curl": "*",
  5762. "nategood/httpful": "^0.2.20",
  5763. "phpunit/phpunit": "^7.5|^9.5",
  5764. "squizlabs/php_codesniffer": "^3.6"
  5765. },
  5766. "type": "library",
  5767. "extra": {
  5768. "branch-alias": {
  5769. "dev-master": "3.0-dev"
  5770. }
  5771. },
  5772. "autoload": {
  5773. "psr-4": {
  5774. "PhpAmqpLib\\": "PhpAmqpLib/"
  5775. }
  5776. },
  5777. "notification-url": "https://packagist.org/downloads/",
  5778. "license": [
  5779. "LGPL-2.1-or-later"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "Alvaro Videla",
  5784. "role": "Original Maintainer"
  5785. },
  5786. {
  5787. "name": "Raúl Araya",
  5788. "email": "nubeiro@gmail.com",
  5789. "role": "Maintainer"
  5790. },
  5791. {
  5792. "name": "Luke Bakken",
  5793. "email": "luke@bakken.io",
  5794. "role": "Maintainer"
  5795. },
  5796. {
  5797. "name": "Ramūnas Dronga",
  5798. "email": "github@ramuno.lt",
  5799. "role": "Maintainer"
  5800. }
  5801. ],
  5802. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5803. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5804. "keywords": [
  5805. "message",
  5806. "queue",
  5807. "rabbitmq"
  5808. ],
  5809. "support": {
  5810. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5811. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  5812. },
  5813. "time": "2024-02-07T17:21:26+00:00"
  5814. },
  5815. {
  5816. "name": "php-di/phpdoc-reader",
  5817. "version": "2.2.1",
  5818. "source": {
  5819. "type": "git",
  5820. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5821. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5822. },
  5823. "dist": {
  5824. "type": "zip",
  5825. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5826. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5827. "shasum": "",
  5828. "mirrors": [
  5829. {
  5830. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5831. "preferred": true
  5832. }
  5833. ]
  5834. },
  5835. "require": {
  5836. "php": ">=7.2.0"
  5837. },
  5838. "require-dev": {
  5839. "mnapoli/hard-mode": "~0.3.0",
  5840. "phpunit/phpunit": "^8.5|^9.0"
  5841. },
  5842. "type": "library",
  5843. "autoload": {
  5844. "psr-4": {
  5845. "PhpDocReader\\": "src/PhpDocReader"
  5846. }
  5847. },
  5848. "notification-url": "https://packagist.org/downloads/",
  5849. "license": [
  5850. "MIT"
  5851. ],
  5852. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5853. "keywords": [
  5854. "phpdoc",
  5855. "reflection"
  5856. ],
  5857. "support": {
  5858. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5859. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5860. },
  5861. "time": "2020-10-12T12:39:22+00:00"
  5862. },
  5863. {
  5864. "name": "phpoption/phpoption",
  5865. "version": "1.9.3",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/schmittjoh/php-option.git",
  5869. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5874. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5875. "shasum": "",
  5876. "mirrors": [
  5877. {
  5878. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5879. "preferred": true
  5880. }
  5881. ]
  5882. },
  5883. "require": {
  5884. "php": "^7.2.5 || ^8.0"
  5885. },
  5886. "require-dev": {
  5887. "bamarni/composer-bin-plugin": "^1.8.2",
  5888. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5889. },
  5890. "type": "library",
  5891. "extra": {
  5892. "bamarni-bin": {
  5893. "bin-links": true,
  5894. "forward-command": false
  5895. },
  5896. "branch-alias": {
  5897. "dev-master": "1.9-dev"
  5898. }
  5899. },
  5900. "autoload": {
  5901. "psr-4": {
  5902. "PhpOption\\": "src/PhpOption/"
  5903. }
  5904. },
  5905. "notification-url": "https://packagist.org/downloads/",
  5906. "license": [
  5907. "Apache-2.0"
  5908. ],
  5909. "authors": [
  5910. {
  5911. "name": "Johannes M. Schmitt",
  5912. "email": "schmittjoh@gmail.com",
  5913. "homepage": "https://github.com/schmittjoh"
  5914. },
  5915. {
  5916. "name": "Graham Campbell",
  5917. "email": "hello@gjcampbell.co.uk",
  5918. "homepage": "https://github.com/GrahamCampbell"
  5919. }
  5920. ],
  5921. "description": "Option Type for PHP",
  5922. "keywords": [
  5923. "language",
  5924. "option",
  5925. "php",
  5926. "type"
  5927. ],
  5928. "support": {
  5929. "issues": "https://github.com/schmittjoh/php-option/issues",
  5930. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5931. },
  5932. "funding": [
  5933. {
  5934. "url": "https://github.com/GrahamCampbell",
  5935. "type": "github"
  5936. },
  5937. {
  5938. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5939. "type": "tidelift"
  5940. }
  5941. ],
  5942. "time": "2024-07-20T21:41:07+00:00"
  5943. },
  5944. {
  5945. "name": "phpseclib/phpseclib",
  5946. "version": "3.0.43",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/phpseclib/phpseclib.git",
  5950. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5955. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5956. "shasum": "",
  5957. "mirrors": [
  5958. {
  5959. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5960. "preferred": true
  5961. }
  5962. ]
  5963. },
  5964. "require": {
  5965. "paragonie/constant_time_encoding": "^1|^2|^3",
  5966. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5967. "php": ">=5.6.1"
  5968. },
  5969. "require-dev": {
  5970. "phpunit/phpunit": "*"
  5971. },
  5972. "suggest": {
  5973. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5974. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5975. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5976. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5977. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5978. },
  5979. "type": "library",
  5980. "autoload": {
  5981. "files": [
  5982. "phpseclib/bootstrap.php"
  5983. ],
  5984. "psr-4": {
  5985. "phpseclib3\\": "phpseclib/"
  5986. }
  5987. },
  5988. "notification-url": "https://packagist.org/downloads/",
  5989. "license": [
  5990. "MIT"
  5991. ],
  5992. "authors": [
  5993. {
  5994. "name": "Jim Wigginton",
  5995. "email": "terrafrost@php.net",
  5996. "role": "Lead Developer"
  5997. },
  5998. {
  5999. "name": "Patrick Monnerat",
  6000. "email": "pm@datasphere.ch",
  6001. "role": "Developer"
  6002. },
  6003. {
  6004. "name": "Andreas Fischer",
  6005. "email": "bantu@phpbb.com",
  6006. "role": "Developer"
  6007. },
  6008. {
  6009. "name": "Hans-Jürgen Petrich",
  6010. "email": "petrich@tronic-media.com",
  6011. "role": "Developer"
  6012. },
  6013. {
  6014. "name": "Graham Campbell",
  6015. "email": "graham@alt-three.com",
  6016. "role": "Developer"
  6017. }
  6018. ],
  6019. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6020. "homepage": "http://phpseclib.sourceforge.net",
  6021. "keywords": [
  6022. "BigInteger",
  6023. "aes",
  6024. "asn.1",
  6025. "asn1",
  6026. "blowfish",
  6027. "crypto",
  6028. "cryptography",
  6029. "encryption",
  6030. "rsa",
  6031. "security",
  6032. "sftp",
  6033. "signature",
  6034. "signing",
  6035. "ssh",
  6036. "twofish",
  6037. "x.509",
  6038. "x509"
  6039. ],
  6040. "support": {
  6041. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6042. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6043. },
  6044. "funding": [
  6045. {
  6046. "url": "https://github.com/terrafrost",
  6047. "type": "github"
  6048. },
  6049. {
  6050. "url": "https://www.patreon.com/phpseclib",
  6051. "type": "patreon"
  6052. },
  6053. {
  6054. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6055. "type": "tidelift"
  6056. }
  6057. ],
  6058. "time": "2024-12-14T21:12:59+00:00"
  6059. },
  6060. {
  6061. "name": "psr/clock",
  6062. "version": "1.0.0",
  6063. "source": {
  6064. "type": "git",
  6065. "url": "https://github.com/php-fig/clock.git",
  6066. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6067. },
  6068. "dist": {
  6069. "type": "zip",
  6070. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6071. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6072. "shasum": "",
  6073. "mirrors": [
  6074. {
  6075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6076. "preferred": true
  6077. }
  6078. ]
  6079. },
  6080. "require": {
  6081. "php": "^7.0 || ^8.0"
  6082. },
  6083. "type": "library",
  6084. "autoload": {
  6085. "psr-4": {
  6086. "Psr\\Clock\\": "src/"
  6087. }
  6088. },
  6089. "notification-url": "https://packagist.org/downloads/",
  6090. "license": [
  6091. "MIT"
  6092. ],
  6093. "authors": [
  6094. {
  6095. "name": "PHP-FIG",
  6096. "homepage": "https://www.php-fig.org/"
  6097. }
  6098. ],
  6099. "description": "Common interface for reading the clock.",
  6100. "homepage": "https://github.com/php-fig/clock",
  6101. "keywords": [
  6102. "clock",
  6103. "now",
  6104. "psr",
  6105. "psr-20",
  6106. "time"
  6107. ],
  6108. "support": {
  6109. "issues": "https://github.com/php-fig/clock/issues",
  6110. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6111. },
  6112. "time": "2022-11-25T14:36:26+00:00"
  6113. },
  6114. {
  6115. "name": "psr/container",
  6116. "version": "2.0.2",
  6117. "source": {
  6118. "type": "git",
  6119. "url": "https://github.com/php-fig/container.git",
  6120. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6121. },
  6122. "dist": {
  6123. "type": "zip",
  6124. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6125. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6126. "shasum": "",
  6127. "mirrors": [
  6128. {
  6129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6130. "preferred": true
  6131. }
  6132. ]
  6133. },
  6134. "require": {
  6135. "php": ">=7.4.0"
  6136. },
  6137. "type": "library",
  6138. "extra": {
  6139. "branch-alias": {
  6140. "dev-master": "2.0.x-dev"
  6141. }
  6142. },
  6143. "autoload": {
  6144. "psr-4": {
  6145. "Psr\\Container\\": "src/"
  6146. }
  6147. },
  6148. "notification-url": "https://packagist.org/downloads/",
  6149. "license": [
  6150. "MIT"
  6151. ],
  6152. "authors": [
  6153. {
  6154. "name": "PHP-FIG",
  6155. "homepage": "https://www.php-fig.org/"
  6156. }
  6157. ],
  6158. "description": "Common Container Interface (PHP FIG PSR-11)",
  6159. "homepage": "https://github.com/php-fig/container",
  6160. "keywords": [
  6161. "PSR-11",
  6162. "container",
  6163. "container-interface",
  6164. "container-interop",
  6165. "psr"
  6166. ],
  6167. "support": {
  6168. "issues": "https://github.com/php-fig/container/issues",
  6169. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6170. },
  6171. "time": "2021-11-05T16:47:00+00:00"
  6172. },
  6173. {
  6174. "name": "psr/event-dispatcher",
  6175. "version": "1.0.0",
  6176. "source": {
  6177. "type": "git",
  6178. "url": "https://github.com/php-fig/event-dispatcher.git",
  6179. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6180. },
  6181. "dist": {
  6182. "type": "zip",
  6183. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6184. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6185. "shasum": "",
  6186. "mirrors": [
  6187. {
  6188. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6189. "preferred": true
  6190. }
  6191. ]
  6192. },
  6193. "require": {
  6194. "php": ">=7.2.0"
  6195. },
  6196. "type": "library",
  6197. "extra": {
  6198. "branch-alias": {
  6199. "dev-master": "1.0.x-dev"
  6200. }
  6201. },
  6202. "autoload": {
  6203. "psr-4": {
  6204. "Psr\\EventDispatcher\\": "src/"
  6205. }
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "MIT"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "PHP-FIG",
  6214. "homepage": "http://www.php-fig.org/"
  6215. }
  6216. ],
  6217. "description": "Standard interfaces for event handling.",
  6218. "keywords": [
  6219. "events",
  6220. "psr",
  6221. "psr-14"
  6222. ],
  6223. "support": {
  6224. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6225. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6226. },
  6227. "time": "2019-01-08T18:20:26+00:00"
  6228. },
  6229. {
  6230. "name": "psr/http-client",
  6231. "version": "1.0.3",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/php-fig/http-client.git",
  6235. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6240. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6241. "shasum": "",
  6242. "mirrors": [
  6243. {
  6244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6245. "preferred": true
  6246. }
  6247. ]
  6248. },
  6249. "require": {
  6250. "php": "^7.0 || ^8.0",
  6251. "psr/http-message": "^1.0 || ^2.0"
  6252. },
  6253. "type": "library",
  6254. "extra": {
  6255. "branch-alias": {
  6256. "dev-master": "1.0.x-dev"
  6257. }
  6258. },
  6259. "autoload": {
  6260. "psr-4": {
  6261. "Psr\\Http\\Client\\": "src/"
  6262. }
  6263. },
  6264. "notification-url": "https://packagist.org/downloads/",
  6265. "license": [
  6266. "MIT"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "PHP-FIG",
  6271. "homepage": "https://www.php-fig.org/"
  6272. }
  6273. ],
  6274. "description": "Common interface for HTTP clients",
  6275. "homepage": "https://github.com/php-fig/http-client",
  6276. "keywords": [
  6277. "http",
  6278. "http-client",
  6279. "psr",
  6280. "psr-18"
  6281. ],
  6282. "support": {
  6283. "source": "https://github.com/php-fig/http-client"
  6284. },
  6285. "time": "2023-09-23T14:17:50+00:00"
  6286. },
  6287. {
  6288. "name": "psr/http-factory",
  6289. "version": "1.0.2",
  6290. "source": {
  6291. "type": "git",
  6292. "url": "https://github.com/php-fig/http-factory.git",
  6293. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  6294. },
  6295. "dist": {
  6296. "type": "zip",
  6297. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  6298. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  6299. "shasum": "",
  6300. "mirrors": [
  6301. {
  6302. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6303. "preferred": true
  6304. }
  6305. ]
  6306. },
  6307. "require": {
  6308. "php": ">=7.0.0",
  6309. "psr/http-message": "^1.0 || ^2.0"
  6310. },
  6311. "type": "library",
  6312. "extra": {
  6313. "branch-alias": {
  6314. "dev-master": "1.0.x-dev"
  6315. }
  6316. },
  6317. "autoload": {
  6318. "psr-4": {
  6319. "Psr\\Http\\Message\\": "src/"
  6320. }
  6321. },
  6322. "notification-url": "https://packagist.org/downloads/",
  6323. "license": [
  6324. "MIT"
  6325. ],
  6326. "authors": [
  6327. {
  6328. "name": "PHP-FIG",
  6329. "homepage": "https://www.php-fig.org/"
  6330. }
  6331. ],
  6332. "description": "Common interfaces for PSR-7 HTTP message factories",
  6333. "keywords": [
  6334. "factory",
  6335. "http",
  6336. "message",
  6337. "psr",
  6338. "psr-17",
  6339. "psr-7",
  6340. "request",
  6341. "response"
  6342. ],
  6343. "support": {
  6344. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  6345. },
  6346. "time": "2023-04-10T20:10:41+00:00"
  6347. },
  6348. {
  6349. "name": "psr/http-message",
  6350. "version": "2.0",
  6351. "source": {
  6352. "type": "git",
  6353. "url": "https://github.com/php-fig/http-message.git",
  6354. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6355. },
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6359. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6360. "shasum": "",
  6361. "mirrors": [
  6362. {
  6363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6364. "preferred": true
  6365. }
  6366. ]
  6367. },
  6368. "require": {
  6369. "php": "^7.2 || ^8.0"
  6370. },
  6371. "type": "library",
  6372. "extra": {
  6373. "branch-alias": {
  6374. "dev-master": "2.0.x-dev"
  6375. }
  6376. },
  6377. "autoload": {
  6378. "psr-4": {
  6379. "Psr\\Http\\Message\\": "src/"
  6380. }
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "PHP-FIG",
  6389. "homepage": "https://www.php-fig.org/"
  6390. }
  6391. ],
  6392. "description": "Common interface for HTTP messages",
  6393. "homepage": "https://github.com/php-fig/http-message",
  6394. "keywords": [
  6395. "http",
  6396. "http-message",
  6397. "psr",
  6398. "psr-7",
  6399. "request",
  6400. "response"
  6401. ],
  6402. "support": {
  6403. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6404. },
  6405. "time": "2023-04-04T09:54:51+00:00"
  6406. },
  6407. {
  6408. "name": "psr/http-server-handler",
  6409. "version": "1.0.2",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/php-fig/http-server-handler.git",
  6413. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6418. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6419. "shasum": "",
  6420. "mirrors": [
  6421. {
  6422. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6423. "preferred": true
  6424. }
  6425. ]
  6426. },
  6427. "require": {
  6428. "php": ">=7.0",
  6429. "psr/http-message": "^1.0 || ^2.0"
  6430. },
  6431. "type": "library",
  6432. "extra": {
  6433. "branch-alias": {
  6434. "dev-master": "1.0.x-dev"
  6435. }
  6436. },
  6437. "autoload": {
  6438. "psr-4": {
  6439. "Psr\\Http\\Server\\": "src/"
  6440. }
  6441. },
  6442. "notification-url": "https://packagist.org/downloads/",
  6443. "license": [
  6444. "MIT"
  6445. ],
  6446. "authors": [
  6447. {
  6448. "name": "PHP-FIG",
  6449. "homepage": "https://www.php-fig.org/"
  6450. }
  6451. ],
  6452. "description": "Common interface for HTTP server-side request handler",
  6453. "keywords": [
  6454. "handler",
  6455. "http",
  6456. "http-interop",
  6457. "psr",
  6458. "psr-15",
  6459. "psr-7",
  6460. "request",
  6461. "response",
  6462. "server"
  6463. ],
  6464. "support": {
  6465. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6466. },
  6467. "time": "2023-04-10T20:06:20+00:00"
  6468. },
  6469. {
  6470. "name": "psr/http-server-middleware",
  6471. "version": "1.0.2",
  6472. "source": {
  6473. "type": "git",
  6474. "url": "https://github.com/php-fig/http-server-middleware.git",
  6475. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6476. },
  6477. "dist": {
  6478. "type": "zip",
  6479. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6480. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6481. "shasum": "",
  6482. "mirrors": [
  6483. {
  6484. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6485. "preferred": true
  6486. }
  6487. ]
  6488. },
  6489. "require": {
  6490. "php": ">=7.0",
  6491. "psr/http-message": "^1.0 || ^2.0",
  6492. "psr/http-server-handler": "^1.0"
  6493. },
  6494. "type": "library",
  6495. "extra": {
  6496. "branch-alias": {
  6497. "dev-master": "1.0.x-dev"
  6498. }
  6499. },
  6500. "autoload": {
  6501. "psr-4": {
  6502. "Psr\\Http\\Server\\": "src/"
  6503. }
  6504. },
  6505. "notification-url": "https://packagist.org/downloads/",
  6506. "license": [
  6507. "MIT"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "PHP-FIG",
  6512. "homepage": "https://www.php-fig.org/"
  6513. }
  6514. ],
  6515. "description": "Common interface for HTTP server-side middleware",
  6516. "keywords": [
  6517. "http",
  6518. "http-interop",
  6519. "middleware",
  6520. "psr",
  6521. "psr-15",
  6522. "psr-7",
  6523. "request",
  6524. "response"
  6525. ],
  6526. "support": {
  6527. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6528. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6529. },
  6530. "time": "2023-04-11T06:14:47+00:00"
  6531. },
  6532. {
  6533. "name": "psr/log",
  6534. "version": "3.0.1",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/php-fig/log.git",
  6538. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  6543. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  6544. "shasum": "",
  6545. "mirrors": [
  6546. {
  6547. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6548. "preferred": true
  6549. }
  6550. ]
  6551. },
  6552. "require": {
  6553. "php": ">=8.0.0"
  6554. },
  6555. "type": "library",
  6556. "extra": {
  6557. "branch-alias": {
  6558. "dev-master": "3.x-dev"
  6559. }
  6560. },
  6561. "autoload": {
  6562. "psr-4": {
  6563. "Psr\\Log\\": "src"
  6564. }
  6565. },
  6566. "notification-url": "https://packagist.org/downloads/",
  6567. "license": [
  6568. "MIT"
  6569. ],
  6570. "authors": [
  6571. {
  6572. "name": "PHP-FIG",
  6573. "homepage": "https://www.php-fig.org/"
  6574. }
  6575. ],
  6576. "description": "Common interface for logging libraries",
  6577. "homepage": "https://github.com/php-fig/log",
  6578. "keywords": [
  6579. "log",
  6580. "psr",
  6581. "psr-3"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/php-fig/log/tree/3.0.1"
  6585. },
  6586. "time": "2024-08-21T13:31:24+00:00"
  6587. },
  6588. {
  6589. "name": "psr/simple-cache",
  6590. "version": "3.0.0",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/php-fig/simple-cache.git",
  6594. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6599. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6600. "shasum": "",
  6601. "mirrors": [
  6602. {
  6603. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6604. "preferred": true
  6605. }
  6606. ]
  6607. },
  6608. "require": {
  6609. "php": ">=8.0.0"
  6610. },
  6611. "type": "library",
  6612. "extra": {
  6613. "branch-alias": {
  6614. "dev-master": "3.0.x-dev"
  6615. }
  6616. },
  6617. "autoload": {
  6618. "psr-4": {
  6619. "Psr\\SimpleCache\\": "src/"
  6620. }
  6621. },
  6622. "notification-url": "https://packagist.org/downloads/",
  6623. "license": [
  6624. "MIT"
  6625. ],
  6626. "authors": [
  6627. {
  6628. "name": "PHP-FIG",
  6629. "homepage": "https://www.php-fig.org/"
  6630. }
  6631. ],
  6632. "description": "Common interfaces for simple caching",
  6633. "keywords": [
  6634. "cache",
  6635. "caching",
  6636. "psr",
  6637. "psr-16",
  6638. "simple-cache"
  6639. ],
  6640. "support": {
  6641. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6642. },
  6643. "time": "2021-10-29T13:26:27+00:00"
  6644. },
  6645. {
  6646. "name": "ralouphie/getallheaders",
  6647. "version": "3.0.3",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/ralouphie/getallheaders.git",
  6651. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6656. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6657. "shasum": "",
  6658. "mirrors": [
  6659. {
  6660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6661. "preferred": true
  6662. }
  6663. ]
  6664. },
  6665. "require": {
  6666. "php": ">=5.6"
  6667. },
  6668. "require-dev": {
  6669. "php-coveralls/php-coveralls": "^2.1",
  6670. "phpunit/phpunit": "^5 || ^6.5"
  6671. },
  6672. "type": "library",
  6673. "autoload": {
  6674. "files": [
  6675. "src/getallheaders.php"
  6676. ]
  6677. },
  6678. "notification-url": "https://packagist.org/downloads/",
  6679. "license": [
  6680. "MIT"
  6681. ],
  6682. "authors": [
  6683. {
  6684. "name": "Ralph Khattar",
  6685. "email": "ralph.khattar@gmail.com"
  6686. }
  6687. ],
  6688. "description": "A polyfill for getallheaders.",
  6689. "support": {
  6690. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6691. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6692. },
  6693. "time": "2019-03-08T08:55:37+00:00"
  6694. },
  6695. {
  6696. "name": "react/promise",
  6697. "version": "v2.11.0",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/reactphp/promise.git",
  6701. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/reactphp/promise/zipball/1a8460931ea36dc5c76838fec5734d55c88c6831",
  6706. "reference": "1a8460931ea36dc5c76838fec5734d55c88c6831",
  6707. "shasum": "",
  6708. "mirrors": [
  6709. {
  6710. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6711. "preferred": true
  6712. }
  6713. ]
  6714. },
  6715. "require": {
  6716. "php": ">=5.4.0"
  6717. },
  6718. "require-dev": {
  6719. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  6720. },
  6721. "type": "library",
  6722. "autoload": {
  6723. "files": [
  6724. "src/functions_include.php"
  6725. ],
  6726. "psr-4": {
  6727. "React\\Promise\\": "src/"
  6728. }
  6729. },
  6730. "notification-url": "https://packagist.org/downloads/",
  6731. "license": [
  6732. "MIT"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Jan Sorgalla",
  6737. "email": "jsorgalla@gmail.com",
  6738. "homepage": "https://sorgalla.com/"
  6739. },
  6740. {
  6741. "name": "Christian Lück",
  6742. "email": "christian@clue.engineering",
  6743. "homepage": "https://clue.engineering/"
  6744. },
  6745. {
  6746. "name": "Cees-Jan Kiewiet",
  6747. "email": "reactphp@ceesjankiewiet.nl",
  6748. "homepage": "https://wyrihaximus.net/"
  6749. },
  6750. {
  6751. "name": "Chris Boden",
  6752. "email": "cboden@gmail.com",
  6753. "homepage": "https://cboden.dev/"
  6754. }
  6755. ],
  6756. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  6757. "keywords": [
  6758. "promise",
  6759. "promises"
  6760. ],
  6761. "support": {
  6762. "issues": "https://github.com/reactphp/promise/issues",
  6763. "source": "https://github.com/reactphp/promise/tree/v2.11.0"
  6764. },
  6765. "funding": [
  6766. {
  6767. "url": "https://opencollective.com/reactphp",
  6768. "type": "open_collective"
  6769. }
  6770. ],
  6771. "time": "2023-11-16T16:16:50+00:00"
  6772. },
  6773. {
  6774. "name": "smarty/smarty",
  6775. "version": "v4.3.5",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/smarty-php/smarty.git",
  6779. "reference": "e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c",
  6784. "reference": "e0cbbdf6ea21768d0194e59d2f8c2e20d5f0868c",
  6785. "shasum": "",
  6786. "mirrors": [
  6787. {
  6788. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6789. "preferred": true
  6790. }
  6791. ]
  6792. },
  6793. "require": {
  6794. "php": "^7.1 || ^8.0"
  6795. },
  6796. "require-dev": {
  6797. "phpunit/phpunit": "^8.5 || ^7.5",
  6798. "smarty/smarty-lexer": "^3.1"
  6799. },
  6800. "type": "library",
  6801. "extra": {
  6802. "branch-alias": {
  6803. "dev-master": "4.0.x-dev"
  6804. }
  6805. },
  6806. "autoload": {
  6807. "classmap": [
  6808. "libs/"
  6809. ]
  6810. },
  6811. "notification-url": "https://packagist.org/downloads/",
  6812. "license": [
  6813. "LGPL-3.0"
  6814. ],
  6815. "authors": [
  6816. {
  6817. "name": "Monte Ohrt",
  6818. "email": "monte@ohrt.com"
  6819. },
  6820. {
  6821. "name": "Uwe Tews",
  6822. "email": "uwe.tews@googlemail.com"
  6823. },
  6824. {
  6825. "name": "Rodney Rehm",
  6826. "email": "rodney.rehm@medialize.de"
  6827. },
  6828. {
  6829. "name": "Simon Wisselink",
  6830. "homepage": "https://www.iwink.nl/"
  6831. }
  6832. ],
  6833. "description": "Smarty - the compiling PHP template engine",
  6834. "homepage": "https://smarty-php.github.io/smarty/",
  6835. "keywords": [
  6836. "templating"
  6837. ],
  6838. "support": {
  6839. "forum": "https://github.com/smarty-php/smarty/discussions",
  6840. "issues": "https://github.com/smarty-php/smarty/issues",
  6841. "source": "https://github.com/smarty-php/smarty/tree/v4.3.5"
  6842. },
  6843. "time": "2024-01-23T10:47:54+00:00"
  6844. },
  6845. {
  6846. "name": "swow/psr7-plus",
  6847. "version": "v1.1.2",
  6848. "source": {
  6849. "type": "git",
  6850. "url": "https://github.com/swow/psr7-plus.git",
  6851. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6852. },
  6853. "dist": {
  6854. "type": "zip",
  6855. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6856. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6857. "shasum": "",
  6858. "mirrors": [
  6859. {
  6860. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6861. "preferred": true
  6862. }
  6863. ]
  6864. },
  6865. "require": {
  6866. "php": ">=8.0",
  6867. "psr/http-client": "^1.0",
  6868. "psr/http-factory": "^1.0",
  6869. "psr/http-message": "^1.1|^2.0"
  6870. },
  6871. "type": "library",
  6872. "autoload": {
  6873. "psr-4": {
  6874. "Swow\\Psr7\\Message\\": "src/Message/"
  6875. }
  6876. },
  6877. "notification-url": "https://packagist.org/downloads/",
  6878. "license": [
  6879. "Apache-2.0"
  6880. ],
  6881. "authors": [
  6882. {
  6883. "name": "twose",
  6884. "email": "twosee@php.net"
  6885. }
  6886. ],
  6887. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6888. "keywords": [
  6889. "http",
  6890. "psr17",
  6891. "psr7",
  6892. "swow",
  6893. "websocket"
  6894. ],
  6895. "support": {
  6896. "issues": "https://github.com/swow/swow",
  6897. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6898. },
  6899. "time": "2023-06-15T09:18:11+00:00"
  6900. },
  6901. {
  6902. "name": "symfony/console",
  6903. "version": "v6.4.15",
  6904. "source": {
  6905. "type": "git",
  6906. "url": "https://github.com/symfony/console.git",
  6907. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6908. },
  6909. "dist": {
  6910. "type": "zip",
  6911. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6912. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6913. "shasum": "",
  6914. "mirrors": [
  6915. {
  6916. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6917. "preferred": true
  6918. }
  6919. ]
  6920. },
  6921. "require": {
  6922. "php": ">=8.1",
  6923. "symfony/deprecation-contracts": "^2.5|^3",
  6924. "symfony/polyfill-mbstring": "~1.0",
  6925. "symfony/service-contracts": "^2.5|^3",
  6926. "symfony/string": "^5.4|^6.0|^7.0"
  6927. },
  6928. "conflict": {
  6929. "symfony/dependency-injection": "<5.4",
  6930. "symfony/dotenv": "<5.4",
  6931. "symfony/event-dispatcher": "<5.4",
  6932. "symfony/lock": "<5.4",
  6933. "symfony/process": "<5.4"
  6934. },
  6935. "provide": {
  6936. "psr/log-implementation": "1.0|2.0|3.0"
  6937. },
  6938. "require-dev": {
  6939. "psr/log": "^1|^2|^3",
  6940. "symfony/config": "^5.4|^6.0|^7.0",
  6941. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6942. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6943. "symfony/http-foundation": "^6.4|^7.0",
  6944. "symfony/http-kernel": "^6.4|^7.0",
  6945. "symfony/lock": "^5.4|^6.0|^7.0",
  6946. "symfony/messenger": "^5.4|^6.0|^7.0",
  6947. "symfony/process": "^5.4|^6.0|^7.0",
  6948. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6949. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6950. },
  6951. "type": "library",
  6952. "autoload": {
  6953. "psr-4": {
  6954. "Symfony\\Component\\Console\\": ""
  6955. },
  6956. "exclude-from-classmap": [
  6957. "/Tests/"
  6958. ]
  6959. },
  6960. "notification-url": "https://packagist.org/downloads/",
  6961. "license": [
  6962. "MIT"
  6963. ],
  6964. "authors": [
  6965. {
  6966. "name": "Fabien Potencier",
  6967. "email": "fabien@symfony.com"
  6968. },
  6969. {
  6970. "name": "Symfony Community",
  6971. "homepage": "https://symfony.com/contributors"
  6972. }
  6973. ],
  6974. "description": "Eases the creation of beautiful and testable command line interfaces",
  6975. "homepage": "https://symfony.com",
  6976. "keywords": [
  6977. "cli",
  6978. "command-line",
  6979. "console",
  6980. "terminal"
  6981. ],
  6982. "support": {
  6983. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6984. },
  6985. "funding": [
  6986. {
  6987. "url": "https://symfony.com/sponsor",
  6988. "type": "custom"
  6989. },
  6990. {
  6991. "url": "https://github.com/fabpot",
  6992. "type": "github"
  6993. },
  6994. {
  6995. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6996. "type": "tidelift"
  6997. }
  6998. ],
  6999. "time": "2024-11-06T14:19:14+00:00"
  7000. },
  7001. {
  7002. "name": "symfony/deprecation-contracts",
  7003. "version": "v3.5.1",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/symfony/deprecation-contracts.git",
  7007. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7012. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7013. "shasum": "",
  7014. "mirrors": [
  7015. {
  7016. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7017. "preferred": true
  7018. }
  7019. ]
  7020. },
  7021. "require": {
  7022. "php": ">=8.1"
  7023. },
  7024. "type": "library",
  7025. "extra": {
  7026. "branch-alias": {
  7027. "dev-main": "3.5-dev"
  7028. },
  7029. "thanks": {
  7030. "name": "symfony/contracts",
  7031. "url": "https://github.com/symfony/contracts"
  7032. }
  7033. },
  7034. "autoload": {
  7035. "files": [
  7036. "function.php"
  7037. ]
  7038. },
  7039. "notification-url": "https://packagist.org/downloads/",
  7040. "license": [
  7041. "MIT"
  7042. ],
  7043. "authors": [
  7044. {
  7045. "name": "Nicolas Grekas",
  7046. "email": "p@tchwork.com"
  7047. },
  7048. {
  7049. "name": "Symfony Community",
  7050. "homepage": "https://symfony.com/contributors"
  7051. }
  7052. ],
  7053. "description": "A generic function and convention to trigger deprecation notices",
  7054. "homepage": "https://symfony.com",
  7055. "support": {
  7056. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7057. },
  7058. "funding": [
  7059. {
  7060. "url": "https://symfony.com/sponsor",
  7061. "type": "custom"
  7062. },
  7063. {
  7064. "url": "https://github.com/fabpot",
  7065. "type": "github"
  7066. },
  7067. {
  7068. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7069. "type": "tidelift"
  7070. }
  7071. ],
  7072. "time": "2024-09-25T14:20:29+00:00"
  7073. },
  7074. {
  7075. "name": "symfony/finder",
  7076. "version": "v6.4.17",
  7077. "source": {
  7078. "type": "git",
  7079. "url": "https://github.com/symfony/finder.git",
  7080. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7081. },
  7082. "dist": {
  7083. "type": "zip",
  7084. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7085. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7086. "shasum": "",
  7087. "mirrors": [
  7088. {
  7089. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7090. "preferred": true
  7091. }
  7092. ]
  7093. },
  7094. "require": {
  7095. "php": ">=8.1"
  7096. },
  7097. "require-dev": {
  7098. "symfony/filesystem": "^6.0|^7.0"
  7099. },
  7100. "type": "library",
  7101. "autoload": {
  7102. "psr-4": {
  7103. "Symfony\\Component\\Finder\\": ""
  7104. },
  7105. "exclude-from-classmap": [
  7106. "/Tests/"
  7107. ]
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Fabien Potencier",
  7116. "email": "fabien@symfony.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Finds files and directories via an intuitive fluent interface",
  7124. "homepage": "https://symfony.com",
  7125. "support": {
  7126. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7127. },
  7128. "funding": [
  7129. {
  7130. "url": "https://symfony.com/sponsor",
  7131. "type": "custom"
  7132. },
  7133. {
  7134. "url": "https://github.com/fabpot",
  7135. "type": "github"
  7136. },
  7137. {
  7138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7139. "type": "tidelift"
  7140. }
  7141. ],
  7142. "time": "2024-12-29T13:51:37+00:00"
  7143. },
  7144. {
  7145. "name": "symfony/polyfill-ctype",
  7146. "version": "v1.31.0",
  7147. "source": {
  7148. "type": "git",
  7149. "url": "https://github.com/symfony/polyfill-ctype.git",
  7150. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7151. },
  7152. "dist": {
  7153. "type": "zip",
  7154. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7155. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7156. "shasum": "",
  7157. "mirrors": [
  7158. {
  7159. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7160. "preferred": true
  7161. }
  7162. ]
  7163. },
  7164. "require": {
  7165. "php": ">=7.2"
  7166. },
  7167. "provide": {
  7168. "ext-ctype": "*"
  7169. },
  7170. "suggest": {
  7171. "ext-ctype": "For best performance"
  7172. },
  7173. "type": "library",
  7174. "extra": {
  7175. "thanks": {
  7176. "url": "https://github.com/symfony/polyfill",
  7177. "name": "symfony/polyfill"
  7178. }
  7179. },
  7180. "autoload": {
  7181. "files": [
  7182. "bootstrap.php"
  7183. ],
  7184. "psr-4": {
  7185. "Symfony\\Polyfill\\Ctype\\": ""
  7186. }
  7187. },
  7188. "notification-url": "https://packagist.org/downloads/",
  7189. "license": [
  7190. "MIT"
  7191. ],
  7192. "authors": [
  7193. {
  7194. "name": "Gert de Pagter",
  7195. "email": "BackEndTea@gmail.com"
  7196. },
  7197. {
  7198. "name": "Symfony Community",
  7199. "homepage": "https://symfony.com/contributors"
  7200. }
  7201. ],
  7202. "description": "Symfony polyfill for ctype functions",
  7203. "homepage": "https://symfony.com",
  7204. "keywords": [
  7205. "compatibility",
  7206. "ctype",
  7207. "polyfill",
  7208. "portable"
  7209. ],
  7210. "support": {
  7211. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://symfony.com/sponsor",
  7216. "type": "custom"
  7217. },
  7218. {
  7219. "url": "https://github.com/fabpot",
  7220. "type": "github"
  7221. },
  7222. {
  7223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7224. "type": "tidelift"
  7225. }
  7226. ],
  7227. "time": "2024-09-09T11:45:10+00:00"
  7228. },
  7229. {
  7230. "name": "symfony/polyfill-intl-grapheme",
  7231. "version": "v1.31.0",
  7232. "source": {
  7233. "type": "git",
  7234. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7235. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7236. },
  7237. "dist": {
  7238. "type": "zip",
  7239. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7240. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7241. "shasum": "",
  7242. "mirrors": [
  7243. {
  7244. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7245. "preferred": true
  7246. }
  7247. ]
  7248. },
  7249. "require": {
  7250. "php": ">=7.2"
  7251. },
  7252. "suggest": {
  7253. "ext-intl": "For best performance"
  7254. },
  7255. "type": "library",
  7256. "extra": {
  7257. "thanks": {
  7258. "name": "symfony/polyfill",
  7259. "url": "https://github.com/symfony/polyfill"
  7260. }
  7261. },
  7262. "autoload": {
  7263. "files": [
  7264. "bootstrap.php"
  7265. ],
  7266. "psr-4": {
  7267. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7268. }
  7269. },
  7270. "notification-url": "https://packagist.org/downloads/",
  7271. "license": [
  7272. "MIT"
  7273. ],
  7274. "authors": [
  7275. {
  7276. "name": "Nicolas Grekas",
  7277. "email": "p@tchwork.com"
  7278. },
  7279. {
  7280. "name": "Symfony Community",
  7281. "homepage": "https://symfony.com/contributors"
  7282. }
  7283. ],
  7284. "description": "Symfony polyfill for intl's grapheme_* functions",
  7285. "homepage": "https://symfony.com",
  7286. "keywords": [
  7287. "compatibility",
  7288. "grapheme",
  7289. "intl",
  7290. "polyfill",
  7291. "portable",
  7292. "shim"
  7293. ],
  7294. "support": {
  7295. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7296. },
  7297. "funding": [
  7298. {
  7299. "url": "https://symfony.com/sponsor",
  7300. "type": "custom"
  7301. },
  7302. {
  7303. "url": "https://github.com/fabpot",
  7304. "type": "github"
  7305. },
  7306. {
  7307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7308. "type": "tidelift"
  7309. }
  7310. ],
  7311. "time": "2024-09-09T11:45:10+00:00"
  7312. },
  7313. {
  7314. "name": "symfony/polyfill-intl-normalizer",
  7315. "version": "v1.31.0",
  7316. "source": {
  7317. "type": "git",
  7318. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7319. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7320. },
  7321. "dist": {
  7322. "type": "zip",
  7323. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7324. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7325. "shasum": "",
  7326. "mirrors": [
  7327. {
  7328. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7329. "preferred": true
  7330. }
  7331. ]
  7332. },
  7333. "require": {
  7334. "php": ">=7.2"
  7335. },
  7336. "suggest": {
  7337. "ext-intl": "For best performance"
  7338. },
  7339. "type": "library",
  7340. "extra": {
  7341. "thanks": {
  7342. "name": "symfony/polyfill",
  7343. "url": "https://github.com/symfony/polyfill"
  7344. }
  7345. },
  7346. "autoload": {
  7347. "files": [
  7348. "bootstrap.php"
  7349. ],
  7350. "psr-4": {
  7351. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7352. },
  7353. "classmap": [
  7354. "Resources/stubs"
  7355. ]
  7356. },
  7357. "notification-url": "https://packagist.org/downloads/",
  7358. "license": [
  7359. "MIT"
  7360. ],
  7361. "authors": [
  7362. {
  7363. "name": "Nicolas Grekas",
  7364. "email": "p@tchwork.com"
  7365. },
  7366. {
  7367. "name": "Symfony Community",
  7368. "homepage": "https://symfony.com/contributors"
  7369. }
  7370. ],
  7371. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7372. "homepage": "https://symfony.com",
  7373. "keywords": [
  7374. "compatibility",
  7375. "intl",
  7376. "normalizer",
  7377. "polyfill",
  7378. "portable",
  7379. "shim"
  7380. ],
  7381. "support": {
  7382. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://symfony.com/sponsor",
  7387. "type": "custom"
  7388. },
  7389. {
  7390. "url": "https://github.com/fabpot",
  7391. "type": "github"
  7392. },
  7393. {
  7394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7395. "type": "tidelift"
  7396. }
  7397. ],
  7398. "time": "2024-09-09T11:45:10+00:00"
  7399. },
  7400. {
  7401. "name": "symfony/polyfill-mbstring",
  7402. "version": "v1.31.0",
  7403. "source": {
  7404. "type": "git",
  7405. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7406. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7407. },
  7408. "dist": {
  7409. "type": "zip",
  7410. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7411. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7412. "shasum": "",
  7413. "mirrors": [
  7414. {
  7415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7416. "preferred": true
  7417. }
  7418. ]
  7419. },
  7420. "require": {
  7421. "php": ">=7.2"
  7422. },
  7423. "provide": {
  7424. "ext-mbstring": "*"
  7425. },
  7426. "suggest": {
  7427. "ext-mbstring": "For best performance"
  7428. },
  7429. "type": "library",
  7430. "extra": {
  7431. "thanks": {
  7432. "name": "symfony/polyfill",
  7433. "url": "https://github.com/symfony/polyfill"
  7434. }
  7435. },
  7436. "autoload": {
  7437. "files": [
  7438. "bootstrap.php"
  7439. ],
  7440. "psr-4": {
  7441. "Symfony\\Polyfill\\Mbstring\\": ""
  7442. }
  7443. },
  7444. "notification-url": "https://packagist.org/downloads/",
  7445. "license": [
  7446. "MIT"
  7447. ],
  7448. "authors": [
  7449. {
  7450. "name": "Nicolas Grekas",
  7451. "email": "p@tchwork.com"
  7452. },
  7453. {
  7454. "name": "Symfony Community",
  7455. "homepage": "https://symfony.com/contributors"
  7456. }
  7457. ],
  7458. "description": "Symfony polyfill for the Mbstring extension",
  7459. "homepage": "https://symfony.com",
  7460. "keywords": [
  7461. "compatibility",
  7462. "mbstring",
  7463. "polyfill",
  7464. "portable",
  7465. "shim"
  7466. ],
  7467. "support": {
  7468. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7469. },
  7470. "funding": [
  7471. {
  7472. "url": "https://symfony.com/sponsor",
  7473. "type": "custom"
  7474. },
  7475. {
  7476. "url": "https://github.com/fabpot",
  7477. "type": "github"
  7478. },
  7479. {
  7480. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7481. "type": "tidelift"
  7482. }
  7483. ],
  7484. "time": "2024-09-09T11:45:10+00:00"
  7485. },
  7486. {
  7487. "name": "symfony/polyfill-php80",
  7488. "version": "v1.31.0",
  7489. "source": {
  7490. "type": "git",
  7491. "url": "https://github.com/symfony/polyfill-php80.git",
  7492. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7493. },
  7494. "dist": {
  7495. "type": "zip",
  7496. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7497. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7498. "shasum": "",
  7499. "mirrors": [
  7500. {
  7501. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7502. "preferred": true
  7503. }
  7504. ]
  7505. },
  7506. "require": {
  7507. "php": ">=7.2"
  7508. },
  7509. "type": "library",
  7510. "extra": {
  7511. "thanks": {
  7512. "url": "https://github.com/symfony/polyfill",
  7513. "name": "symfony/polyfill"
  7514. }
  7515. },
  7516. "autoload": {
  7517. "files": [
  7518. "bootstrap.php"
  7519. ],
  7520. "psr-4": {
  7521. "Symfony\\Polyfill\\Php80\\": ""
  7522. },
  7523. "classmap": [
  7524. "Resources/stubs"
  7525. ]
  7526. },
  7527. "notification-url": "https://packagist.org/downloads/",
  7528. "license": [
  7529. "MIT"
  7530. ],
  7531. "authors": [
  7532. {
  7533. "name": "Ion Bazan",
  7534. "email": "ion.bazan@gmail.com"
  7535. },
  7536. {
  7537. "name": "Nicolas Grekas",
  7538. "email": "p@tchwork.com"
  7539. },
  7540. {
  7541. "name": "Symfony Community",
  7542. "homepage": "https://symfony.com/contributors"
  7543. }
  7544. ],
  7545. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7546. "homepage": "https://symfony.com",
  7547. "keywords": [
  7548. "compatibility",
  7549. "polyfill",
  7550. "portable",
  7551. "shim"
  7552. ],
  7553. "support": {
  7554. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7555. },
  7556. "funding": [
  7557. {
  7558. "url": "https://symfony.com/sponsor",
  7559. "type": "custom"
  7560. },
  7561. {
  7562. "url": "https://github.com/fabpot",
  7563. "type": "github"
  7564. },
  7565. {
  7566. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7567. "type": "tidelift"
  7568. }
  7569. ],
  7570. "time": "2024-09-09T11:45:10+00:00"
  7571. },
  7572. {
  7573. "name": "symfony/property-access",
  7574. "version": "v6.4.13",
  7575. "source": {
  7576. "type": "git",
  7577. "url": "https://github.com/symfony/property-access.git",
  7578. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe"
  7579. },
  7580. "dist": {
  7581. "type": "zip",
  7582. "url": "https://api.github.com/repos/symfony/property-access/zipball/8cc779d88d12e440adaa26387bcfc25744064afe",
  7583. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe",
  7584. "shasum": "",
  7585. "mirrors": [
  7586. {
  7587. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7588. "preferred": true
  7589. }
  7590. ]
  7591. },
  7592. "require": {
  7593. "php": ">=8.1",
  7594. "symfony/deprecation-contracts": "^2.5|^3",
  7595. "symfony/property-info": "^5.4|^6.0|^7.0"
  7596. },
  7597. "require-dev": {
  7598. "symfony/cache": "^5.4|^6.0|^7.0"
  7599. },
  7600. "type": "library",
  7601. "autoload": {
  7602. "psr-4": {
  7603. "Symfony\\Component\\PropertyAccess\\": ""
  7604. },
  7605. "exclude-from-classmap": [
  7606. "/Tests/"
  7607. ]
  7608. },
  7609. "notification-url": "https://packagist.org/downloads/",
  7610. "license": [
  7611. "MIT"
  7612. ],
  7613. "authors": [
  7614. {
  7615. "name": "Fabien Potencier",
  7616. "email": "fabien@symfony.com"
  7617. },
  7618. {
  7619. "name": "Symfony Community",
  7620. "homepage": "https://symfony.com/contributors"
  7621. }
  7622. ],
  7623. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  7624. "homepage": "https://symfony.com",
  7625. "keywords": [
  7626. "access",
  7627. "array",
  7628. "extraction",
  7629. "index",
  7630. "injection",
  7631. "object",
  7632. "property",
  7633. "property-path",
  7634. "reflection"
  7635. ],
  7636. "support": {
  7637. "source": "https://github.com/symfony/property-access/tree/v6.4.13"
  7638. },
  7639. "funding": [
  7640. {
  7641. "url": "https://symfony.com/sponsor",
  7642. "type": "custom"
  7643. },
  7644. {
  7645. "url": "https://github.com/fabpot",
  7646. "type": "github"
  7647. },
  7648. {
  7649. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7650. "type": "tidelift"
  7651. }
  7652. ],
  7653. "time": "2024-09-25T14:18:03+00:00"
  7654. },
  7655. {
  7656. "name": "symfony/property-info",
  7657. "version": "v6.4.18",
  7658. "source": {
  7659. "type": "git",
  7660. "url": "https://github.com/symfony/property-info.git",
  7661. "reference": "94d18e5cc11a37fd92856d38b61d9cdf72536a1e"
  7662. },
  7663. "dist": {
  7664. "type": "zip",
  7665. "url": "https://api.github.com/repos/symfony/property-info/zipball/94d18e5cc11a37fd92856d38b61d9cdf72536a1e",
  7666. "reference": "94d18e5cc11a37fd92856d38b61d9cdf72536a1e",
  7667. "shasum": "",
  7668. "mirrors": [
  7669. {
  7670. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7671. "preferred": true
  7672. }
  7673. ]
  7674. },
  7675. "require": {
  7676. "php": ">=8.1",
  7677. "symfony/string": "^5.4|^6.0|^7.0"
  7678. },
  7679. "conflict": {
  7680. "doctrine/annotations": "<1.12",
  7681. "phpdocumentor/reflection-docblock": "<5.2",
  7682. "phpdocumentor/type-resolver": "<1.5.1",
  7683. "symfony/cache": "<5.4",
  7684. "symfony/dependency-injection": "<5.4|>=6.0,<6.4",
  7685. "symfony/serializer": "<5.4"
  7686. },
  7687. "require-dev": {
  7688. "doctrine/annotations": "^1.12|^2",
  7689. "phpdocumentor/reflection-docblock": "^5.2",
  7690. "phpstan/phpdoc-parser": "^1.0|^2.0",
  7691. "symfony/cache": "^5.4|^6.0|^7.0",
  7692. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7693. "symfony/serializer": "^5.4|^6.4|^7.0"
  7694. },
  7695. "type": "library",
  7696. "autoload": {
  7697. "psr-4": {
  7698. "Symfony\\Component\\PropertyInfo\\": ""
  7699. },
  7700. "exclude-from-classmap": [
  7701. "/Tests/"
  7702. ]
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "Kévin Dunglas",
  7711. "email": "dunglas@gmail.com"
  7712. },
  7713. {
  7714. "name": "Symfony Community",
  7715. "homepage": "https://symfony.com/contributors"
  7716. }
  7717. ],
  7718. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7719. "homepage": "https://symfony.com",
  7720. "keywords": [
  7721. "doctrine",
  7722. "phpdoc",
  7723. "property",
  7724. "symfony",
  7725. "type",
  7726. "validator"
  7727. ],
  7728. "support": {
  7729. "source": "https://github.com/symfony/property-info/tree/v6.4.18"
  7730. },
  7731. "funding": [
  7732. {
  7733. "url": "https://symfony.com/sponsor",
  7734. "type": "custom"
  7735. },
  7736. {
  7737. "url": "https://github.com/fabpot",
  7738. "type": "github"
  7739. },
  7740. {
  7741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7742. "type": "tidelift"
  7743. }
  7744. ],
  7745. "time": "2025-01-21T10:52:27+00:00"
  7746. },
  7747. {
  7748. "name": "symfony/serializer",
  7749. "version": "v6.4.19",
  7750. "source": {
  7751. "type": "git",
  7752. "url": "https://github.com/symfony/serializer.git",
  7753. "reference": "a221b2f6066af304d760cff7a26f201b4fab4aef"
  7754. },
  7755. "dist": {
  7756. "type": "zip",
  7757. "url": "https://api.github.com/repos/symfony/serializer/zipball/a221b2f6066af304d760cff7a26f201b4fab4aef",
  7758. "reference": "a221b2f6066af304d760cff7a26f201b4fab4aef",
  7759. "shasum": "",
  7760. "mirrors": [
  7761. {
  7762. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7763. "preferred": true
  7764. }
  7765. ]
  7766. },
  7767. "require": {
  7768. "php": ">=8.1",
  7769. "symfony/deprecation-contracts": "^2.5|^3",
  7770. "symfony/polyfill-ctype": "~1.8"
  7771. },
  7772. "conflict": {
  7773. "doctrine/annotations": "<1.12",
  7774. "phpdocumentor/reflection-docblock": "<3.2.2",
  7775. "phpdocumentor/type-resolver": "<1.4.0",
  7776. "symfony/dependency-injection": "<5.4",
  7777. "symfony/property-access": "<5.4",
  7778. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  7779. "symfony/uid": "<5.4",
  7780. "symfony/validator": "<6.4",
  7781. "symfony/yaml": "<5.4"
  7782. },
  7783. "require-dev": {
  7784. "doctrine/annotations": "^1.12|^2",
  7785. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  7786. "seld/jsonlint": "^1.10",
  7787. "symfony/cache": "^5.4|^6.0|^7.0",
  7788. "symfony/config": "^5.4|^6.0|^7.0",
  7789. "symfony/console": "^5.4|^6.0|^7.0",
  7790. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7791. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7792. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7793. "symfony/form": "^5.4|^6.0|^7.0",
  7794. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7795. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7796. "symfony/messenger": "^5.4|^6.0|^7.0",
  7797. "symfony/mime": "^5.4|^6.0|^7.0",
  7798. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  7799. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  7800. "symfony/translation-contracts": "^2.5|^3",
  7801. "symfony/uid": "^5.4|^6.0|^7.0",
  7802. "symfony/validator": "^6.4|^7.0",
  7803. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7804. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  7805. "symfony/yaml": "^5.4|^6.0|^7.0"
  7806. },
  7807. "type": "library",
  7808. "autoload": {
  7809. "psr-4": {
  7810. "Symfony\\Component\\Serializer\\": ""
  7811. },
  7812. "exclude-from-classmap": [
  7813. "/Tests/"
  7814. ]
  7815. },
  7816. "notification-url": "https://packagist.org/downloads/",
  7817. "license": [
  7818. "MIT"
  7819. ],
  7820. "authors": [
  7821. {
  7822. "name": "Fabien Potencier",
  7823. "email": "fabien@symfony.com"
  7824. },
  7825. {
  7826. "name": "Symfony Community",
  7827. "homepage": "https://symfony.com/contributors"
  7828. }
  7829. ],
  7830. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  7831. "homepage": "https://symfony.com",
  7832. "support": {
  7833. "source": "https://github.com/symfony/serializer/tree/v6.4.19"
  7834. },
  7835. "funding": [
  7836. {
  7837. "url": "https://symfony.com/sponsor",
  7838. "type": "custom"
  7839. },
  7840. {
  7841. "url": "https://github.com/fabpot",
  7842. "type": "github"
  7843. },
  7844. {
  7845. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7846. "type": "tidelift"
  7847. }
  7848. ],
  7849. "time": "2025-02-24T08:42:36+00:00"
  7850. },
  7851. {
  7852. "name": "symfony/service-contracts",
  7853. "version": "v3.5.1",
  7854. "source": {
  7855. "type": "git",
  7856. "url": "https://github.com/symfony/service-contracts.git",
  7857. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7858. },
  7859. "dist": {
  7860. "type": "zip",
  7861. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7862. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7863. "shasum": "",
  7864. "mirrors": [
  7865. {
  7866. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7867. "preferred": true
  7868. }
  7869. ]
  7870. },
  7871. "require": {
  7872. "php": ">=8.1",
  7873. "psr/container": "^1.1|^2.0",
  7874. "symfony/deprecation-contracts": "^2.5|^3"
  7875. },
  7876. "conflict": {
  7877. "ext-psr": "<1.1|>=2"
  7878. },
  7879. "type": "library",
  7880. "extra": {
  7881. "branch-alias": {
  7882. "dev-main": "3.5-dev"
  7883. },
  7884. "thanks": {
  7885. "name": "symfony/contracts",
  7886. "url": "https://github.com/symfony/contracts"
  7887. }
  7888. },
  7889. "autoload": {
  7890. "psr-4": {
  7891. "Symfony\\Contracts\\Service\\": ""
  7892. },
  7893. "exclude-from-classmap": [
  7894. "/Test/"
  7895. ]
  7896. },
  7897. "notification-url": "https://packagist.org/downloads/",
  7898. "license": [
  7899. "MIT"
  7900. ],
  7901. "authors": [
  7902. {
  7903. "name": "Nicolas Grekas",
  7904. "email": "p@tchwork.com"
  7905. },
  7906. {
  7907. "name": "Symfony Community",
  7908. "homepage": "https://symfony.com/contributors"
  7909. }
  7910. ],
  7911. "description": "Generic abstractions related to writing services",
  7912. "homepage": "https://symfony.com",
  7913. "keywords": [
  7914. "abstractions",
  7915. "contracts",
  7916. "decoupling",
  7917. "interfaces",
  7918. "interoperability",
  7919. "standards"
  7920. ],
  7921. "support": {
  7922. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7923. },
  7924. "funding": [
  7925. {
  7926. "url": "https://symfony.com/sponsor",
  7927. "type": "custom"
  7928. },
  7929. {
  7930. "url": "https://github.com/fabpot",
  7931. "type": "github"
  7932. },
  7933. {
  7934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7935. "type": "tidelift"
  7936. }
  7937. ],
  7938. "time": "2024-09-25T14:20:29+00:00"
  7939. },
  7940. {
  7941. "name": "symfony/string",
  7942. "version": "v6.4.13",
  7943. "source": {
  7944. "type": "git",
  7945. "url": "https://github.com/symfony/string.git",
  7946. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7947. },
  7948. "dist": {
  7949. "type": "zip",
  7950. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7951. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7952. "shasum": "",
  7953. "mirrors": [
  7954. {
  7955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7956. "preferred": true
  7957. }
  7958. ]
  7959. },
  7960. "require": {
  7961. "php": ">=8.1",
  7962. "symfony/polyfill-ctype": "~1.8",
  7963. "symfony/polyfill-intl-grapheme": "~1.0",
  7964. "symfony/polyfill-intl-normalizer": "~1.0",
  7965. "symfony/polyfill-mbstring": "~1.0"
  7966. },
  7967. "conflict": {
  7968. "symfony/translation-contracts": "<2.5"
  7969. },
  7970. "require-dev": {
  7971. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7972. "symfony/http-client": "^5.4|^6.0|^7.0",
  7973. "symfony/intl": "^6.2|^7.0",
  7974. "symfony/translation-contracts": "^2.5|^3.0",
  7975. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7976. },
  7977. "type": "library",
  7978. "autoload": {
  7979. "files": [
  7980. "Resources/functions.php"
  7981. ],
  7982. "psr-4": {
  7983. "Symfony\\Component\\String\\": ""
  7984. },
  7985. "exclude-from-classmap": [
  7986. "/Tests/"
  7987. ]
  7988. },
  7989. "notification-url": "https://packagist.org/downloads/",
  7990. "license": [
  7991. "MIT"
  7992. ],
  7993. "authors": [
  7994. {
  7995. "name": "Nicolas Grekas",
  7996. "email": "p@tchwork.com"
  7997. },
  7998. {
  7999. "name": "Symfony Community",
  8000. "homepage": "https://symfony.com/contributors"
  8001. }
  8002. ],
  8003. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8004. "homepage": "https://symfony.com",
  8005. "keywords": [
  8006. "grapheme",
  8007. "i18n",
  8008. "string",
  8009. "unicode",
  8010. "utf-8",
  8011. "utf8"
  8012. ],
  8013. "support": {
  8014. "source": "https://github.com/symfony/string/tree/v6.4.13"
  8015. },
  8016. "funding": [
  8017. {
  8018. "url": "https://symfony.com/sponsor",
  8019. "type": "custom"
  8020. },
  8021. {
  8022. "url": "https://github.com/fabpot",
  8023. "type": "github"
  8024. },
  8025. {
  8026. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8027. "type": "tidelift"
  8028. }
  8029. ],
  8030. "time": "2024-09-25T14:18:03+00:00"
  8031. },
  8032. {
  8033. "name": "symfony/translation",
  8034. "version": "v6.4.13",
  8035. "source": {
  8036. "type": "git",
  8037. "url": "https://github.com/symfony/translation.git",
  8038. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  8039. },
  8040. "dist": {
  8041. "type": "zip",
  8042. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8043. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8044. "shasum": "",
  8045. "mirrors": [
  8046. {
  8047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8048. "preferred": true
  8049. }
  8050. ]
  8051. },
  8052. "require": {
  8053. "php": ">=8.1",
  8054. "symfony/deprecation-contracts": "^2.5|^3",
  8055. "symfony/polyfill-mbstring": "~1.0",
  8056. "symfony/translation-contracts": "^2.5|^3.0"
  8057. },
  8058. "conflict": {
  8059. "symfony/config": "<5.4",
  8060. "symfony/console": "<5.4",
  8061. "symfony/dependency-injection": "<5.4",
  8062. "symfony/http-client-contracts": "<2.5",
  8063. "symfony/http-kernel": "<5.4",
  8064. "symfony/service-contracts": "<2.5",
  8065. "symfony/twig-bundle": "<5.4",
  8066. "symfony/yaml": "<5.4"
  8067. },
  8068. "provide": {
  8069. "symfony/translation-implementation": "2.3|3.0"
  8070. },
  8071. "require-dev": {
  8072. "nikic/php-parser": "^4.18|^5.0",
  8073. "psr/log": "^1|^2|^3",
  8074. "symfony/config": "^5.4|^6.0|^7.0",
  8075. "symfony/console": "^5.4|^6.0|^7.0",
  8076. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8077. "symfony/finder": "^5.4|^6.0|^7.0",
  8078. "symfony/http-client-contracts": "^2.5|^3.0",
  8079. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8080. "symfony/intl": "^5.4|^6.0|^7.0",
  8081. "symfony/polyfill-intl-icu": "^1.21",
  8082. "symfony/routing": "^5.4|^6.0|^7.0",
  8083. "symfony/service-contracts": "^2.5|^3",
  8084. "symfony/yaml": "^5.4|^6.0|^7.0"
  8085. },
  8086. "type": "library",
  8087. "autoload": {
  8088. "files": [
  8089. "Resources/functions.php"
  8090. ],
  8091. "psr-4": {
  8092. "Symfony\\Component\\Translation\\": ""
  8093. },
  8094. "exclude-from-classmap": [
  8095. "/Tests/"
  8096. ]
  8097. },
  8098. "notification-url": "https://packagist.org/downloads/",
  8099. "license": [
  8100. "MIT"
  8101. ],
  8102. "authors": [
  8103. {
  8104. "name": "Fabien Potencier",
  8105. "email": "fabien@symfony.com"
  8106. },
  8107. {
  8108. "name": "Symfony Community",
  8109. "homepage": "https://symfony.com/contributors"
  8110. }
  8111. ],
  8112. "description": "Provides tools to internationalize your application",
  8113. "homepage": "https://symfony.com",
  8114. "support": {
  8115. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  8116. },
  8117. "funding": [
  8118. {
  8119. "url": "https://symfony.com/sponsor",
  8120. "type": "custom"
  8121. },
  8122. {
  8123. "url": "https://github.com/fabpot",
  8124. "type": "github"
  8125. },
  8126. {
  8127. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8128. "type": "tidelift"
  8129. }
  8130. ],
  8131. "time": "2024-09-27T18:14:25+00:00"
  8132. },
  8133. {
  8134. "name": "symfony/translation-contracts",
  8135. "version": "v3.5.1",
  8136. "source": {
  8137. "type": "git",
  8138. "url": "https://github.com/symfony/translation-contracts.git",
  8139. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8140. },
  8141. "dist": {
  8142. "type": "zip",
  8143. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8144. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8145. "shasum": "",
  8146. "mirrors": [
  8147. {
  8148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8149. "preferred": true
  8150. }
  8151. ]
  8152. },
  8153. "require": {
  8154. "php": ">=8.1"
  8155. },
  8156. "type": "library",
  8157. "extra": {
  8158. "thanks": {
  8159. "url": "https://github.com/symfony/contracts",
  8160. "name": "symfony/contracts"
  8161. },
  8162. "branch-alias": {
  8163. "dev-main": "3.5-dev"
  8164. }
  8165. },
  8166. "autoload": {
  8167. "psr-4": {
  8168. "Symfony\\Contracts\\Translation\\": ""
  8169. },
  8170. "exclude-from-classmap": [
  8171. "/Test/"
  8172. ]
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Nicolas Grekas",
  8181. "email": "p@tchwork.com"
  8182. },
  8183. {
  8184. "name": "Symfony Community",
  8185. "homepage": "https://symfony.com/contributors"
  8186. }
  8187. ],
  8188. "description": "Generic abstractions related to translation",
  8189. "homepage": "https://symfony.com",
  8190. "keywords": [
  8191. "abstractions",
  8192. "contracts",
  8193. "decoupling",
  8194. "interfaces",
  8195. "interoperability",
  8196. "standards"
  8197. ],
  8198. "support": {
  8199. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8200. },
  8201. "funding": [
  8202. {
  8203. "url": "https://symfony.com/sponsor",
  8204. "type": "custom"
  8205. },
  8206. {
  8207. "url": "https://github.com/fabpot",
  8208. "type": "github"
  8209. },
  8210. {
  8211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8212. "type": "tidelift"
  8213. }
  8214. ],
  8215. "time": "2024-09-25T14:20:29+00:00"
  8216. },
  8217. {
  8218. "name": "vlucas/phpdotenv",
  8219. "version": "v5.6.1",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/vlucas/phpdotenv.git",
  8223. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8228. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8229. "shasum": "",
  8230. "mirrors": [
  8231. {
  8232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8233. "preferred": true
  8234. }
  8235. ]
  8236. },
  8237. "require": {
  8238. "ext-pcre": "*",
  8239. "graham-campbell/result-type": "^1.1.3",
  8240. "php": "^7.2.5 || ^8.0",
  8241. "phpoption/phpoption": "^1.9.3",
  8242. "symfony/polyfill-ctype": "^1.24",
  8243. "symfony/polyfill-mbstring": "^1.24",
  8244. "symfony/polyfill-php80": "^1.24"
  8245. },
  8246. "require-dev": {
  8247. "bamarni/composer-bin-plugin": "^1.8.2",
  8248. "ext-filter": "*",
  8249. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8250. },
  8251. "suggest": {
  8252. "ext-filter": "Required to use the boolean validator."
  8253. },
  8254. "type": "library",
  8255. "extra": {
  8256. "bamarni-bin": {
  8257. "bin-links": true,
  8258. "forward-command": false
  8259. },
  8260. "branch-alias": {
  8261. "dev-master": "5.6-dev"
  8262. }
  8263. },
  8264. "autoload": {
  8265. "psr-4": {
  8266. "Dotenv\\": "src/"
  8267. }
  8268. },
  8269. "notification-url": "https://packagist.org/downloads/",
  8270. "license": [
  8271. "BSD-3-Clause"
  8272. ],
  8273. "authors": [
  8274. {
  8275. "name": "Graham Campbell",
  8276. "email": "hello@gjcampbell.co.uk",
  8277. "homepage": "https://github.com/GrahamCampbell"
  8278. },
  8279. {
  8280. "name": "Vance Lucas",
  8281. "email": "vance@vancelucas.com",
  8282. "homepage": "https://github.com/vlucas"
  8283. }
  8284. ],
  8285. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8286. "keywords": [
  8287. "dotenv",
  8288. "env",
  8289. "environment"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8293. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://github.com/GrahamCampbell",
  8298. "type": "github"
  8299. },
  8300. {
  8301. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8302. "type": "tidelift"
  8303. }
  8304. ],
  8305. "time": "2024-07-20T21:52:34+00:00"
  8306. }
  8307. ],
  8308. "packages-dev": [
  8309. {
  8310. "name": "clue/ndjson-react",
  8311. "version": "v1.3.0",
  8312. "source": {
  8313. "type": "git",
  8314. "url": "https://github.com/clue/reactphp-ndjson.git",
  8315. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8316. },
  8317. "dist": {
  8318. "type": "zip",
  8319. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8320. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8321. "shasum": "",
  8322. "mirrors": [
  8323. {
  8324. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8325. "preferred": true
  8326. }
  8327. ]
  8328. },
  8329. "require": {
  8330. "php": ">=5.3",
  8331. "react/stream": "^1.2"
  8332. },
  8333. "require-dev": {
  8334. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8335. "react/event-loop": "^1.2"
  8336. },
  8337. "type": "library",
  8338. "autoload": {
  8339. "psr-4": {
  8340. "Clue\\React\\NDJson\\": "src/"
  8341. }
  8342. },
  8343. "notification-url": "https://packagist.org/downloads/",
  8344. "license": [
  8345. "MIT"
  8346. ],
  8347. "authors": [
  8348. {
  8349. "name": "Christian Lück",
  8350. "email": "christian@clue.engineering"
  8351. }
  8352. ],
  8353. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8354. "homepage": "https://github.com/clue/reactphp-ndjson",
  8355. "keywords": [
  8356. "NDJSON",
  8357. "json",
  8358. "jsonlines",
  8359. "newline",
  8360. "reactphp",
  8361. "streaming"
  8362. ],
  8363. "support": {
  8364. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8365. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8366. },
  8367. "funding": [
  8368. {
  8369. "url": "https://clue.engineering/support",
  8370. "type": "custom"
  8371. },
  8372. {
  8373. "url": "https://github.com/clue",
  8374. "type": "github"
  8375. }
  8376. ],
  8377. "time": "2022-12-23T10:58:28+00:00"
  8378. },
  8379. {
  8380. "name": "composer/pcre",
  8381. "version": "3.3.2",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/composer/pcre.git",
  8385. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8390. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8391. "shasum": "",
  8392. "mirrors": [
  8393. {
  8394. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8395. "preferred": true
  8396. }
  8397. ]
  8398. },
  8399. "require": {
  8400. "php": "^7.4 || ^8.0"
  8401. },
  8402. "conflict": {
  8403. "phpstan/phpstan": "<1.11.10"
  8404. },
  8405. "require-dev": {
  8406. "phpstan/phpstan": "^1.12 || ^2",
  8407. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8408. "phpunit/phpunit": "^8 || ^9"
  8409. },
  8410. "type": "library",
  8411. "extra": {
  8412. "branch-alias": {
  8413. "dev-main": "3.x-dev"
  8414. },
  8415. "phpstan": {
  8416. "includes": [
  8417. "extension.neon"
  8418. ]
  8419. }
  8420. },
  8421. "autoload": {
  8422. "psr-4": {
  8423. "Composer\\Pcre\\": "src"
  8424. }
  8425. },
  8426. "notification-url": "https://packagist.org/downloads/",
  8427. "license": [
  8428. "MIT"
  8429. ],
  8430. "authors": [
  8431. {
  8432. "name": "Jordi Boggiano",
  8433. "email": "j.boggiano@seld.be",
  8434. "homepage": "http://seld.be"
  8435. }
  8436. ],
  8437. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8438. "keywords": [
  8439. "PCRE",
  8440. "preg",
  8441. "regex",
  8442. "regular expression"
  8443. ],
  8444. "support": {
  8445. "issues": "https://github.com/composer/pcre/issues",
  8446. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8447. },
  8448. "funding": [
  8449. {
  8450. "url": "https://packagist.com",
  8451. "type": "custom"
  8452. },
  8453. {
  8454. "url": "https://github.com/composer",
  8455. "type": "github"
  8456. },
  8457. {
  8458. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8459. "type": "tidelift"
  8460. }
  8461. ],
  8462. "time": "2024-11-12T16:29:46+00:00"
  8463. },
  8464. {
  8465. "name": "composer/semver",
  8466. "version": "3.4.2",
  8467. "source": {
  8468. "type": "git",
  8469. "url": "https://github.com/composer/semver.git",
  8470. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6"
  8471. },
  8472. "dist": {
  8473. "type": "zip",
  8474. "url": "https://api.github.com/repos/composer/semver/zipball/c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8475. "reference": "c51258e759afdb17f1fd1fe83bc12baaef6309d6",
  8476. "shasum": "",
  8477. "mirrors": [
  8478. {
  8479. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8480. "preferred": true
  8481. }
  8482. ]
  8483. },
  8484. "require": {
  8485. "php": "^5.3.2 || ^7.0 || ^8.0"
  8486. },
  8487. "require-dev": {
  8488. "phpstan/phpstan": "^1.4",
  8489. "symfony/phpunit-bridge": "^4.2 || ^5"
  8490. },
  8491. "type": "library",
  8492. "extra": {
  8493. "branch-alias": {
  8494. "dev-main": "3.x-dev"
  8495. }
  8496. },
  8497. "autoload": {
  8498. "psr-4": {
  8499. "Composer\\Semver\\": "src"
  8500. }
  8501. },
  8502. "notification-url": "https://packagist.org/downloads/",
  8503. "license": [
  8504. "MIT"
  8505. ],
  8506. "authors": [
  8507. {
  8508. "name": "Nils Adermann",
  8509. "email": "naderman@naderman.de",
  8510. "homepage": "http://www.naderman.de"
  8511. },
  8512. {
  8513. "name": "Jordi Boggiano",
  8514. "email": "j.boggiano@seld.be",
  8515. "homepage": "http://seld.be"
  8516. },
  8517. {
  8518. "name": "Rob Bast",
  8519. "email": "rob.bast@gmail.com",
  8520. "homepage": "http://robbast.nl"
  8521. }
  8522. ],
  8523. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8524. "keywords": [
  8525. "semantic",
  8526. "semver",
  8527. "validation",
  8528. "versioning"
  8529. ],
  8530. "support": {
  8531. "irc": "ircs://irc.libera.chat:6697/composer",
  8532. "issues": "https://github.com/composer/semver/issues",
  8533. "source": "https://github.com/composer/semver/tree/3.4.2"
  8534. },
  8535. "funding": [
  8536. {
  8537. "url": "https://packagist.com",
  8538. "type": "custom"
  8539. },
  8540. {
  8541. "url": "https://github.com/composer",
  8542. "type": "github"
  8543. },
  8544. {
  8545. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8546. "type": "tidelift"
  8547. }
  8548. ],
  8549. "time": "2024-07-12T11:35:52+00:00"
  8550. },
  8551. {
  8552. "name": "composer/xdebug-handler",
  8553. "version": "3.0.3",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/composer/xdebug-handler.git",
  8557. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  8562. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  8563. "shasum": "",
  8564. "mirrors": [
  8565. {
  8566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8567. "preferred": true
  8568. }
  8569. ]
  8570. },
  8571. "require": {
  8572. "composer/pcre": "^1 || ^2 || ^3",
  8573. "php": "^7.2.5 || ^8.0",
  8574. "psr/log": "^1 || ^2 || ^3"
  8575. },
  8576. "require-dev": {
  8577. "phpstan/phpstan": "^1.0",
  8578. "phpstan/phpstan-strict-rules": "^1.1",
  8579. "symfony/phpunit-bridge": "^6.0"
  8580. },
  8581. "type": "library",
  8582. "autoload": {
  8583. "psr-4": {
  8584. "Composer\\XdebugHandler\\": "src"
  8585. }
  8586. },
  8587. "notification-url": "https://packagist.org/downloads/",
  8588. "license": [
  8589. "MIT"
  8590. ],
  8591. "authors": [
  8592. {
  8593. "name": "John Stevenson",
  8594. "email": "john-stevenson@blueyonder.co.uk"
  8595. }
  8596. ],
  8597. "description": "Restarts a process without Xdebug.",
  8598. "keywords": [
  8599. "Xdebug",
  8600. "performance"
  8601. ],
  8602. "support": {
  8603. "irc": "irc://irc.freenode.org/composer",
  8604. "issues": "https://github.com/composer/xdebug-handler/issues",
  8605. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  8606. },
  8607. "funding": [
  8608. {
  8609. "url": "https://packagist.com",
  8610. "type": "custom"
  8611. },
  8612. {
  8613. "url": "https://github.com/composer",
  8614. "type": "github"
  8615. },
  8616. {
  8617. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8618. "type": "tidelift"
  8619. }
  8620. ],
  8621. "time": "2022-02-25T21:32:43+00:00"
  8622. },
  8623. {
  8624. "name": "evenement/evenement",
  8625. "version": "v3.0.2",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/igorw/evenement.git",
  8629. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8634. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8635. "shasum": "",
  8636. "mirrors": [
  8637. {
  8638. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8639. "preferred": true
  8640. }
  8641. ]
  8642. },
  8643. "require": {
  8644. "php": ">=7.0"
  8645. },
  8646. "require-dev": {
  8647. "phpunit/phpunit": "^9 || ^6"
  8648. },
  8649. "type": "library",
  8650. "autoload": {
  8651. "psr-4": {
  8652. "Evenement\\": "src/"
  8653. }
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "MIT"
  8658. ],
  8659. "authors": [
  8660. {
  8661. "name": "Igor Wiedler",
  8662. "email": "igor@wiedler.ch"
  8663. }
  8664. ],
  8665. "description": "Événement is a very simple event dispatching library for PHP",
  8666. "keywords": [
  8667. "event-dispatcher",
  8668. "event-emitter"
  8669. ],
  8670. "support": {
  8671. "issues": "https://github.com/igorw/evenement/issues",
  8672. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8673. },
  8674. "time": "2023-08-08T05:53:35+00:00"
  8675. },
  8676. {
  8677. "name": "fidry/cpu-core-counter",
  8678. "version": "1.1.0",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8682. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8687. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8688. "shasum": "",
  8689. "mirrors": [
  8690. {
  8691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8692. "preferred": true
  8693. }
  8694. ]
  8695. },
  8696. "require": {
  8697. "php": "^7.2 || ^8.0"
  8698. },
  8699. "require-dev": {
  8700. "fidry/makefile": "^0.2.0",
  8701. "fidry/php-cs-fixer-config": "^1.1.2",
  8702. "phpstan/extension-installer": "^1.2.0",
  8703. "phpstan/phpstan": "^1.9.2",
  8704. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8705. "phpstan/phpstan-phpunit": "^1.2.2",
  8706. "phpstan/phpstan-strict-rules": "^1.4.4",
  8707. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8708. "webmozarts/strict-phpunit": "^7.5"
  8709. },
  8710. "type": "library",
  8711. "autoload": {
  8712. "psr-4": {
  8713. "Fidry\\CpuCoreCounter\\": "src/"
  8714. }
  8715. },
  8716. "notification-url": "https://packagist.org/downloads/",
  8717. "license": [
  8718. "MIT"
  8719. ],
  8720. "authors": [
  8721. {
  8722. "name": "Théo FIDRY",
  8723. "email": "theo.fidry@gmail.com"
  8724. }
  8725. ],
  8726. "description": "Tiny utility to get the number of CPU cores.",
  8727. "keywords": [
  8728. "CPU",
  8729. "core"
  8730. ],
  8731. "support": {
  8732. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8733. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8734. },
  8735. "funding": [
  8736. {
  8737. "url": "https://github.com/theofidry",
  8738. "type": "github"
  8739. }
  8740. ],
  8741. "time": "2024-02-07T09:43:46+00:00"
  8742. },
  8743. {
  8744. "name": "friendsofphp/php-cs-fixer",
  8745. "version": "v3.64.0",
  8746. "source": {
  8747. "type": "git",
  8748. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8749. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8750. },
  8751. "dist": {
  8752. "type": "zip",
  8753. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8754. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8755. "shasum": "",
  8756. "mirrors": [
  8757. {
  8758. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8759. "preferred": true
  8760. }
  8761. ]
  8762. },
  8763. "require": {
  8764. "clue/ndjson-react": "^1.0",
  8765. "composer/semver": "^3.4",
  8766. "composer/xdebug-handler": "^3.0.3",
  8767. "ext-filter": "*",
  8768. "ext-json": "*",
  8769. "ext-tokenizer": "*",
  8770. "fidry/cpu-core-counter": "^1.0",
  8771. "php": "^7.4 || ^8.0",
  8772. "react/child-process": "^0.6.5",
  8773. "react/event-loop": "^1.0",
  8774. "react/promise": "^2.0 || ^3.0",
  8775. "react/socket": "^1.0",
  8776. "react/stream": "^1.0",
  8777. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8778. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8779. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8780. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8781. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8782. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8783. "symfony/polyfill-mbstring": "^1.28",
  8784. "symfony/polyfill-php80": "^1.28",
  8785. "symfony/polyfill-php81": "^1.28",
  8786. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8787. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8788. },
  8789. "require-dev": {
  8790. "facile-it/paraunit": "^1.3 || ^2.3",
  8791. "infection/infection": "^0.29.5",
  8792. "justinrainbow/json-schema": "^5.2",
  8793. "keradus/cli-executor": "^2.1",
  8794. "mikey179/vfsstream": "^1.6.11",
  8795. "php-coveralls/php-coveralls": "^2.7",
  8796. "php-cs-fixer/accessible-object": "^1.1",
  8797. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8798. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8799. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8800. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8801. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8802. },
  8803. "suggest": {
  8804. "ext-dom": "For handling output formats in XML",
  8805. "ext-mbstring": "For handling non-UTF8 characters."
  8806. },
  8807. "bin": [
  8808. "php-cs-fixer"
  8809. ],
  8810. "type": "application",
  8811. "autoload": {
  8812. "psr-4": {
  8813. "PhpCsFixer\\": "src/"
  8814. },
  8815. "exclude-from-classmap": [
  8816. "src/Fixer/Internal/*"
  8817. ]
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "authors": [
  8824. {
  8825. "name": "Fabien Potencier",
  8826. "email": "fabien@symfony.com"
  8827. },
  8828. {
  8829. "name": "Dariusz Rumiński",
  8830. "email": "dariusz.ruminski@gmail.com"
  8831. }
  8832. ],
  8833. "description": "A tool to automatically fix PHP code style",
  8834. "keywords": [
  8835. "Static code analysis",
  8836. "fixer",
  8837. "standards",
  8838. "static analysis"
  8839. ],
  8840. "support": {
  8841. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8842. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8843. },
  8844. "funding": [
  8845. {
  8846. "url": "https://github.com/keradus",
  8847. "type": "github"
  8848. }
  8849. ],
  8850. "time": "2024-08-30T23:09:38+00:00"
  8851. },
  8852. {
  8853. "name": "hamcrest/hamcrest-php",
  8854. "version": "v2.0.1",
  8855. "source": {
  8856. "type": "git",
  8857. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8858. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8859. },
  8860. "dist": {
  8861. "type": "zip",
  8862. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8863. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8864. "shasum": "",
  8865. "mirrors": [
  8866. {
  8867. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8868. "preferred": true
  8869. }
  8870. ]
  8871. },
  8872. "require": {
  8873. "php": "^5.3|^7.0|^8.0"
  8874. },
  8875. "replace": {
  8876. "cordoval/hamcrest-php": "*",
  8877. "davedevelopment/hamcrest-php": "*",
  8878. "kodova/hamcrest-php": "*"
  8879. },
  8880. "require-dev": {
  8881. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8882. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8883. },
  8884. "type": "library",
  8885. "extra": {
  8886. "branch-alias": {
  8887. "dev-master": "2.1-dev"
  8888. }
  8889. },
  8890. "autoload": {
  8891. "classmap": [
  8892. "hamcrest"
  8893. ]
  8894. },
  8895. "notification-url": "https://packagist.org/downloads/",
  8896. "license": [
  8897. "BSD-3-Clause"
  8898. ],
  8899. "description": "This is the PHP port of Hamcrest Matchers",
  8900. "keywords": [
  8901. "test"
  8902. ],
  8903. "support": {
  8904. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8905. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8906. },
  8907. "time": "2020-07-09T08:09:16+00:00"
  8908. },
  8909. {
  8910. "name": "hyperf/devtool",
  8911. "version": "v3.1.51",
  8912. "source": {
  8913. "type": "git",
  8914. "url": "https://github.com/hyperf/devtool.git",
  8915. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  8916. },
  8917. "dist": {
  8918. "type": "zip",
  8919. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  8920. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  8921. "shasum": "",
  8922. "mirrors": [
  8923. {
  8924. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8925. "preferred": true
  8926. }
  8927. ]
  8928. },
  8929. "require": {
  8930. "hyperf/code-parser": "~3.1.0",
  8931. "hyperf/command": "~3.1.0",
  8932. "hyperf/contract": "~3.1.0",
  8933. "hyperf/di": "~3.1.0",
  8934. "hyperf/support": "~3.1.0",
  8935. "hyperf/utils": "~3.1.0",
  8936. "php": ">=8.1"
  8937. },
  8938. "type": "library",
  8939. "extra": {
  8940. "hyperf": {
  8941. "config": "Hyperf\\Devtool\\ConfigProvider"
  8942. },
  8943. "branch-alias": {
  8944. "dev-master": "3.1-dev"
  8945. }
  8946. },
  8947. "autoload": {
  8948. "psr-4": {
  8949. "Hyperf\\Devtool\\": "src/"
  8950. }
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "MIT"
  8955. ],
  8956. "description": "A Devtool for Hyperf.",
  8957. "homepage": "https://hyperf.io",
  8958. "keywords": [
  8959. "dev",
  8960. "devtool",
  8961. "hyperf",
  8962. "php",
  8963. "swoole"
  8964. ],
  8965. "support": {
  8966. "docs": "https://hyperf.wiki",
  8967. "issues": "https://github.com/hyperf/hyperf/issues",
  8968. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8969. "source": "https://github.com/hyperf/hyperf"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8974. "type": "custom"
  8975. },
  8976. {
  8977. "url": "https://opencollective.com/hyperf",
  8978. "type": "open_collective"
  8979. }
  8980. ],
  8981. "time": "2025-02-06T06:42:00+00:00"
  8982. },
  8983. {
  8984. "name": "hyperf/testing",
  8985. "version": "v3.1.52",
  8986. "source": {
  8987. "type": "git",
  8988. "url": "https://github.com/hyperf/testing.git",
  8989. "reference": "1d95c8e05d74fe314f5c2533ae666464a53c4211"
  8990. },
  8991. "dist": {
  8992. "type": "zip",
  8993. "url": "https://api.github.com/repos/hyperf/testing/zipball/1d95c8e05d74fe314f5c2533ae666464a53c4211",
  8994. "reference": "1d95c8e05d74fe314f5c2533ae666464a53c4211",
  8995. "shasum": "",
  8996. "mirrors": [
  8997. {
  8998. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8999. "preferred": true
  9000. }
  9001. ]
  9002. },
  9003. "require": {
  9004. "hyperf/codec": "~3.1.0",
  9005. "hyperf/collection": "~3.1.0",
  9006. "hyperf/contract": "~3.1.0",
  9007. "hyperf/coroutine": "~3.1.0",
  9008. "hyperf/http-message": "~3.1.0",
  9009. "hyperf/http-server": "~3.1.0",
  9010. "hyperf/support": "~3.1.0",
  9011. "hyperf/utils": "~3.1.0",
  9012. "php": ">=8.1",
  9013. "phpunit/phpunit": "^10.0",
  9014. "psr/container": "^1.0 || ^2.0",
  9015. "symfony/http-foundation": "^5.4 || ^6.0"
  9016. },
  9017. "suggest": {
  9018. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9019. },
  9020. "bin": [
  9021. "co-phpunit"
  9022. ],
  9023. "type": "library",
  9024. "extra": {
  9025. "branch-alias": {
  9026. "dev-master": "3.1-dev"
  9027. }
  9028. },
  9029. "autoload": {
  9030. "psr-4": {
  9031. "Hyperf\\Testing\\": "src/"
  9032. }
  9033. },
  9034. "notification-url": "https://packagist.org/downloads/",
  9035. "license": [
  9036. "MIT"
  9037. ],
  9038. "description": "Testing for hyperf",
  9039. "keywords": [
  9040. "dev",
  9041. "php",
  9042. "swoole",
  9043. "testing"
  9044. ],
  9045. "support": {
  9046. "source": "https://github.com/hyperf/testing/tree/v3.1.52"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9051. "type": "custom"
  9052. },
  9053. {
  9054. "url": "https://opencollective.com/hyperf",
  9055. "type": "open_collective"
  9056. }
  9057. ],
  9058. "time": "2025-02-27T06:49:30+00:00"
  9059. },
  9060. {
  9061. "name": "mockery/mockery",
  9062. "version": "1.6.12",
  9063. "source": {
  9064. "type": "git",
  9065. "url": "https://github.com/mockery/mockery.git",
  9066. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9067. },
  9068. "dist": {
  9069. "type": "zip",
  9070. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9071. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9072. "shasum": "",
  9073. "mirrors": [
  9074. {
  9075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9076. "preferred": true
  9077. }
  9078. ]
  9079. },
  9080. "require": {
  9081. "hamcrest/hamcrest-php": "^2.0.1",
  9082. "lib-pcre": ">=7.0",
  9083. "php": ">=7.3"
  9084. },
  9085. "conflict": {
  9086. "phpunit/phpunit": "<8.0"
  9087. },
  9088. "require-dev": {
  9089. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9090. "symplify/easy-coding-standard": "^12.1.14"
  9091. },
  9092. "type": "library",
  9093. "autoload": {
  9094. "files": [
  9095. "library/helpers.php",
  9096. "library/Mockery.php"
  9097. ],
  9098. "psr-4": {
  9099. "Mockery\\": "library/Mockery"
  9100. }
  9101. },
  9102. "notification-url": "https://packagist.org/downloads/",
  9103. "license": [
  9104. "BSD-3-Clause"
  9105. ],
  9106. "authors": [
  9107. {
  9108. "name": "Pádraic Brady",
  9109. "email": "padraic.brady@gmail.com",
  9110. "homepage": "https://github.com/padraic",
  9111. "role": "Author"
  9112. },
  9113. {
  9114. "name": "Dave Marshall",
  9115. "email": "dave.marshall@atstsolutions.co.uk",
  9116. "homepage": "https://davedevelopment.co.uk",
  9117. "role": "Developer"
  9118. },
  9119. {
  9120. "name": "Nathanael Esayeas",
  9121. "email": "nathanael.esayeas@protonmail.com",
  9122. "homepage": "https://github.com/ghostwriter",
  9123. "role": "Lead Developer"
  9124. }
  9125. ],
  9126. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9127. "homepage": "https://github.com/mockery/mockery",
  9128. "keywords": [
  9129. "BDD",
  9130. "TDD",
  9131. "library",
  9132. "mock",
  9133. "mock objects",
  9134. "mockery",
  9135. "stub",
  9136. "test",
  9137. "test double",
  9138. "testing"
  9139. ],
  9140. "support": {
  9141. "docs": "https://docs.mockery.io/",
  9142. "issues": "https://github.com/mockery/mockery/issues",
  9143. "rss": "https://github.com/mockery/mockery/releases.atom",
  9144. "security": "https://github.com/mockery/mockery/security/advisories",
  9145. "source": "https://github.com/mockery/mockery"
  9146. },
  9147. "time": "2024-05-16T03:13:13+00:00"
  9148. },
  9149. {
  9150. "name": "myclabs/deep-copy",
  9151. "version": "1.x-dev",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/myclabs/DeepCopy.git",
  9155. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  9160. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  9161. "shasum": "",
  9162. "mirrors": [
  9163. {
  9164. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9165. "preferred": true
  9166. }
  9167. ]
  9168. },
  9169. "require": {
  9170. "php": "^7.1 || ^8.0"
  9171. },
  9172. "conflict": {
  9173. "doctrine/collections": "<1.6.8",
  9174. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9175. },
  9176. "require-dev": {
  9177. "doctrine/collections": "^1.6.8",
  9178. "doctrine/common": "^2.13.3 || ^3.2.2",
  9179. "phpspec/prophecy": "^1.10",
  9180. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9181. },
  9182. "default-branch": true,
  9183. "type": "library",
  9184. "autoload": {
  9185. "files": [
  9186. "src/DeepCopy/deep_copy.php"
  9187. ],
  9188. "psr-4": {
  9189. "DeepCopy\\": "src/DeepCopy/"
  9190. }
  9191. },
  9192. "notification-url": "https://packagist.org/downloads/",
  9193. "license": [
  9194. "MIT"
  9195. ],
  9196. "description": "Create deep copies (clones) of your objects",
  9197. "keywords": [
  9198. "clone",
  9199. "copy",
  9200. "duplicate",
  9201. "object",
  9202. "object graph"
  9203. ],
  9204. "support": {
  9205. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9206. "source": "https://github.com/myclabs/DeepCopy/tree/1.x"
  9207. },
  9208. "funding": [
  9209. {
  9210. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9211. "type": "tidelift"
  9212. }
  9213. ],
  9214. "time": "2025-02-12T12:17:51+00:00"
  9215. },
  9216. {
  9217. "name": "phar-io/manifest",
  9218. "version": "dev-master",
  9219. "source": {
  9220. "type": "git",
  9221. "url": "https://github.com/phar-io/manifest.git",
  9222. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9223. },
  9224. "dist": {
  9225. "type": "zip",
  9226. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9227. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9228. "shasum": "",
  9229. "mirrors": [
  9230. {
  9231. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9232. "preferred": true
  9233. }
  9234. ]
  9235. },
  9236. "require": {
  9237. "ext-dom": "*",
  9238. "ext-libxml": "*",
  9239. "ext-phar": "*",
  9240. "ext-xmlwriter": "*",
  9241. "phar-io/version": "^3.0.1",
  9242. "php": "^7.2 || ^8.0"
  9243. },
  9244. "default-branch": true,
  9245. "type": "library",
  9246. "extra": {
  9247. "branch-alias": {
  9248. "dev-master": "2.0.x-dev"
  9249. }
  9250. },
  9251. "autoload": {
  9252. "classmap": [
  9253. "src/"
  9254. ]
  9255. },
  9256. "notification-url": "https://packagist.org/downloads/",
  9257. "license": [
  9258. "BSD-3-Clause"
  9259. ],
  9260. "authors": [
  9261. {
  9262. "name": "Arne Blankerts",
  9263. "email": "arne@blankerts.de",
  9264. "role": "Developer"
  9265. },
  9266. {
  9267. "name": "Sebastian Heuer",
  9268. "email": "sebastian@phpeople.de",
  9269. "role": "Developer"
  9270. },
  9271. {
  9272. "name": "Sebastian Bergmann",
  9273. "email": "sebastian@phpunit.de",
  9274. "role": "Developer"
  9275. }
  9276. ],
  9277. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9278. "support": {
  9279. "issues": "https://github.com/phar-io/manifest/issues",
  9280. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9281. },
  9282. "funding": [
  9283. {
  9284. "url": "https://github.com/theseer",
  9285. "type": "github"
  9286. }
  9287. ],
  9288. "time": "2024-03-03T12:33:53+00:00"
  9289. },
  9290. {
  9291. "name": "phar-io/version",
  9292. "version": "3.2.1",
  9293. "source": {
  9294. "type": "git",
  9295. "url": "https://github.com/phar-io/version.git",
  9296. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9297. },
  9298. "dist": {
  9299. "type": "zip",
  9300. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9301. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9302. "shasum": "",
  9303. "mirrors": [
  9304. {
  9305. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9306. "preferred": true
  9307. }
  9308. ]
  9309. },
  9310. "require": {
  9311. "php": "^7.2 || ^8.0"
  9312. },
  9313. "type": "library",
  9314. "autoload": {
  9315. "classmap": [
  9316. "src/"
  9317. ]
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "BSD-3-Clause"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Arne Blankerts",
  9326. "email": "arne@blankerts.de",
  9327. "role": "Developer"
  9328. },
  9329. {
  9330. "name": "Sebastian Heuer",
  9331. "email": "sebastian@phpeople.de",
  9332. "role": "Developer"
  9333. },
  9334. {
  9335. "name": "Sebastian Bergmann",
  9336. "email": "sebastian@phpunit.de",
  9337. "role": "Developer"
  9338. }
  9339. ],
  9340. "description": "Library for handling version information and constraints",
  9341. "support": {
  9342. "issues": "https://github.com/phar-io/version/issues",
  9343. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9344. },
  9345. "time": "2022-02-21T01:04:05+00:00"
  9346. },
  9347. {
  9348. "name": "phpstan/phpstan",
  9349. "version": "1.12.18",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/phpstan/phpstan.git",
  9353. "reference": "fef9f07814a573399229304bb0046affdf558812"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/fef9f07814a573399229304bb0046affdf558812",
  9358. "reference": "fef9f07814a573399229304bb0046affdf558812",
  9359. "shasum": "",
  9360. "mirrors": [
  9361. {
  9362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9363. "preferred": true
  9364. }
  9365. ]
  9366. },
  9367. "require": {
  9368. "php": "^7.2|^8.0"
  9369. },
  9370. "conflict": {
  9371. "phpstan/phpstan-shim": "*"
  9372. },
  9373. "bin": [
  9374. "phpstan",
  9375. "phpstan.phar"
  9376. ],
  9377. "type": "library",
  9378. "autoload": {
  9379. "files": [
  9380. "bootstrap.php"
  9381. ]
  9382. },
  9383. "notification-url": "https://packagist.org/downloads/",
  9384. "license": [
  9385. "MIT"
  9386. ],
  9387. "description": "PHPStan - PHP Static Analysis Tool",
  9388. "keywords": [
  9389. "dev",
  9390. "static analysis"
  9391. ],
  9392. "support": {
  9393. "docs": "https://phpstan.org/user-guide/getting-started",
  9394. "forum": "https://github.com/phpstan/phpstan/discussions",
  9395. "issues": "https://github.com/phpstan/phpstan/issues",
  9396. "security": "https://github.com/phpstan/phpstan/security/policy",
  9397. "source": "https://github.com/phpstan/phpstan-src"
  9398. },
  9399. "funding": [
  9400. {
  9401. "url": "https://github.com/ondrejmirtes",
  9402. "type": "github"
  9403. },
  9404. {
  9405. "url": "https://github.com/phpstan",
  9406. "type": "github"
  9407. }
  9408. ],
  9409. "time": "2025-02-13T12:44:44+00:00"
  9410. },
  9411. {
  9412. "name": "phpunit/php-code-coverage",
  9413. "version": "10.1.16",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9417. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9422. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9423. "shasum": "",
  9424. "mirrors": [
  9425. {
  9426. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9427. "preferred": true
  9428. }
  9429. ]
  9430. },
  9431. "require": {
  9432. "ext-dom": "*",
  9433. "ext-libxml": "*",
  9434. "ext-xmlwriter": "*",
  9435. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9436. "php": ">=8.1",
  9437. "phpunit/php-file-iterator": "^4.1.0",
  9438. "phpunit/php-text-template": "^3.0.1",
  9439. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9440. "sebastian/complexity": "^3.2.0",
  9441. "sebastian/environment": "^6.1.0",
  9442. "sebastian/lines-of-code": "^2.0.2",
  9443. "sebastian/version": "^4.0.1",
  9444. "theseer/tokenizer": "^1.2.3"
  9445. },
  9446. "require-dev": {
  9447. "phpunit/phpunit": "^10.1"
  9448. },
  9449. "suggest": {
  9450. "ext-pcov": "PHP extension that provides line coverage",
  9451. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9452. },
  9453. "type": "library",
  9454. "extra": {
  9455. "branch-alias": {
  9456. "dev-main": "10.1.x-dev"
  9457. }
  9458. },
  9459. "autoload": {
  9460. "classmap": [
  9461. "src/"
  9462. ]
  9463. },
  9464. "notification-url": "https://packagist.org/downloads/",
  9465. "license": [
  9466. "BSD-3-Clause"
  9467. ],
  9468. "authors": [
  9469. {
  9470. "name": "Sebastian Bergmann",
  9471. "email": "sebastian@phpunit.de",
  9472. "role": "lead"
  9473. }
  9474. ],
  9475. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9476. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9477. "keywords": [
  9478. "coverage",
  9479. "testing",
  9480. "xunit"
  9481. ],
  9482. "support": {
  9483. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9484. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9485. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9486. },
  9487. "funding": [
  9488. {
  9489. "url": "https://github.com/sebastianbergmann",
  9490. "type": "github"
  9491. }
  9492. ],
  9493. "time": "2024-08-22T04:31:57+00:00"
  9494. },
  9495. {
  9496. "name": "phpunit/php-file-iterator",
  9497. "version": "4.1.0",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9501. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9506. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9507. "shasum": "",
  9508. "mirrors": [
  9509. {
  9510. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9511. "preferred": true
  9512. }
  9513. ]
  9514. },
  9515. "require": {
  9516. "php": ">=8.1"
  9517. },
  9518. "require-dev": {
  9519. "phpunit/phpunit": "^10.0"
  9520. },
  9521. "type": "library",
  9522. "extra": {
  9523. "branch-alias": {
  9524. "dev-main": "4.0-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "classmap": [
  9529. "src/"
  9530. ]
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "BSD-3-Clause"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Sebastian Bergmann",
  9539. "email": "sebastian@phpunit.de",
  9540. "role": "lead"
  9541. }
  9542. ],
  9543. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9544. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9545. "keywords": [
  9546. "filesystem",
  9547. "iterator"
  9548. ],
  9549. "support": {
  9550. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9551. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9552. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9553. },
  9554. "funding": [
  9555. {
  9556. "url": "https://github.com/sebastianbergmann",
  9557. "type": "github"
  9558. }
  9559. ],
  9560. "time": "2023-08-31T06:24:48+00:00"
  9561. },
  9562. {
  9563. "name": "phpunit/php-invoker",
  9564. "version": "4.0.0",
  9565. "source": {
  9566. "type": "git",
  9567. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9568. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9569. },
  9570. "dist": {
  9571. "type": "zip",
  9572. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9573. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9574. "shasum": "",
  9575. "mirrors": [
  9576. {
  9577. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9578. "preferred": true
  9579. }
  9580. ]
  9581. },
  9582. "require": {
  9583. "php": ">=8.1"
  9584. },
  9585. "require-dev": {
  9586. "ext-pcntl": "*",
  9587. "phpunit/phpunit": "^10.0"
  9588. },
  9589. "suggest": {
  9590. "ext-pcntl": "*"
  9591. },
  9592. "type": "library",
  9593. "extra": {
  9594. "branch-alias": {
  9595. "dev-main": "4.0-dev"
  9596. }
  9597. },
  9598. "autoload": {
  9599. "classmap": [
  9600. "src/"
  9601. ]
  9602. },
  9603. "notification-url": "https://packagist.org/downloads/",
  9604. "license": [
  9605. "BSD-3-Clause"
  9606. ],
  9607. "authors": [
  9608. {
  9609. "name": "Sebastian Bergmann",
  9610. "email": "sebastian@phpunit.de",
  9611. "role": "lead"
  9612. }
  9613. ],
  9614. "description": "Invoke callables with a timeout",
  9615. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9616. "keywords": [
  9617. "process"
  9618. ],
  9619. "support": {
  9620. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9621. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9622. },
  9623. "funding": [
  9624. {
  9625. "url": "https://github.com/sebastianbergmann",
  9626. "type": "github"
  9627. }
  9628. ],
  9629. "time": "2023-02-03T06:56:09+00:00"
  9630. },
  9631. {
  9632. "name": "phpunit/php-text-template",
  9633. "version": "3.0.1",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9637. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9642. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9643. "shasum": "",
  9644. "mirrors": [
  9645. {
  9646. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9647. "preferred": true
  9648. }
  9649. ]
  9650. },
  9651. "require": {
  9652. "php": ">=8.1"
  9653. },
  9654. "require-dev": {
  9655. "phpunit/phpunit": "^10.0"
  9656. },
  9657. "type": "library",
  9658. "extra": {
  9659. "branch-alias": {
  9660. "dev-main": "3.0-dev"
  9661. }
  9662. },
  9663. "autoload": {
  9664. "classmap": [
  9665. "src/"
  9666. ]
  9667. },
  9668. "notification-url": "https://packagist.org/downloads/",
  9669. "license": [
  9670. "BSD-3-Clause"
  9671. ],
  9672. "authors": [
  9673. {
  9674. "name": "Sebastian Bergmann",
  9675. "email": "sebastian@phpunit.de",
  9676. "role": "lead"
  9677. }
  9678. ],
  9679. "description": "Simple template engine.",
  9680. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9681. "keywords": [
  9682. "template"
  9683. ],
  9684. "support": {
  9685. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9686. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9687. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9688. },
  9689. "funding": [
  9690. {
  9691. "url": "https://github.com/sebastianbergmann",
  9692. "type": "github"
  9693. }
  9694. ],
  9695. "time": "2023-08-31T14:07:24+00:00"
  9696. },
  9697. {
  9698. "name": "phpunit/php-timer",
  9699. "version": "6.0.0",
  9700. "source": {
  9701. "type": "git",
  9702. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9703. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9704. },
  9705. "dist": {
  9706. "type": "zip",
  9707. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9708. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9709. "shasum": "",
  9710. "mirrors": [
  9711. {
  9712. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9713. "preferred": true
  9714. }
  9715. ]
  9716. },
  9717. "require": {
  9718. "php": ">=8.1"
  9719. },
  9720. "require-dev": {
  9721. "phpunit/phpunit": "^10.0"
  9722. },
  9723. "type": "library",
  9724. "extra": {
  9725. "branch-alias": {
  9726. "dev-main": "6.0-dev"
  9727. }
  9728. },
  9729. "autoload": {
  9730. "classmap": [
  9731. "src/"
  9732. ]
  9733. },
  9734. "notification-url": "https://packagist.org/downloads/",
  9735. "license": [
  9736. "BSD-3-Clause"
  9737. ],
  9738. "authors": [
  9739. {
  9740. "name": "Sebastian Bergmann",
  9741. "email": "sebastian@phpunit.de",
  9742. "role": "lead"
  9743. }
  9744. ],
  9745. "description": "Utility class for timing",
  9746. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9747. "keywords": [
  9748. "timer"
  9749. ],
  9750. "support": {
  9751. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9752. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9753. },
  9754. "funding": [
  9755. {
  9756. "url": "https://github.com/sebastianbergmann",
  9757. "type": "github"
  9758. }
  9759. ],
  9760. "time": "2023-02-03T06:57:52+00:00"
  9761. },
  9762. {
  9763. "name": "phpunit/phpunit",
  9764. "version": "10.5.45",
  9765. "source": {
  9766. "type": "git",
  9767. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9768. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8"
  9769. },
  9770. "dist": {
  9771. "type": "zip",
  9772. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bd68a781d8e30348bc297449f5234b3458267ae8",
  9773. "reference": "bd68a781d8e30348bc297449f5234b3458267ae8",
  9774. "shasum": "",
  9775. "mirrors": [
  9776. {
  9777. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9778. "preferred": true
  9779. }
  9780. ]
  9781. },
  9782. "require": {
  9783. "ext-dom": "*",
  9784. "ext-json": "*",
  9785. "ext-libxml": "*",
  9786. "ext-mbstring": "*",
  9787. "ext-xml": "*",
  9788. "ext-xmlwriter": "*",
  9789. "myclabs/deep-copy": "^1.12.1",
  9790. "phar-io/manifest": "^2.0.4",
  9791. "phar-io/version": "^3.2.1",
  9792. "php": ">=8.1",
  9793. "phpunit/php-code-coverage": "^10.1.16",
  9794. "phpunit/php-file-iterator": "^4.1.0",
  9795. "phpunit/php-invoker": "^4.0.0",
  9796. "phpunit/php-text-template": "^3.0.1",
  9797. "phpunit/php-timer": "^6.0.0",
  9798. "sebastian/cli-parser": "^2.0.1",
  9799. "sebastian/code-unit": "^2.0.0",
  9800. "sebastian/comparator": "^5.0.3",
  9801. "sebastian/diff": "^5.1.1",
  9802. "sebastian/environment": "^6.1.0",
  9803. "sebastian/exporter": "^5.1.2",
  9804. "sebastian/global-state": "^6.0.2",
  9805. "sebastian/object-enumerator": "^5.0.0",
  9806. "sebastian/recursion-context": "^5.0.0",
  9807. "sebastian/type": "^4.0.0",
  9808. "sebastian/version": "^4.0.1"
  9809. },
  9810. "suggest": {
  9811. "ext-soap": "To be able to generate mocks based on WSDL files"
  9812. },
  9813. "bin": [
  9814. "phpunit"
  9815. ],
  9816. "type": "library",
  9817. "extra": {
  9818. "branch-alias": {
  9819. "dev-main": "10.5-dev"
  9820. }
  9821. },
  9822. "autoload": {
  9823. "files": [
  9824. "src/Framework/Assert/Functions.php"
  9825. ],
  9826. "classmap": [
  9827. "src/"
  9828. ]
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "BSD-3-Clause"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Sebastian Bergmann",
  9837. "email": "sebastian@phpunit.de",
  9838. "role": "lead"
  9839. }
  9840. ],
  9841. "description": "The PHP Unit Testing framework.",
  9842. "homepage": "https://phpunit.de/",
  9843. "keywords": [
  9844. "phpunit",
  9845. "testing",
  9846. "xunit"
  9847. ],
  9848. "support": {
  9849. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9850. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9851. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.45"
  9852. },
  9853. "funding": [
  9854. {
  9855. "url": "https://phpunit.de/sponsors.html",
  9856. "type": "custom"
  9857. },
  9858. {
  9859. "url": "https://github.com/sebastianbergmann",
  9860. "type": "github"
  9861. },
  9862. {
  9863. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9864. "type": "tidelift"
  9865. }
  9866. ],
  9867. "time": "2025-02-06T16:08:12+00:00"
  9868. },
  9869. {
  9870. "name": "react/cache",
  9871. "version": "v1.2.0",
  9872. "source": {
  9873. "type": "git",
  9874. "url": "https://github.com/reactphp/cache.git",
  9875. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9876. },
  9877. "dist": {
  9878. "type": "zip",
  9879. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9880. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9881. "shasum": "",
  9882. "mirrors": [
  9883. {
  9884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9885. "preferred": true
  9886. }
  9887. ]
  9888. },
  9889. "require": {
  9890. "php": ">=5.3.0",
  9891. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9892. },
  9893. "require-dev": {
  9894. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9895. },
  9896. "type": "library",
  9897. "autoload": {
  9898. "psr-4": {
  9899. "React\\Cache\\": "src/"
  9900. }
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "MIT"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Christian Lück",
  9909. "email": "christian@clue.engineering",
  9910. "homepage": "https://clue.engineering/"
  9911. },
  9912. {
  9913. "name": "Cees-Jan Kiewiet",
  9914. "email": "reactphp@ceesjankiewiet.nl",
  9915. "homepage": "https://wyrihaximus.net/"
  9916. },
  9917. {
  9918. "name": "Jan Sorgalla",
  9919. "email": "jsorgalla@gmail.com",
  9920. "homepage": "https://sorgalla.com/"
  9921. },
  9922. {
  9923. "name": "Chris Boden",
  9924. "email": "cboden@gmail.com",
  9925. "homepage": "https://cboden.dev/"
  9926. }
  9927. ],
  9928. "description": "Async, Promise-based cache interface for ReactPHP",
  9929. "keywords": [
  9930. "cache",
  9931. "caching",
  9932. "promise",
  9933. "reactphp"
  9934. ],
  9935. "support": {
  9936. "issues": "https://github.com/reactphp/cache/issues",
  9937. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9938. },
  9939. "funding": [
  9940. {
  9941. "url": "https://opencollective.com/reactphp",
  9942. "type": "open_collective"
  9943. }
  9944. ],
  9945. "time": "2022-11-30T15:59:55+00:00"
  9946. },
  9947. {
  9948. "name": "react/child-process",
  9949. "version": "v0.6.6",
  9950. "source": {
  9951. "type": "git",
  9952. "url": "https://github.com/reactphp/child-process.git",
  9953. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9954. },
  9955. "dist": {
  9956. "type": "zip",
  9957. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9958. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9959. "shasum": "",
  9960. "mirrors": [
  9961. {
  9962. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9963. "preferred": true
  9964. }
  9965. ]
  9966. },
  9967. "require": {
  9968. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9969. "php": ">=5.3.0",
  9970. "react/event-loop": "^1.2",
  9971. "react/stream": "^1.4"
  9972. },
  9973. "require-dev": {
  9974. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9975. "react/socket": "^1.16",
  9976. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9977. },
  9978. "type": "library",
  9979. "autoload": {
  9980. "psr-4": {
  9981. "React\\ChildProcess\\": "src/"
  9982. }
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "MIT"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Christian Lück",
  9991. "email": "christian@clue.engineering",
  9992. "homepage": "https://clue.engineering/"
  9993. },
  9994. {
  9995. "name": "Cees-Jan Kiewiet",
  9996. "email": "reactphp@ceesjankiewiet.nl",
  9997. "homepage": "https://wyrihaximus.net/"
  9998. },
  9999. {
  10000. "name": "Jan Sorgalla",
  10001. "email": "jsorgalla@gmail.com",
  10002. "homepage": "https://sorgalla.com/"
  10003. },
  10004. {
  10005. "name": "Chris Boden",
  10006. "email": "cboden@gmail.com",
  10007. "homepage": "https://cboden.dev/"
  10008. }
  10009. ],
  10010. "description": "Event-driven library for executing child processes with ReactPHP.",
  10011. "keywords": [
  10012. "event-driven",
  10013. "process",
  10014. "reactphp"
  10015. ],
  10016. "support": {
  10017. "issues": "https://github.com/reactphp/child-process/issues",
  10018. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  10019. },
  10020. "funding": [
  10021. {
  10022. "url": "https://opencollective.com/reactphp",
  10023. "type": "open_collective"
  10024. }
  10025. ],
  10026. "time": "2025-01-01T16:37:48+00:00"
  10027. },
  10028. {
  10029. "name": "react/dns",
  10030. "version": "v1.13.0",
  10031. "source": {
  10032. "type": "git",
  10033. "url": "https://github.com/reactphp/dns.git",
  10034. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  10035. },
  10036. "dist": {
  10037. "type": "zip",
  10038. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10039. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10040. "shasum": "",
  10041. "mirrors": [
  10042. {
  10043. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10044. "preferred": true
  10045. }
  10046. ]
  10047. },
  10048. "require": {
  10049. "php": ">=5.3.0",
  10050. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10051. "react/event-loop": "^1.2",
  10052. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  10053. },
  10054. "require-dev": {
  10055. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10056. "react/async": "^4.3 || ^3 || ^2",
  10057. "react/promise-timer": "^1.11"
  10058. },
  10059. "type": "library",
  10060. "autoload": {
  10061. "psr-4": {
  10062. "React\\Dns\\": "src/"
  10063. }
  10064. },
  10065. "notification-url": "https://packagist.org/downloads/",
  10066. "license": [
  10067. "MIT"
  10068. ],
  10069. "authors": [
  10070. {
  10071. "name": "Christian Lück",
  10072. "email": "christian@clue.engineering",
  10073. "homepage": "https://clue.engineering/"
  10074. },
  10075. {
  10076. "name": "Cees-Jan Kiewiet",
  10077. "email": "reactphp@ceesjankiewiet.nl",
  10078. "homepage": "https://wyrihaximus.net/"
  10079. },
  10080. {
  10081. "name": "Jan Sorgalla",
  10082. "email": "jsorgalla@gmail.com",
  10083. "homepage": "https://sorgalla.com/"
  10084. },
  10085. {
  10086. "name": "Chris Boden",
  10087. "email": "cboden@gmail.com",
  10088. "homepage": "https://cboden.dev/"
  10089. }
  10090. ],
  10091. "description": "Async DNS resolver for ReactPHP",
  10092. "keywords": [
  10093. "async",
  10094. "dns",
  10095. "dns-resolver",
  10096. "reactphp"
  10097. ],
  10098. "support": {
  10099. "issues": "https://github.com/reactphp/dns/issues",
  10100. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  10101. },
  10102. "funding": [
  10103. {
  10104. "url": "https://opencollective.com/reactphp",
  10105. "type": "open_collective"
  10106. }
  10107. ],
  10108. "time": "2024-06-13T14:18:03+00:00"
  10109. },
  10110. {
  10111. "name": "react/event-loop",
  10112. "version": "v1.5.0",
  10113. "source": {
  10114. "type": "git",
  10115. "url": "https://github.com/reactphp/event-loop.git",
  10116. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10117. },
  10118. "dist": {
  10119. "type": "zip",
  10120. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10121. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10122. "shasum": "",
  10123. "mirrors": [
  10124. {
  10125. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10126. "preferred": true
  10127. }
  10128. ]
  10129. },
  10130. "require": {
  10131. "php": ">=5.3.0"
  10132. },
  10133. "require-dev": {
  10134. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10135. },
  10136. "suggest": {
  10137. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10138. },
  10139. "type": "library",
  10140. "autoload": {
  10141. "psr-4": {
  10142. "React\\EventLoop\\": "src/"
  10143. }
  10144. },
  10145. "notification-url": "https://packagist.org/downloads/",
  10146. "license": [
  10147. "MIT"
  10148. ],
  10149. "authors": [
  10150. {
  10151. "name": "Christian Lück",
  10152. "email": "christian@clue.engineering",
  10153. "homepage": "https://clue.engineering/"
  10154. },
  10155. {
  10156. "name": "Cees-Jan Kiewiet",
  10157. "email": "reactphp@ceesjankiewiet.nl",
  10158. "homepage": "https://wyrihaximus.net/"
  10159. },
  10160. {
  10161. "name": "Jan Sorgalla",
  10162. "email": "jsorgalla@gmail.com",
  10163. "homepage": "https://sorgalla.com/"
  10164. },
  10165. {
  10166. "name": "Chris Boden",
  10167. "email": "cboden@gmail.com",
  10168. "homepage": "https://cboden.dev/"
  10169. }
  10170. ],
  10171. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10172. "keywords": [
  10173. "asynchronous",
  10174. "event-loop"
  10175. ],
  10176. "support": {
  10177. "issues": "https://github.com/reactphp/event-loop/issues",
  10178. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10179. },
  10180. "funding": [
  10181. {
  10182. "url": "https://opencollective.com/reactphp",
  10183. "type": "open_collective"
  10184. }
  10185. ],
  10186. "time": "2023-11-13T13:48:05+00:00"
  10187. },
  10188. {
  10189. "name": "react/socket",
  10190. "version": "v1.16.0",
  10191. "source": {
  10192. "type": "git",
  10193. "url": "https://github.com/reactphp/socket.git",
  10194. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  10195. },
  10196. "dist": {
  10197. "type": "zip",
  10198. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10199. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10200. "shasum": "",
  10201. "mirrors": [
  10202. {
  10203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10204. "preferred": true
  10205. }
  10206. ]
  10207. },
  10208. "require": {
  10209. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10210. "php": ">=5.3.0",
  10211. "react/dns": "^1.13",
  10212. "react/event-loop": "^1.2",
  10213. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  10214. "react/stream": "^1.4"
  10215. },
  10216. "require-dev": {
  10217. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10218. "react/async": "^4.3 || ^3.3 || ^2",
  10219. "react/promise-stream": "^1.4",
  10220. "react/promise-timer": "^1.11"
  10221. },
  10222. "type": "library",
  10223. "autoload": {
  10224. "psr-4": {
  10225. "React\\Socket\\": "src/"
  10226. }
  10227. },
  10228. "notification-url": "https://packagist.org/downloads/",
  10229. "license": [
  10230. "MIT"
  10231. ],
  10232. "authors": [
  10233. {
  10234. "name": "Christian Lück",
  10235. "email": "christian@clue.engineering",
  10236. "homepage": "https://clue.engineering/"
  10237. },
  10238. {
  10239. "name": "Cees-Jan Kiewiet",
  10240. "email": "reactphp@ceesjankiewiet.nl",
  10241. "homepage": "https://wyrihaximus.net/"
  10242. },
  10243. {
  10244. "name": "Jan Sorgalla",
  10245. "email": "jsorgalla@gmail.com",
  10246. "homepage": "https://sorgalla.com/"
  10247. },
  10248. {
  10249. "name": "Chris Boden",
  10250. "email": "cboden@gmail.com",
  10251. "homepage": "https://cboden.dev/"
  10252. }
  10253. ],
  10254. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10255. "keywords": [
  10256. "Connection",
  10257. "Socket",
  10258. "async",
  10259. "reactphp",
  10260. "stream"
  10261. ],
  10262. "support": {
  10263. "issues": "https://github.com/reactphp/socket/issues",
  10264. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10265. },
  10266. "funding": [
  10267. {
  10268. "url": "https://opencollective.com/reactphp",
  10269. "type": "open_collective"
  10270. }
  10271. ],
  10272. "time": "2024-07-26T10:38:09+00:00"
  10273. },
  10274. {
  10275. "name": "react/stream",
  10276. "version": "1.x-dev",
  10277. "source": {
  10278. "type": "git",
  10279. "url": "https://github.com/reactphp/stream.git",
  10280. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10281. },
  10282. "dist": {
  10283. "type": "zip",
  10284. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10285. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10286. "shasum": "",
  10287. "mirrors": [
  10288. {
  10289. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10290. "preferred": true
  10291. }
  10292. ]
  10293. },
  10294. "require": {
  10295. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10296. "php": ">=5.3.8",
  10297. "react/event-loop": "^1.2"
  10298. },
  10299. "require-dev": {
  10300. "clue/stream-filter": "~1.2",
  10301. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10302. },
  10303. "type": "library",
  10304. "autoload": {
  10305. "psr-4": {
  10306. "React\\Stream\\": "src/"
  10307. }
  10308. },
  10309. "notification-url": "https://packagist.org/downloads/",
  10310. "license": [
  10311. "MIT"
  10312. ],
  10313. "authors": [
  10314. {
  10315. "name": "Christian Lück",
  10316. "email": "christian@clue.engineering",
  10317. "homepage": "https://clue.engineering/"
  10318. },
  10319. {
  10320. "name": "Cees-Jan Kiewiet",
  10321. "email": "reactphp@ceesjankiewiet.nl",
  10322. "homepage": "https://wyrihaximus.net/"
  10323. },
  10324. {
  10325. "name": "Jan Sorgalla",
  10326. "email": "jsorgalla@gmail.com",
  10327. "homepage": "https://sorgalla.com/"
  10328. },
  10329. {
  10330. "name": "Chris Boden",
  10331. "email": "cboden@gmail.com",
  10332. "homepage": "https://cboden.dev/"
  10333. }
  10334. ],
  10335. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10336. "keywords": [
  10337. "event-driven",
  10338. "io",
  10339. "non-blocking",
  10340. "pipe",
  10341. "reactphp",
  10342. "readable",
  10343. "stream",
  10344. "writable"
  10345. ],
  10346. "support": {
  10347. "issues": "https://github.com/reactphp/stream/issues",
  10348. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10349. },
  10350. "funding": [
  10351. {
  10352. "url": "https://opencollective.com/reactphp",
  10353. "type": "open_collective"
  10354. }
  10355. ],
  10356. "time": "2024-06-11T12:45:25+00:00"
  10357. },
  10358. {
  10359. "name": "sebastian/cli-parser",
  10360. "version": "2.0.1",
  10361. "source": {
  10362. "type": "git",
  10363. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10364. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10365. },
  10366. "dist": {
  10367. "type": "zip",
  10368. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10369. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10370. "shasum": "",
  10371. "mirrors": [
  10372. {
  10373. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10374. "preferred": true
  10375. }
  10376. ]
  10377. },
  10378. "require": {
  10379. "php": ">=8.1"
  10380. },
  10381. "require-dev": {
  10382. "phpunit/phpunit": "^10.0"
  10383. },
  10384. "type": "library",
  10385. "extra": {
  10386. "branch-alias": {
  10387. "dev-main": "2.0-dev"
  10388. }
  10389. },
  10390. "autoload": {
  10391. "classmap": [
  10392. "src/"
  10393. ]
  10394. },
  10395. "notification-url": "https://packagist.org/downloads/",
  10396. "license": [
  10397. "BSD-3-Clause"
  10398. ],
  10399. "authors": [
  10400. {
  10401. "name": "Sebastian Bergmann",
  10402. "email": "sebastian@phpunit.de",
  10403. "role": "lead"
  10404. }
  10405. ],
  10406. "description": "Library for parsing CLI options",
  10407. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10408. "support": {
  10409. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10410. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10411. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10412. },
  10413. "funding": [
  10414. {
  10415. "url": "https://github.com/sebastianbergmann",
  10416. "type": "github"
  10417. }
  10418. ],
  10419. "time": "2024-03-02T07:12:49+00:00"
  10420. },
  10421. {
  10422. "name": "sebastian/code-unit",
  10423. "version": "2.0.0",
  10424. "source": {
  10425. "type": "git",
  10426. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10427. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10428. },
  10429. "dist": {
  10430. "type": "zip",
  10431. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10432. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10433. "shasum": "",
  10434. "mirrors": [
  10435. {
  10436. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10437. "preferred": true
  10438. }
  10439. ]
  10440. },
  10441. "require": {
  10442. "php": ">=8.1"
  10443. },
  10444. "require-dev": {
  10445. "phpunit/phpunit": "^10.0"
  10446. },
  10447. "type": "library",
  10448. "extra": {
  10449. "branch-alias": {
  10450. "dev-main": "2.0-dev"
  10451. }
  10452. },
  10453. "autoload": {
  10454. "classmap": [
  10455. "src/"
  10456. ]
  10457. },
  10458. "notification-url": "https://packagist.org/downloads/",
  10459. "license": [
  10460. "BSD-3-Clause"
  10461. ],
  10462. "authors": [
  10463. {
  10464. "name": "Sebastian Bergmann",
  10465. "email": "sebastian@phpunit.de",
  10466. "role": "lead"
  10467. }
  10468. ],
  10469. "description": "Collection of value objects that represent the PHP code units",
  10470. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10471. "support": {
  10472. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10473. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10474. },
  10475. "funding": [
  10476. {
  10477. "url": "https://github.com/sebastianbergmann",
  10478. "type": "github"
  10479. }
  10480. ],
  10481. "time": "2023-02-03T06:58:43+00:00"
  10482. },
  10483. {
  10484. "name": "sebastian/code-unit-reverse-lookup",
  10485. "version": "3.0.0",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10489. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10494. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10495. "shasum": "",
  10496. "mirrors": [
  10497. {
  10498. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10499. "preferred": true
  10500. }
  10501. ]
  10502. },
  10503. "require": {
  10504. "php": ">=8.1"
  10505. },
  10506. "require-dev": {
  10507. "phpunit/phpunit": "^10.0"
  10508. },
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-main": "3.0-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "classmap": [
  10517. "src/"
  10518. ]
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "BSD-3-Clause"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "Sebastian Bergmann",
  10527. "email": "sebastian@phpunit.de"
  10528. }
  10529. ],
  10530. "description": "Looks up which function or method a line of code belongs to",
  10531. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10532. "support": {
  10533. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10534. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10535. },
  10536. "funding": [
  10537. {
  10538. "url": "https://github.com/sebastianbergmann",
  10539. "type": "github"
  10540. }
  10541. ],
  10542. "time": "2023-02-03T06:59:15+00:00"
  10543. },
  10544. {
  10545. "name": "sebastian/comparator",
  10546. "version": "5.0.3",
  10547. "source": {
  10548. "type": "git",
  10549. "url": "https://github.com/sebastianbergmann/comparator.git",
  10550. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10551. },
  10552. "dist": {
  10553. "type": "zip",
  10554. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10555. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10556. "shasum": "",
  10557. "mirrors": [
  10558. {
  10559. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10560. "preferred": true
  10561. }
  10562. ]
  10563. },
  10564. "require": {
  10565. "ext-dom": "*",
  10566. "ext-mbstring": "*",
  10567. "php": ">=8.1",
  10568. "sebastian/diff": "^5.0",
  10569. "sebastian/exporter": "^5.0"
  10570. },
  10571. "require-dev": {
  10572. "phpunit/phpunit": "^10.5"
  10573. },
  10574. "type": "library",
  10575. "extra": {
  10576. "branch-alias": {
  10577. "dev-main": "5.0-dev"
  10578. }
  10579. },
  10580. "autoload": {
  10581. "classmap": [
  10582. "src/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "BSD-3-Clause"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Sebastian Bergmann",
  10592. "email": "sebastian@phpunit.de"
  10593. },
  10594. {
  10595. "name": "Jeff Welch",
  10596. "email": "whatthejeff@gmail.com"
  10597. },
  10598. {
  10599. "name": "Volker Dusch",
  10600. "email": "github@wallbash.com"
  10601. },
  10602. {
  10603. "name": "Bernhard Schussek",
  10604. "email": "bschussek@2bepublished.at"
  10605. }
  10606. ],
  10607. "description": "Provides the functionality to compare PHP values for equality",
  10608. "homepage": "https://github.com/sebastianbergmann/comparator",
  10609. "keywords": [
  10610. "comparator",
  10611. "compare",
  10612. "equality"
  10613. ],
  10614. "support": {
  10615. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10616. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10617. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10618. },
  10619. "funding": [
  10620. {
  10621. "url": "https://github.com/sebastianbergmann",
  10622. "type": "github"
  10623. }
  10624. ],
  10625. "time": "2024-10-18T14:56:07+00:00"
  10626. },
  10627. {
  10628. "name": "sebastian/complexity",
  10629. "version": "3.2.0",
  10630. "source": {
  10631. "type": "git",
  10632. "url": "https://github.com/sebastianbergmann/complexity.git",
  10633. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10634. },
  10635. "dist": {
  10636. "type": "zip",
  10637. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10638. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10639. "shasum": "",
  10640. "mirrors": [
  10641. {
  10642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10643. "preferred": true
  10644. }
  10645. ]
  10646. },
  10647. "require": {
  10648. "nikic/php-parser": "^4.18 || ^5.0",
  10649. "php": ">=8.1"
  10650. },
  10651. "require-dev": {
  10652. "phpunit/phpunit": "^10.0"
  10653. },
  10654. "type": "library",
  10655. "extra": {
  10656. "branch-alias": {
  10657. "dev-main": "3.2-dev"
  10658. }
  10659. },
  10660. "autoload": {
  10661. "classmap": [
  10662. "src/"
  10663. ]
  10664. },
  10665. "notification-url": "https://packagist.org/downloads/",
  10666. "license": [
  10667. "BSD-3-Clause"
  10668. ],
  10669. "authors": [
  10670. {
  10671. "name": "Sebastian Bergmann",
  10672. "email": "sebastian@phpunit.de",
  10673. "role": "lead"
  10674. }
  10675. ],
  10676. "description": "Library for calculating the complexity of PHP code units",
  10677. "homepage": "https://github.com/sebastianbergmann/complexity",
  10678. "support": {
  10679. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10680. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10681. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10682. },
  10683. "funding": [
  10684. {
  10685. "url": "https://github.com/sebastianbergmann",
  10686. "type": "github"
  10687. }
  10688. ],
  10689. "time": "2023-12-21T08:37:17+00:00"
  10690. },
  10691. {
  10692. "name": "sebastian/diff",
  10693. "version": "5.1.1",
  10694. "source": {
  10695. "type": "git",
  10696. "url": "https://github.com/sebastianbergmann/diff.git",
  10697. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10698. },
  10699. "dist": {
  10700. "type": "zip",
  10701. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10702. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10703. "shasum": "",
  10704. "mirrors": [
  10705. {
  10706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10707. "preferred": true
  10708. }
  10709. ]
  10710. },
  10711. "require": {
  10712. "php": ">=8.1"
  10713. },
  10714. "require-dev": {
  10715. "phpunit/phpunit": "^10.0",
  10716. "symfony/process": "^6.4"
  10717. },
  10718. "type": "library",
  10719. "extra": {
  10720. "branch-alias": {
  10721. "dev-main": "5.1-dev"
  10722. }
  10723. },
  10724. "autoload": {
  10725. "classmap": [
  10726. "src/"
  10727. ]
  10728. },
  10729. "notification-url": "https://packagist.org/downloads/",
  10730. "license": [
  10731. "BSD-3-Clause"
  10732. ],
  10733. "authors": [
  10734. {
  10735. "name": "Sebastian Bergmann",
  10736. "email": "sebastian@phpunit.de"
  10737. },
  10738. {
  10739. "name": "Kore Nordmann",
  10740. "email": "mail@kore-nordmann.de"
  10741. }
  10742. ],
  10743. "description": "Diff implementation",
  10744. "homepage": "https://github.com/sebastianbergmann/diff",
  10745. "keywords": [
  10746. "diff",
  10747. "udiff",
  10748. "unidiff",
  10749. "unified diff"
  10750. ],
  10751. "support": {
  10752. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10753. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10754. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10755. },
  10756. "funding": [
  10757. {
  10758. "url": "https://github.com/sebastianbergmann",
  10759. "type": "github"
  10760. }
  10761. ],
  10762. "time": "2024-03-02T07:15:17+00:00"
  10763. },
  10764. {
  10765. "name": "sebastian/environment",
  10766. "version": "6.1.0",
  10767. "source": {
  10768. "type": "git",
  10769. "url": "https://github.com/sebastianbergmann/environment.git",
  10770. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10771. },
  10772. "dist": {
  10773. "type": "zip",
  10774. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10775. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10776. "shasum": "",
  10777. "mirrors": [
  10778. {
  10779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10780. "preferred": true
  10781. }
  10782. ]
  10783. },
  10784. "require": {
  10785. "php": ">=8.1"
  10786. },
  10787. "require-dev": {
  10788. "phpunit/phpunit": "^10.0"
  10789. },
  10790. "suggest": {
  10791. "ext-posix": "*"
  10792. },
  10793. "type": "library",
  10794. "extra": {
  10795. "branch-alias": {
  10796. "dev-main": "6.1-dev"
  10797. }
  10798. },
  10799. "autoload": {
  10800. "classmap": [
  10801. "src/"
  10802. ]
  10803. },
  10804. "notification-url": "https://packagist.org/downloads/",
  10805. "license": [
  10806. "BSD-3-Clause"
  10807. ],
  10808. "authors": [
  10809. {
  10810. "name": "Sebastian Bergmann",
  10811. "email": "sebastian@phpunit.de"
  10812. }
  10813. ],
  10814. "description": "Provides functionality to handle HHVM/PHP environments",
  10815. "homepage": "https://github.com/sebastianbergmann/environment",
  10816. "keywords": [
  10817. "Xdebug",
  10818. "environment",
  10819. "hhvm"
  10820. ],
  10821. "support": {
  10822. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10823. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10824. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10825. },
  10826. "funding": [
  10827. {
  10828. "url": "https://github.com/sebastianbergmann",
  10829. "type": "github"
  10830. }
  10831. ],
  10832. "time": "2024-03-23T08:47:14+00:00"
  10833. },
  10834. {
  10835. "name": "sebastian/exporter",
  10836. "version": "5.1.2",
  10837. "source": {
  10838. "type": "git",
  10839. "url": "https://github.com/sebastianbergmann/exporter.git",
  10840. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10841. },
  10842. "dist": {
  10843. "type": "zip",
  10844. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10845. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10846. "shasum": "",
  10847. "mirrors": [
  10848. {
  10849. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10850. "preferred": true
  10851. }
  10852. ]
  10853. },
  10854. "require": {
  10855. "ext-mbstring": "*",
  10856. "php": ">=8.1",
  10857. "sebastian/recursion-context": "^5.0"
  10858. },
  10859. "require-dev": {
  10860. "phpunit/phpunit": "^10.0"
  10861. },
  10862. "type": "library",
  10863. "extra": {
  10864. "branch-alias": {
  10865. "dev-main": "5.1-dev"
  10866. }
  10867. },
  10868. "autoload": {
  10869. "classmap": [
  10870. "src/"
  10871. ]
  10872. },
  10873. "notification-url": "https://packagist.org/downloads/",
  10874. "license": [
  10875. "BSD-3-Clause"
  10876. ],
  10877. "authors": [
  10878. {
  10879. "name": "Sebastian Bergmann",
  10880. "email": "sebastian@phpunit.de"
  10881. },
  10882. {
  10883. "name": "Jeff Welch",
  10884. "email": "whatthejeff@gmail.com"
  10885. },
  10886. {
  10887. "name": "Volker Dusch",
  10888. "email": "github@wallbash.com"
  10889. },
  10890. {
  10891. "name": "Adam Harvey",
  10892. "email": "aharvey@php.net"
  10893. },
  10894. {
  10895. "name": "Bernhard Schussek",
  10896. "email": "bschussek@gmail.com"
  10897. }
  10898. ],
  10899. "description": "Provides the functionality to export PHP variables for visualization",
  10900. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10901. "keywords": [
  10902. "export",
  10903. "exporter"
  10904. ],
  10905. "support": {
  10906. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10907. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10908. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10909. },
  10910. "funding": [
  10911. {
  10912. "url": "https://github.com/sebastianbergmann",
  10913. "type": "github"
  10914. }
  10915. ],
  10916. "time": "2024-03-02T07:17:12+00:00"
  10917. },
  10918. {
  10919. "name": "sebastian/global-state",
  10920. "version": "6.0.2",
  10921. "source": {
  10922. "type": "git",
  10923. "url": "https://github.com/sebastianbergmann/global-state.git",
  10924. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10925. },
  10926. "dist": {
  10927. "type": "zip",
  10928. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10929. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10930. "shasum": "",
  10931. "mirrors": [
  10932. {
  10933. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10934. "preferred": true
  10935. }
  10936. ]
  10937. },
  10938. "require": {
  10939. "php": ">=8.1",
  10940. "sebastian/object-reflector": "^3.0",
  10941. "sebastian/recursion-context": "^5.0"
  10942. },
  10943. "require-dev": {
  10944. "ext-dom": "*",
  10945. "phpunit/phpunit": "^10.0"
  10946. },
  10947. "type": "library",
  10948. "extra": {
  10949. "branch-alias": {
  10950. "dev-main": "6.0-dev"
  10951. }
  10952. },
  10953. "autoload": {
  10954. "classmap": [
  10955. "src/"
  10956. ]
  10957. },
  10958. "notification-url": "https://packagist.org/downloads/",
  10959. "license": [
  10960. "BSD-3-Clause"
  10961. ],
  10962. "authors": [
  10963. {
  10964. "name": "Sebastian Bergmann",
  10965. "email": "sebastian@phpunit.de"
  10966. }
  10967. ],
  10968. "description": "Snapshotting of global state",
  10969. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10970. "keywords": [
  10971. "global state"
  10972. ],
  10973. "support": {
  10974. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10975. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10976. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10977. },
  10978. "funding": [
  10979. {
  10980. "url": "https://github.com/sebastianbergmann",
  10981. "type": "github"
  10982. }
  10983. ],
  10984. "time": "2024-03-02T07:19:19+00:00"
  10985. },
  10986. {
  10987. "name": "sebastian/lines-of-code",
  10988. "version": "2.0.2",
  10989. "source": {
  10990. "type": "git",
  10991. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10992. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10993. },
  10994. "dist": {
  10995. "type": "zip",
  10996. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10997. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10998. "shasum": "",
  10999. "mirrors": [
  11000. {
  11001. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11002. "preferred": true
  11003. }
  11004. ]
  11005. },
  11006. "require": {
  11007. "nikic/php-parser": "^4.18 || ^5.0",
  11008. "php": ">=8.1"
  11009. },
  11010. "require-dev": {
  11011. "phpunit/phpunit": "^10.0"
  11012. },
  11013. "type": "library",
  11014. "extra": {
  11015. "branch-alias": {
  11016. "dev-main": "2.0-dev"
  11017. }
  11018. },
  11019. "autoload": {
  11020. "classmap": [
  11021. "src/"
  11022. ]
  11023. },
  11024. "notification-url": "https://packagist.org/downloads/",
  11025. "license": [
  11026. "BSD-3-Clause"
  11027. ],
  11028. "authors": [
  11029. {
  11030. "name": "Sebastian Bergmann",
  11031. "email": "sebastian@phpunit.de",
  11032. "role": "lead"
  11033. }
  11034. ],
  11035. "description": "Library for counting the lines of code in PHP source code",
  11036. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11037. "support": {
  11038. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11039. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11040. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11041. },
  11042. "funding": [
  11043. {
  11044. "url": "https://github.com/sebastianbergmann",
  11045. "type": "github"
  11046. }
  11047. ],
  11048. "time": "2023-12-21T08:38:20+00:00"
  11049. },
  11050. {
  11051. "name": "sebastian/object-enumerator",
  11052. "version": "5.0.0",
  11053. "source": {
  11054. "type": "git",
  11055. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11056. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11057. },
  11058. "dist": {
  11059. "type": "zip",
  11060. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11061. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11062. "shasum": "",
  11063. "mirrors": [
  11064. {
  11065. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11066. "preferred": true
  11067. }
  11068. ]
  11069. },
  11070. "require": {
  11071. "php": ">=8.1",
  11072. "sebastian/object-reflector": "^3.0",
  11073. "sebastian/recursion-context": "^5.0"
  11074. },
  11075. "require-dev": {
  11076. "phpunit/phpunit": "^10.0"
  11077. },
  11078. "type": "library",
  11079. "extra": {
  11080. "branch-alias": {
  11081. "dev-main": "5.0-dev"
  11082. }
  11083. },
  11084. "autoload": {
  11085. "classmap": [
  11086. "src/"
  11087. ]
  11088. },
  11089. "notification-url": "https://packagist.org/downloads/",
  11090. "license": [
  11091. "BSD-3-Clause"
  11092. ],
  11093. "authors": [
  11094. {
  11095. "name": "Sebastian Bergmann",
  11096. "email": "sebastian@phpunit.de"
  11097. }
  11098. ],
  11099. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11100. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11101. "support": {
  11102. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11103. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11104. },
  11105. "funding": [
  11106. {
  11107. "url": "https://github.com/sebastianbergmann",
  11108. "type": "github"
  11109. }
  11110. ],
  11111. "time": "2023-02-03T07:08:32+00:00"
  11112. },
  11113. {
  11114. "name": "sebastian/object-reflector",
  11115. "version": "3.0.0",
  11116. "source": {
  11117. "type": "git",
  11118. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11119. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11120. },
  11121. "dist": {
  11122. "type": "zip",
  11123. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11124. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11125. "shasum": "",
  11126. "mirrors": [
  11127. {
  11128. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11129. "preferred": true
  11130. }
  11131. ]
  11132. },
  11133. "require": {
  11134. "php": ">=8.1"
  11135. },
  11136. "require-dev": {
  11137. "phpunit/phpunit": "^10.0"
  11138. },
  11139. "type": "library",
  11140. "extra": {
  11141. "branch-alias": {
  11142. "dev-main": "3.0-dev"
  11143. }
  11144. },
  11145. "autoload": {
  11146. "classmap": [
  11147. "src/"
  11148. ]
  11149. },
  11150. "notification-url": "https://packagist.org/downloads/",
  11151. "license": [
  11152. "BSD-3-Clause"
  11153. ],
  11154. "authors": [
  11155. {
  11156. "name": "Sebastian Bergmann",
  11157. "email": "sebastian@phpunit.de"
  11158. }
  11159. ],
  11160. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11161. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11162. "support": {
  11163. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11164. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11165. },
  11166. "funding": [
  11167. {
  11168. "url": "https://github.com/sebastianbergmann",
  11169. "type": "github"
  11170. }
  11171. ],
  11172. "time": "2023-02-03T07:06:18+00:00"
  11173. },
  11174. {
  11175. "name": "sebastian/recursion-context",
  11176. "version": "5.0.0",
  11177. "source": {
  11178. "type": "git",
  11179. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11180. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11181. },
  11182. "dist": {
  11183. "type": "zip",
  11184. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11185. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11186. "shasum": "",
  11187. "mirrors": [
  11188. {
  11189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11190. "preferred": true
  11191. }
  11192. ]
  11193. },
  11194. "require": {
  11195. "php": ">=8.1"
  11196. },
  11197. "require-dev": {
  11198. "phpunit/phpunit": "^10.0"
  11199. },
  11200. "type": "library",
  11201. "extra": {
  11202. "branch-alias": {
  11203. "dev-main": "5.0-dev"
  11204. }
  11205. },
  11206. "autoload": {
  11207. "classmap": [
  11208. "src/"
  11209. ]
  11210. },
  11211. "notification-url": "https://packagist.org/downloads/",
  11212. "license": [
  11213. "BSD-3-Clause"
  11214. ],
  11215. "authors": [
  11216. {
  11217. "name": "Sebastian Bergmann",
  11218. "email": "sebastian@phpunit.de"
  11219. },
  11220. {
  11221. "name": "Jeff Welch",
  11222. "email": "whatthejeff@gmail.com"
  11223. },
  11224. {
  11225. "name": "Adam Harvey",
  11226. "email": "aharvey@php.net"
  11227. }
  11228. ],
  11229. "description": "Provides functionality to recursively process PHP variables",
  11230. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11231. "support": {
  11232. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11233. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11234. },
  11235. "funding": [
  11236. {
  11237. "url": "https://github.com/sebastianbergmann",
  11238. "type": "github"
  11239. }
  11240. ],
  11241. "time": "2023-02-03T07:05:40+00:00"
  11242. },
  11243. {
  11244. "name": "sebastian/type",
  11245. "version": "4.0.0",
  11246. "source": {
  11247. "type": "git",
  11248. "url": "https://github.com/sebastianbergmann/type.git",
  11249. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11250. },
  11251. "dist": {
  11252. "type": "zip",
  11253. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11254. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11255. "shasum": "",
  11256. "mirrors": [
  11257. {
  11258. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11259. "preferred": true
  11260. }
  11261. ]
  11262. },
  11263. "require": {
  11264. "php": ">=8.1"
  11265. },
  11266. "require-dev": {
  11267. "phpunit/phpunit": "^10.0"
  11268. },
  11269. "type": "library",
  11270. "extra": {
  11271. "branch-alias": {
  11272. "dev-main": "4.0-dev"
  11273. }
  11274. },
  11275. "autoload": {
  11276. "classmap": [
  11277. "src/"
  11278. ]
  11279. },
  11280. "notification-url": "https://packagist.org/downloads/",
  11281. "license": [
  11282. "BSD-3-Clause"
  11283. ],
  11284. "authors": [
  11285. {
  11286. "name": "Sebastian Bergmann",
  11287. "email": "sebastian@phpunit.de",
  11288. "role": "lead"
  11289. }
  11290. ],
  11291. "description": "Collection of value objects that represent the types of the PHP type system",
  11292. "homepage": "https://github.com/sebastianbergmann/type",
  11293. "support": {
  11294. "issues": "https://github.com/sebastianbergmann/type/issues",
  11295. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11296. },
  11297. "funding": [
  11298. {
  11299. "url": "https://github.com/sebastianbergmann",
  11300. "type": "github"
  11301. }
  11302. ],
  11303. "time": "2023-02-03T07:10:45+00:00"
  11304. },
  11305. {
  11306. "name": "sebastian/version",
  11307. "version": "4.0.1",
  11308. "source": {
  11309. "type": "git",
  11310. "url": "https://github.com/sebastianbergmann/version.git",
  11311. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11312. },
  11313. "dist": {
  11314. "type": "zip",
  11315. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11316. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11317. "shasum": "",
  11318. "mirrors": [
  11319. {
  11320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11321. "preferred": true
  11322. }
  11323. ]
  11324. },
  11325. "require": {
  11326. "php": ">=8.1"
  11327. },
  11328. "type": "library",
  11329. "extra": {
  11330. "branch-alias": {
  11331. "dev-main": "4.0-dev"
  11332. }
  11333. },
  11334. "autoload": {
  11335. "classmap": [
  11336. "src/"
  11337. ]
  11338. },
  11339. "notification-url": "https://packagist.org/downloads/",
  11340. "license": [
  11341. "BSD-3-Clause"
  11342. ],
  11343. "authors": [
  11344. {
  11345. "name": "Sebastian Bergmann",
  11346. "email": "sebastian@phpunit.de",
  11347. "role": "lead"
  11348. }
  11349. ],
  11350. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11351. "homepage": "https://github.com/sebastianbergmann/version",
  11352. "support": {
  11353. "issues": "https://github.com/sebastianbergmann/version/issues",
  11354. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11355. },
  11356. "funding": [
  11357. {
  11358. "url": "https://github.com/sebastianbergmann",
  11359. "type": "github"
  11360. }
  11361. ],
  11362. "time": "2023-02-07T11:34:05+00:00"
  11363. },
  11364. {
  11365. "name": "swoole/ide-helper",
  11366. "version": "5.1.7",
  11367. "source": {
  11368. "type": "git",
  11369. "url": "https://github.com/swoole/ide-helper.git",
  11370. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  11371. },
  11372. "dist": {
  11373. "type": "zip",
  11374. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11375. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  11376. "shasum": "",
  11377. "mirrors": [
  11378. {
  11379. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11380. "preferred": true
  11381. }
  11382. ]
  11383. },
  11384. "type": "library",
  11385. "notification-url": "https://packagist.org/downloads/",
  11386. "license": [
  11387. "Apache-2.0"
  11388. ],
  11389. "authors": [
  11390. {
  11391. "name": "Team Swoole",
  11392. "email": "team@swoole.com"
  11393. }
  11394. ],
  11395. "description": "IDE help files for Swoole.",
  11396. "support": {
  11397. "issues": "https://github.com/swoole/ide-helper/issues",
  11398. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  11399. },
  11400. "time": "2025-03-22T23:53:02+00:00"
  11401. },
  11402. {
  11403. "name": "symfony/event-dispatcher",
  11404. "version": "v6.4.13",
  11405. "source": {
  11406. "type": "git",
  11407. "url": "https://github.com/symfony/event-dispatcher.git",
  11408. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11409. },
  11410. "dist": {
  11411. "type": "zip",
  11412. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11413. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11414. "shasum": "",
  11415. "mirrors": [
  11416. {
  11417. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11418. "preferred": true
  11419. }
  11420. ]
  11421. },
  11422. "require": {
  11423. "php": ">=8.1",
  11424. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11425. },
  11426. "conflict": {
  11427. "symfony/dependency-injection": "<5.4",
  11428. "symfony/service-contracts": "<2.5"
  11429. },
  11430. "provide": {
  11431. "psr/event-dispatcher-implementation": "1.0",
  11432. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11433. },
  11434. "require-dev": {
  11435. "psr/log": "^1|^2|^3",
  11436. "symfony/config": "^5.4|^6.0|^7.0",
  11437. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11438. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11439. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11440. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11441. "symfony/service-contracts": "^2.5|^3",
  11442. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11443. },
  11444. "type": "library",
  11445. "autoload": {
  11446. "psr-4": {
  11447. "Symfony\\Component\\EventDispatcher\\": ""
  11448. },
  11449. "exclude-from-classmap": [
  11450. "/Tests/"
  11451. ]
  11452. },
  11453. "notification-url": "https://packagist.org/downloads/",
  11454. "license": [
  11455. "MIT"
  11456. ],
  11457. "authors": [
  11458. {
  11459. "name": "Fabien Potencier",
  11460. "email": "fabien@symfony.com"
  11461. },
  11462. {
  11463. "name": "Symfony Community",
  11464. "homepage": "https://symfony.com/contributors"
  11465. }
  11466. ],
  11467. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11468. "homepage": "https://symfony.com",
  11469. "support": {
  11470. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11471. },
  11472. "funding": [
  11473. {
  11474. "url": "https://symfony.com/sponsor",
  11475. "type": "custom"
  11476. },
  11477. {
  11478. "url": "https://github.com/fabpot",
  11479. "type": "github"
  11480. },
  11481. {
  11482. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11483. "type": "tidelift"
  11484. }
  11485. ],
  11486. "time": "2024-09-25T14:18:03+00:00"
  11487. },
  11488. {
  11489. "name": "symfony/event-dispatcher-contracts",
  11490. "version": "v3.5.1",
  11491. "source": {
  11492. "type": "git",
  11493. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11494. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11495. },
  11496. "dist": {
  11497. "type": "zip",
  11498. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11499. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11500. "shasum": "",
  11501. "mirrors": [
  11502. {
  11503. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11504. "preferred": true
  11505. }
  11506. ]
  11507. },
  11508. "require": {
  11509. "php": ">=8.1",
  11510. "psr/event-dispatcher": "^1"
  11511. },
  11512. "type": "library",
  11513. "extra": {
  11514. "thanks": {
  11515. "url": "https://github.com/symfony/contracts",
  11516. "name": "symfony/contracts"
  11517. },
  11518. "branch-alias": {
  11519. "dev-main": "3.5-dev"
  11520. }
  11521. },
  11522. "autoload": {
  11523. "psr-4": {
  11524. "Symfony\\Contracts\\EventDispatcher\\": ""
  11525. }
  11526. },
  11527. "notification-url": "https://packagist.org/downloads/",
  11528. "license": [
  11529. "MIT"
  11530. ],
  11531. "authors": [
  11532. {
  11533. "name": "Nicolas Grekas",
  11534. "email": "p@tchwork.com"
  11535. },
  11536. {
  11537. "name": "Symfony Community",
  11538. "homepage": "https://symfony.com/contributors"
  11539. }
  11540. ],
  11541. "description": "Generic abstractions related to dispatching event",
  11542. "homepage": "https://symfony.com",
  11543. "keywords": [
  11544. "abstractions",
  11545. "contracts",
  11546. "decoupling",
  11547. "interfaces",
  11548. "interoperability",
  11549. "standards"
  11550. ],
  11551. "support": {
  11552. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11553. },
  11554. "funding": [
  11555. {
  11556. "url": "https://symfony.com/sponsor",
  11557. "type": "custom"
  11558. },
  11559. {
  11560. "url": "https://github.com/fabpot",
  11561. "type": "github"
  11562. },
  11563. {
  11564. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11565. "type": "tidelift"
  11566. }
  11567. ],
  11568. "time": "2024-09-25T14:20:29+00:00"
  11569. },
  11570. {
  11571. "name": "symfony/filesystem",
  11572. "version": "v6.4.13",
  11573. "source": {
  11574. "type": "git",
  11575. "url": "https://github.com/symfony/filesystem.git",
  11576. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11577. },
  11578. "dist": {
  11579. "type": "zip",
  11580. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11581. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11582. "shasum": "",
  11583. "mirrors": [
  11584. {
  11585. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11586. "preferred": true
  11587. }
  11588. ]
  11589. },
  11590. "require": {
  11591. "php": ">=8.1",
  11592. "symfony/polyfill-ctype": "~1.8",
  11593. "symfony/polyfill-mbstring": "~1.8"
  11594. },
  11595. "require-dev": {
  11596. "symfony/process": "^5.4|^6.4|^7.0"
  11597. },
  11598. "type": "library",
  11599. "autoload": {
  11600. "psr-4": {
  11601. "Symfony\\Component\\Filesystem\\": ""
  11602. },
  11603. "exclude-from-classmap": [
  11604. "/Tests/"
  11605. ]
  11606. },
  11607. "notification-url": "https://packagist.org/downloads/",
  11608. "license": [
  11609. "MIT"
  11610. ],
  11611. "authors": [
  11612. {
  11613. "name": "Fabien Potencier",
  11614. "email": "fabien@symfony.com"
  11615. },
  11616. {
  11617. "name": "Symfony Community",
  11618. "homepage": "https://symfony.com/contributors"
  11619. }
  11620. ],
  11621. "description": "Provides basic utilities for the filesystem",
  11622. "homepage": "https://symfony.com",
  11623. "support": {
  11624. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11625. },
  11626. "funding": [
  11627. {
  11628. "url": "https://symfony.com/sponsor",
  11629. "type": "custom"
  11630. },
  11631. {
  11632. "url": "https://github.com/fabpot",
  11633. "type": "github"
  11634. },
  11635. {
  11636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11637. "type": "tidelift"
  11638. }
  11639. ],
  11640. "time": "2024-10-25T15:07:50+00:00"
  11641. },
  11642. {
  11643. "name": "symfony/http-foundation",
  11644. "version": "v6.4.18",
  11645. "source": {
  11646. "type": "git",
  11647. "url": "https://github.com/symfony/http-foundation.git",
  11648. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db"
  11649. },
  11650. "dist": {
  11651. "type": "zip",
  11652. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11653. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  11654. "shasum": "",
  11655. "mirrors": [
  11656. {
  11657. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11658. "preferred": true
  11659. }
  11660. ]
  11661. },
  11662. "require": {
  11663. "php": ">=8.1",
  11664. "symfony/deprecation-contracts": "^2.5|^3",
  11665. "symfony/polyfill-mbstring": "~1.1",
  11666. "symfony/polyfill-php83": "^1.27"
  11667. },
  11668. "conflict": {
  11669. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11670. },
  11671. "require-dev": {
  11672. "doctrine/dbal": "^2.13.1|^3|^4",
  11673. "predis/predis": "^1.1|^2.0",
  11674. "symfony/cache": "^6.4.12|^7.1.5",
  11675. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11676. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11677. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11678. "symfony/mime": "^5.4|^6.0|^7.0",
  11679. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11680. },
  11681. "type": "library",
  11682. "autoload": {
  11683. "psr-4": {
  11684. "Symfony\\Component\\HttpFoundation\\": ""
  11685. },
  11686. "exclude-from-classmap": [
  11687. "/Tests/"
  11688. ]
  11689. },
  11690. "notification-url": "https://packagist.org/downloads/",
  11691. "license": [
  11692. "MIT"
  11693. ],
  11694. "authors": [
  11695. {
  11696. "name": "Fabien Potencier",
  11697. "email": "fabien@symfony.com"
  11698. },
  11699. {
  11700. "name": "Symfony Community",
  11701. "homepage": "https://symfony.com/contributors"
  11702. }
  11703. ],
  11704. "description": "Defines an object-oriented layer for the HTTP specification",
  11705. "homepage": "https://symfony.com",
  11706. "support": {
  11707. "source": "https://github.com/symfony/http-foundation/tree/v6.4.18"
  11708. },
  11709. "funding": [
  11710. {
  11711. "url": "https://symfony.com/sponsor",
  11712. "type": "custom"
  11713. },
  11714. {
  11715. "url": "https://github.com/fabpot",
  11716. "type": "github"
  11717. },
  11718. {
  11719. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11720. "type": "tidelift"
  11721. }
  11722. ],
  11723. "time": "2025-01-09T15:48:56+00:00"
  11724. },
  11725. {
  11726. "name": "symfony/options-resolver",
  11727. "version": "v6.4.13",
  11728. "source": {
  11729. "type": "git",
  11730. "url": "https://github.com/symfony/options-resolver.git",
  11731. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11732. },
  11733. "dist": {
  11734. "type": "zip",
  11735. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11736. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11737. "shasum": "",
  11738. "mirrors": [
  11739. {
  11740. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11741. "preferred": true
  11742. }
  11743. ]
  11744. },
  11745. "require": {
  11746. "php": ">=8.1",
  11747. "symfony/deprecation-contracts": "^2.5|^3"
  11748. },
  11749. "type": "library",
  11750. "autoload": {
  11751. "psr-4": {
  11752. "Symfony\\Component\\OptionsResolver\\": ""
  11753. },
  11754. "exclude-from-classmap": [
  11755. "/Tests/"
  11756. ]
  11757. },
  11758. "notification-url": "https://packagist.org/downloads/",
  11759. "license": [
  11760. "MIT"
  11761. ],
  11762. "authors": [
  11763. {
  11764. "name": "Fabien Potencier",
  11765. "email": "fabien@symfony.com"
  11766. },
  11767. {
  11768. "name": "Symfony Community",
  11769. "homepage": "https://symfony.com/contributors"
  11770. }
  11771. ],
  11772. "description": "Provides an improved replacement for the array_replace PHP function",
  11773. "homepage": "https://symfony.com",
  11774. "keywords": [
  11775. "config",
  11776. "configuration",
  11777. "options"
  11778. ],
  11779. "support": {
  11780. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11781. },
  11782. "funding": [
  11783. {
  11784. "url": "https://symfony.com/sponsor",
  11785. "type": "custom"
  11786. },
  11787. {
  11788. "url": "https://github.com/fabpot",
  11789. "type": "github"
  11790. },
  11791. {
  11792. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11793. "type": "tidelift"
  11794. }
  11795. ],
  11796. "time": "2024-09-25T14:18:03+00:00"
  11797. },
  11798. {
  11799. "name": "symfony/polyfill-php81",
  11800. "version": "v1.31.0",
  11801. "source": {
  11802. "type": "git",
  11803. "url": "https://github.com/symfony/polyfill-php81.git",
  11804. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11805. },
  11806. "dist": {
  11807. "type": "zip",
  11808. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11809. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11810. "shasum": "",
  11811. "mirrors": [
  11812. {
  11813. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11814. "preferred": true
  11815. }
  11816. ]
  11817. },
  11818. "require": {
  11819. "php": ">=7.2"
  11820. },
  11821. "type": "library",
  11822. "extra": {
  11823. "thanks": {
  11824. "url": "https://github.com/symfony/polyfill",
  11825. "name": "symfony/polyfill"
  11826. }
  11827. },
  11828. "autoload": {
  11829. "files": [
  11830. "bootstrap.php"
  11831. ],
  11832. "psr-4": {
  11833. "Symfony\\Polyfill\\Php81\\": ""
  11834. },
  11835. "classmap": [
  11836. "Resources/stubs"
  11837. ]
  11838. },
  11839. "notification-url": "https://packagist.org/downloads/",
  11840. "license": [
  11841. "MIT"
  11842. ],
  11843. "authors": [
  11844. {
  11845. "name": "Nicolas Grekas",
  11846. "email": "p@tchwork.com"
  11847. },
  11848. {
  11849. "name": "Symfony Community",
  11850. "homepage": "https://symfony.com/contributors"
  11851. }
  11852. ],
  11853. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11854. "homepage": "https://symfony.com",
  11855. "keywords": [
  11856. "compatibility",
  11857. "polyfill",
  11858. "portable",
  11859. "shim"
  11860. ],
  11861. "support": {
  11862. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11863. },
  11864. "funding": [
  11865. {
  11866. "url": "https://symfony.com/sponsor",
  11867. "type": "custom"
  11868. },
  11869. {
  11870. "url": "https://github.com/fabpot",
  11871. "type": "github"
  11872. },
  11873. {
  11874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11875. "type": "tidelift"
  11876. }
  11877. ],
  11878. "time": "2024-09-09T11:45:10+00:00"
  11879. },
  11880. {
  11881. "name": "symfony/polyfill-php83",
  11882. "version": "v1.31.0",
  11883. "source": {
  11884. "type": "git",
  11885. "url": "https://github.com/symfony/polyfill-php83.git",
  11886. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11887. },
  11888. "dist": {
  11889. "type": "zip",
  11890. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11891. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11892. "shasum": "",
  11893. "mirrors": [
  11894. {
  11895. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11896. "preferred": true
  11897. }
  11898. ]
  11899. },
  11900. "require": {
  11901. "php": ">=7.2"
  11902. },
  11903. "type": "library",
  11904. "extra": {
  11905. "thanks": {
  11906. "name": "symfony/polyfill",
  11907. "url": "https://github.com/symfony/polyfill"
  11908. }
  11909. },
  11910. "autoload": {
  11911. "files": [
  11912. "bootstrap.php"
  11913. ],
  11914. "psr-4": {
  11915. "Symfony\\Polyfill\\Php83\\": ""
  11916. },
  11917. "classmap": [
  11918. "Resources/stubs"
  11919. ]
  11920. },
  11921. "notification-url": "https://packagist.org/downloads/",
  11922. "license": [
  11923. "MIT"
  11924. ],
  11925. "authors": [
  11926. {
  11927. "name": "Nicolas Grekas",
  11928. "email": "p@tchwork.com"
  11929. },
  11930. {
  11931. "name": "Symfony Community",
  11932. "homepage": "https://symfony.com/contributors"
  11933. }
  11934. ],
  11935. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11936. "homepage": "https://symfony.com",
  11937. "keywords": [
  11938. "compatibility",
  11939. "polyfill",
  11940. "portable",
  11941. "shim"
  11942. ],
  11943. "support": {
  11944. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11945. },
  11946. "funding": [
  11947. {
  11948. "url": "https://symfony.com/sponsor",
  11949. "type": "custom"
  11950. },
  11951. {
  11952. "url": "https://github.com/fabpot",
  11953. "type": "github"
  11954. },
  11955. {
  11956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11957. "type": "tidelift"
  11958. }
  11959. ],
  11960. "time": "2024-09-09T11:45:10+00:00"
  11961. },
  11962. {
  11963. "name": "symfony/process",
  11964. "version": "v6.4.15",
  11965. "source": {
  11966. "type": "git",
  11967. "url": "https://github.com/symfony/process.git",
  11968. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11969. },
  11970. "dist": {
  11971. "type": "zip",
  11972. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11973. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11974. "shasum": "",
  11975. "mirrors": [
  11976. {
  11977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  11978. "preferred": true
  11979. }
  11980. ]
  11981. },
  11982. "require": {
  11983. "php": ">=8.1"
  11984. },
  11985. "type": "library",
  11986. "autoload": {
  11987. "psr-4": {
  11988. "Symfony\\Component\\Process\\": ""
  11989. },
  11990. "exclude-from-classmap": [
  11991. "/Tests/"
  11992. ]
  11993. },
  11994. "notification-url": "https://packagist.org/downloads/",
  11995. "license": [
  11996. "MIT"
  11997. ],
  11998. "authors": [
  11999. {
  12000. "name": "Fabien Potencier",
  12001. "email": "fabien@symfony.com"
  12002. },
  12003. {
  12004. "name": "Symfony Community",
  12005. "homepage": "https://symfony.com/contributors"
  12006. }
  12007. ],
  12008. "description": "Executes commands in sub-processes",
  12009. "homepage": "https://symfony.com",
  12010. "support": {
  12011. "source": "https://github.com/symfony/process/tree/v6.4.15"
  12012. },
  12013. "funding": [
  12014. {
  12015. "url": "https://symfony.com/sponsor",
  12016. "type": "custom"
  12017. },
  12018. {
  12019. "url": "https://github.com/fabpot",
  12020. "type": "github"
  12021. },
  12022. {
  12023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12024. "type": "tidelift"
  12025. }
  12026. ],
  12027. "time": "2024-11-06T14:19:14+00:00"
  12028. },
  12029. {
  12030. "name": "symfony/stopwatch",
  12031. "version": "v6.4.19",
  12032. "source": {
  12033. "type": "git",
  12034. "url": "https://github.com/symfony/stopwatch.git",
  12035. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  12036. },
  12037. "dist": {
  12038. "type": "zip",
  12039. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  12040. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  12041. "shasum": "",
  12042. "mirrors": [
  12043. {
  12044. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12045. "preferred": true
  12046. }
  12047. ]
  12048. },
  12049. "require": {
  12050. "php": ">=8.1",
  12051. "symfony/service-contracts": "^2.5|^3"
  12052. },
  12053. "type": "library",
  12054. "autoload": {
  12055. "psr-4": {
  12056. "Symfony\\Component\\Stopwatch\\": ""
  12057. },
  12058. "exclude-from-classmap": [
  12059. "/Tests/"
  12060. ]
  12061. },
  12062. "notification-url": "https://packagist.org/downloads/",
  12063. "license": [
  12064. "MIT"
  12065. ],
  12066. "authors": [
  12067. {
  12068. "name": "Fabien Potencier",
  12069. "email": "fabien@symfony.com"
  12070. },
  12071. {
  12072. "name": "Symfony Community",
  12073. "homepage": "https://symfony.com/contributors"
  12074. }
  12075. ],
  12076. "description": "Provides a way to profile code",
  12077. "homepage": "https://symfony.com",
  12078. "support": {
  12079. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  12080. },
  12081. "funding": [
  12082. {
  12083. "url": "https://symfony.com/sponsor",
  12084. "type": "custom"
  12085. },
  12086. {
  12087. "url": "https://github.com/fabpot",
  12088. "type": "github"
  12089. },
  12090. {
  12091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12092. "type": "tidelift"
  12093. }
  12094. ],
  12095. "time": "2025-02-21T10:06:30+00:00"
  12096. },
  12097. {
  12098. "name": "theseer/tokenizer",
  12099. "version": "1.2.3",
  12100. "source": {
  12101. "type": "git",
  12102. "url": "https://github.com/theseer/tokenizer.git",
  12103. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12104. },
  12105. "dist": {
  12106. "type": "zip",
  12107. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12108. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12109. "shasum": "",
  12110. "mirrors": [
  12111. {
  12112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  12113. "preferred": true
  12114. }
  12115. ]
  12116. },
  12117. "require": {
  12118. "ext-dom": "*",
  12119. "ext-tokenizer": "*",
  12120. "ext-xmlwriter": "*",
  12121. "php": "^7.2 || ^8.0"
  12122. },
  12123. "type": "library",
  12124. "autoload": {
  12125. "classmap": [
  12126. "src/"
  12127. ]
  12128. },
  12129. "notification-url": "https://packagist.org/downloads/",
  12130. "license": [
  12131. "BSD-3-Clause"
  12132. ],
  12133. "authors": [
  12134. {
  12135. "name": "Arne Blankerts",
  12136. "email": "arne@blankerts.de",
  12137. "role": "Developer"
  12138. }
  12139. ],
  12140. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12141. "support": {
  12142. "issues": "https://github.com/theseer/tokenizer/issues",
  12143. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12144. },
  12145. "funding": [
  12146. {
  12147. "url": "https://github.com/theseer",
  12148. "type": "github"
  12149. }
  12150. ],
  12151. "time": "2024-03-03T12:36:25+00:00"
  12152. }
  12153. ],
  12154. "aliases": [],
  12155. "minimum-stability": "dev",
  12156. "stability-flags": {},
  12157. "prefer-stable": true,
  12158. "prefer-lowest": false,
  12159. "platform": {
  12160. "php": ">=8.1"
  12161. },
  12162. "platform-dev": {},
  12163. "plugin-api-version": "2.6.0"
  12164. }