composer.lock 429 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "a5f35ff942b3fe4f147979a94a5ee5ee",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.4",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  224. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9 || ^12",
  232. "phpstan/phpstan": "1.4.10 || 2.0.3",
  233. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psr/log": "^1 || ^2 || ^3"
  236. },
  237. "suggest": {
  238. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  239. },
  240. "type": "library",
  241. "autoload": {
  242. "psr-4": {
  243. "Doctrine\\Deprecations\\": "src"
  244. }
  245. },
  246. "notification-url": "https://packagist.org/downloads/",
  247. "license": [
  248. "MIT"
  249. ],
  250. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  251. "homepage": "https://www.doctrine-project.org/",
  252. "support": {
  253. "issues": "https://github.com/doctrine/deprecations/issues",
  254. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  255. },
  256. "time": "2024-12-07T21:18:45+00:00"
  257. },
  258. {
  259. "name": "doctrine/inflector",
  260. "version": "2.0.10",
  261. "source": {
  262. "type": "git",
  263. "url": "https://github.com/doctrine/inflector.git",
  264. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  265. },
  266. "dist": {
  267. "type": "zip",
  268. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  269. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  270. "shasum": ""
  271. },
  272. "require": {
  273. "php": "^7.2 || ^8.0"
  274. },
  275. "require-dev": {
  276. "doctrine/coding-standard": "^11.0",
  277. "phpstan/phpstan": "^1.8",
  278. "phpstan/phpstan-phpunit": "^1.1",
  279. "phpstan/phpstan-strict-rules": "^1.3",
  280. "phpunit/phpunit": "^8.5 || ^9.5",
  281. "vimeo/psalm": "^4.25 || ^5.4"
  282. },
  283. "type": "library",
  284. "autoload": {
  285. "psr-4": {
  286. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  287. }
  288. },
  289. "notification-url": "https://packagist.org/downloads/",
  290. "license": [
  291. "MIT"
  292. ],
  293. "authors": [
  294. {
  295. "name": "Guilherme Blanco",
  296. "email": "guilhermeblanco@gmail.com"
  297. },
  298. {
  299. "name": "Roman Borschel",
  300. "email": "roman@code-factory.org"
  301. },
  302. {
  303. "name": "Benjamin Eberlei",
  304. "email": "kontakt@beberlei.de"
  305. },
  306. {
  307. "name": "Jonathan Wage",
  308. "email": "jonwage@gmail.com"
  309. },
  310. {
  311. "name": "Johannes Schmitt",
  312. "email": "schmittjoh@gmail.com"
  313. }
  314. ],
  315. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  316. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  317. "keywords": [
  318. "inflection",
  319. "inflector",
  320. "lowercase",
  321. "manipulation",
  322. "php",
  323. "plural",
  324. "singular",
  325. "strings",
  326. "uppercase",
  327. "words"
  328. ],
  329. "support": {
  330. "issues": "https://github.com/doctrine/inflector/issues",
  331. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  332. },
  333. "funding": [
  334. {
  335. "url": "https://www.doctrine-project.org/sponsorship.html",
  336. "type": "custom"
  337. },
  338. {
  339. "url": "https://www.patreon.com/phpdoctrine",
  340. "type": "patreon"
  341. },
  342. {
  343. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  344. "type": "tidelift"
  345. }
  346. ],
  347. "time": "2024-02-18T20:23:39+00:00"
  348. },
  349. {
  350. "name": "doctrine/instantiator",
  351. "version": "1.5.0",
  352. "source": {
  353. "type": "git",
  354. "url": "https://github.com/doctrine/instantiator.git",
  355. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  356. },
  357. "dist": {
  358. "type": "zip",
  359. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  360. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  361. "shasum": ""
  362. },
  363. "require": {
  364. "php": "^7.1 || ^8.0"
  365. },
  366. "require-dev": {
  367. "doctrine/coding-standard": "^9 || ^11",
  368. "ext-pdo": "*",
  369. "ext-phar": "*",
  370. "phpbench/phpbench": "^0.16 || ^1",
  371. "phpstan/phpstan": "^1.4",
  372. "phpstan/phpstan-phpunit": "^1",
  373. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  374. "vimeo/psalm": "^4.30 || ^5.4"
  375. },
  376. "type": "library",
  377. "autoload": {
  378. "psr-4": {
  379. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  380. }
  381. },
  382. "notification-url": "https://packagist.org/downloads/",
  383. "license": [
  384. "MIT"
  385. ],
  386. "authors": [
  387. {
  388. "name": "Marco Pivetta",
  389. "email": "ocramius@gmail.com",
  390. "homepage": "https://ocramius.github.io/"
  391. }
  392. ],
  393. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  394. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  395. "keywords": [
  396. "constructor",
  397. "instantiate"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/instantiator/issues",
  401. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-30T00:15:36+00:00"
  418. },
  419. {
  420. "name": "doctrine/lexer",
  421. "version": "2.1.1",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/doctrine/lexer.git",
  425. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  430. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "doctrine/deprecations": "^1.0",
  435. "php": "^7.1 || ^8.0"
  436. },
  437. "require-dev": {
  438. "doctrine/coding-standard": "^9 || ^12",
  439. "phpstan/phpstan": "^1.3",
  440. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  441. "psalm/plugin-phpunit": "^0.18.3",
  442. "vimeo/psalm": "^4.11 || ^5.21"
  443. },
  444. "type": "library",
  445. "autoload": {
  446. "psr-4": {
  447. "Doctrine\\Common\\Lexer\\": "src"
  448. }
  449. },
  450. "notification-url": "https://packagist.org/downloads/",
  451. "license": [
  452. "MIT"
  453. ],
  454. "authors": [
  455. {
  456. "name": "Guilherme Blanco",
  457. "email": "guilhermeblanco@gmail.com"
  458. },
  459. {
  460. "name": "Roman Borschel",
  461. "email": "roman@code-factory.org"
  462. },
  463. {
  464. "name": "Johannes Schmitt",
  465. "email": "schmittjoh@gmail.com"
  466. }
  467. ],
  468. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  469. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  470. "keywords": [
  471. "annotations",
  472. "docblock",
  473. "lexer",
  474. "parser",
  475. "php"
  476. ],
  477. "support": {
  478. "issues": "https://github.com/doctrine/lexer/issues",
  479. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  480. },
  481. "funding": [
  482. {
  483. "url": "https://www.doctrine-project.org/sponsorship.html",
  484. "type": "custom"
  485. },
  486. {
  487. "url": "https://www.patreon.com/phpdoctrine",
  488. "type": "patreon"
  489. },
  490. {
  491. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  492. "type": "tidelift"
  493. }
  494. ],
  495. "time": "2024-02-05T11:35:39+00:00"
  496. },
  497. {
  498. "name": "easyswoole/spl",
  499. "version": "2.1.3",
  500. "source": {
  501. "type": "git",
  502. "url": "https://github.com/easy-swoole/spl.git",
  503. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  504. },
  505. "dist": {
  506. "type": "zip",
  507. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  508. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  509. "shasum": ""
  510. },
  511. "require": {
  512. "ext-dom": "*",
  513. "ext-json": "*",
  514. "ext-simplexml": "*",
  515. "php": ">=8.1.0"
  516. },
  517. "require-dev": {
  518. "easyswoole/phpunit": "^1.0",
  519. "easyswoole/swoole-ide-helper": "^1.0"
  520. },
  521. "type": "library",
  522. "autoload": {
  523. "psr-4": {
  524. "EasySwoole\\Spl\\": "src/",
  525. "EasySwoole\\Spl\\Test\\": "test/"
  526. }
  527. },
  528. "notification-url": "https://packagist.org/downloads/",
  529. "license": [
  530. "Apache-2.0"
  531. ],
  532. "authors": [
  533. {
  534. "name": "YF",
  535. "email": "291323003@qq.com"
  536. }
  537. ],
  538. "description": "php stander lib",
  539. "homepage": "https://www.easyswoole.com/",
  540. "keywords": [
  541. "async",
  542. "easyswoole",
  543. "framework",
  544. "swoole"
  545. ],
  546. "support": {
  547. "issues": "https://github.com/easy-swoole/spl/issues",
  548. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  549. },
  550. "time": "2024-07-09T14:44:25+00:00"
  551. },
  552. {
  553. "name": "easyswoole/verifycode",
  554. "version": "3.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/easy-swoole/verify-code.git",
  558. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  563. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "easyswoole/spl": "^2.0",
  568. "ext-gd": "*",
  569. "php": ">=8.1"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "EasySwoole\\VerifyCode\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "Apache-2.0"
  580. ],
  581. "authors": [
  582. {
  583. "name": "YF",
  584. "email": "291323003@qq.com"
  585. },
  586. {
  587. "name": "evalor",
  588. "email": "mipone@foxmail.com"
  589. }
  590. ],
  591. "support": {
  592. "issues": "https://github.com/easy-swoole/verify-code/issues",
  593. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  594. },
  595. "time": "2023-09-06T06:45:56+00:00"
  596. },
  597. {
  598. "name": "egulias/email-validator",
  599. "version": "3.2.6",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/egulias/EmailValidator.git",
  603. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  608. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "doctrine/lexer": "^1.2|^2",
  613. "php": ">=7.2",
  614. "symfony/polyfill-intl-idn": "^1.15"
  615. },
  616. "require-dev": {
  617. "phpunit/phpunit": "^8.5.8|^9.3.3",
  618. "vimeo/psalm": "^4"
  619. },
  620. "suggest": {
  621. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "branch-alias": {
  626. "dev-master": "3.0.x-dev"
  627. }
  628. },
  629. "autoload": {
  630. "psr-4": {
  631. "Egulias\\EmailValidator\\": "src"
  632. }
  633. },
  634. "notification-url": "https://packagist.org/downloads/",
  635. "license": [
  636. "MIT"
  637. ],
  638. "authors": [
  639. {
  640. "name": "Eduardo Gulias Davis"
  641. }
  642. ],
  643. "description": "A library for validating emails against several RFCs",
  644. "homepage": "https://github.com/egulias/EmailValidator",
  645. "keywords": [
  646. "email",
  647. "emailvalidation",
  648. "emailvalidator",
  649. "validation",
  650. "validator"
  651. ],
  652. "support": {
  653. "issues": "https://github.com/egulias/EmailValidator/issues",
  654. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  655. },
  656. "funding": [
  657. {
  658. "url": "https://github.com/egulias",
  659. "type": "github"
  660. }
  661. ],
  662. "time": "2023-06-01T07:04:22+00:00"
  663. },
  664. {
  665. "name": "fig/http-message-util",
  666. "version": "1.1.5",
  667. "source": {
  668. "type": "git",
  669. "url": "https://github.com/php-fig/http-message-util.git",
  670. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  671. },
  672. "dist": {
  673. "type": "zip",
  674. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  675. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  676. "shasum": ""
  677. },
  678. "require": {
  679. "php": "^5.3 || ^7.0 || ^8.0"
  680. },
  681. "suggest": {
  682. "psr/http-message": "The package containing the PSR-7 interfaces"
  683. },
  684. "type": "library",
  685. "extra": {
  686. "branch-alias": {
  687. "dev-master": "1.1.x-dev"
  688. }
  689. },
  690. "autoload": {
  691. "psr-4": {
  692. "Fig\\Http\\Message\\": "src/"
  693. }
  694. },
  695. "notification-url": "https://packagist.org/downloads/",
  696. "license": [
  697. "MIT"
  698. ],
  699. "authors": [
  700. {
  701. "name": "PHP-FIG",
  702. "homepage": "https://www.php-fig.org/"
  703. }
  704. ],
  705. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  706. "keywords": [
  707. "http",
  708. "http-message",
  709. "psr",
  710. "psr-7",
  711. "request",
  712. "response"
  713. ],
  714. "support": {
  715. "issues": "https://github.com/php-fig/http-message-util/issues",
  716. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  717. },
  718. "time": "2020-11-24T22:02:12+00:00"
  719. },
  720. {
  721. "name": "friendsofhyperf/openai-client",
  722. "version": "v3.1.48",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/friendsofhyperf/openai-client.git",
  726. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/friendsofhyperf/openai-client/zipball/bf889a83edefb712381f53967c0ab71d7df5ff01",
  731. "reference": "bf889a83edefb712381f53967c0ab71d7df5ff01",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "hyperf/config": "~3.1.0",
  736. "hyperf/di": "~3.1.0",
  737. "hyperf/guzzle": "~3.1.0",
  738. "openai-php/client": "^0.10.0",
  739. "php": ">=8.1"
  740. },
  741. "type": "library",
  742. "extra": {
  743. "hyperf": {
  744. "config": "FriendsOfHyperf\\OpenAi\\ConfigProvider"
  745. },
  746. "branch-alias": {
  747. "dev-main": "3.1-dev"
  748. }
  749. },
  750. "autoload": {
  751. "psr-4": {
  752. "FriendsOfHyperf\\OpenAi\\": "src/"
  753. }
  754. },
  755. "notification-url": "https://packagist.org/downloads/",
  756. "license": [
  757. "MIT"
  758. ],
  759. "authors": [
  760. {
  761. "name": "huangdijia",
  762. "email": "huangdijia@gmail.com"
  763. }
  764. ],
  765. "description": "The openai client component for Hyperf.",
  766. "homepage": "https://github.com/friendsofhyperf/openai-client",
  767. "keywords": [
  768. "hyperf",
  769. "openai",
  770. "v3.1"
  771. ],
  772. "support": {
  773. "docs": "https://hyperf.fans",
  774. "issues": "https://github.com/friendsofhyperf/components/issues",
  775. "pull-request": "https://github.com/friendsofhyperf/components/pulls",
  776. "source": "https://github.com/friendsofhyperf/components"
  777. },
  778. "funding": [
  779. {
  780. "url": "https://hdj.me/sponsors/",
  781. "type": "custom"
  782. },
  783. {
  784. "url": "https://github.com/huangdijia",
  785. "type": "github"
  786. }
  787. ],
  788. "time": "2024-11-28T08:49:14+00:00"
  789. },
  790. {
  791. "name": "graham-campbell/result-type",
  792. "version": "v1.1.3",
  793. "source": {
  794. "type": "git",
  795. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  796. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  797. },
  798. "dist": {
  799. "type": "zip",
  800. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  801. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  802. "shasum": ""
  803. },
  804. "require": {
  805. "php": "^7.2.5 || ^8.0",
  806. "phpoption/phpoption": "^1.9.3"
  807. },
  808. "require-dev": {
  809. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  810. },
  811. "type": "library",
  812. "autoload": {
  813. "psr-4": {
  814. "GrahamCampbell\\ResultType\\": "src/"
  815. }
  816. },
  817. "notification-url": "https://packagist.org/downloads/",
  818. "license": [
  819. "MIT"
  820. ],
  821. "authors": [
  822. {
  823. "name": "Graham Campbell",
  824. "email": "hello@gjcampbell.co.uk",
  825. "homepage": "https://github.com/GrahamCampbell"
  826. }
  827. ],
  828. "description": "An Implementation Of The Result Type",
  829. "keywords": [
  830. "Graham Campbell",
  831. "GrahamCampbell",
  832. "Result Type",
  833. "Result-Type",
  834. "result"
  835. ],
  836. "support": {
  837. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  838. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  839. },
  840. "funding": [
  841. {
  842. "url": "https://github.com/GrahamCampbell",
  843. "type": "github"
  844. },
  845. {
  846. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  847. "type": "tidelift"
  848. }
  849. ],
  850. "time": "2024-07-20T21:45:45+00:00"
  851. },
  852. {
  853. "name": "guzzlehttp/guzzle",
  854. "version": "7.9.2",
  855. "source": {
  856. "type": "git",
  857. "url": "https://github.com/guzzle/guzzle.git",
  858. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  859. },
  860. "dist": {
  861. "type": "zip",
  862. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  863. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  864. "shasum": ""
  865. },
  866. "require": {
  867. "ext-json": "*",
  868. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  869. "guzzlehttp/psr7": "^2.7.0",
  870. "php": "^7.2.5 || ^8.0",
  871. "psr/http-client": "^1.0",
  872. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  873. },
  874. "provide": {
  875. "psr/http-client-implementation": "1.0"
  876. },
  877. "require-dev": {
  878. "bamarni/composer-bin-plugin": "^1.8.2",
  879. "ext-curl": "*",
  880. "guzzle/client-integration-tests": "3.0.2",
  881. "php-http/message-factory": "^1.1",
  882. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  883. "psr/log": "^1.1 || ^2.0 || ^3.0"
  884. },
  885. "suggest": {
  886. "ext-curl": "Required for CURL handler support",
  887. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  888. "psr/log": "Required for using the Log middleware"
  889. },
  890. "type": "library",
  891. "extra": {
  892. "bamarni-bin": {
  893. "bin-links": true,
  894. "forward-command": false
  895. }
  896. },
  897. "autoload": {
  898. "files": [
  899. "src/functions_include.php"
  900. ],
  901. "psr-4": {
  902. "GuzzleHttp\\": "src/"
  903. }
  904. },
  905. "notification-url": "https://packagist.org/downloads/",
  906. "license": [
  907. "MIT"
  908. ],
  909. "authors": [
  910. {
  911. "name": "Graham Campbell",
  912. "email": "hello@gjcampbell.co.uk",
  913. "homepage": "https://github.com/GrahamCampbell"
  914. },
  915. {
  916. "name": "Michael Dowling",
  917. "email": "mtdowling@gmail.com",
  918. "homepage": "https://github.com/mtdowling"
  919. },
  920. {
  921. "name": "Jeremy Lindblom",
  922. "email": "jeremeamia@gmail.com",
  923. "homepage": "https://github.com/jeremeamia"
  924. },
  925. {
  926. "name": "George Mponos",
  927. "email": "gmponos@gmail.com",
  928. "homepage": "https://github.com/gmponos"
  929. },
  930. {
  931. "name": "Tobias Nyholm",
  932. "email": "tobias.nyholm@gmail.com",
  933. "homepage": "https://github.com/Nyholm"
  934. },
  935. {
  936. "name": "Márk Sági-Kazár",
  937. "email": "mark.sagikazar@gmail.com",
  938. "homepage": "https://github.com/sagikazarmark"
  939. },
  940. {
  941. "name": "Tobias Schultze",
  942. "email": "webmaster@tubo-world.de",
  943. "homepage": "https://github.com/Tobion"
  944. }
  945. ],
  946. "description": "Guzzle is a PHP HTTP client library",
  947. "keywords": [
  948. "client",
  949. "curl",
  950. "framework",
  951. "http",
  952. "http client",
  953. "psr-18",
  954. "psr-7",
  955. "rest",
  956. "web service"
  957. ],
  958. "support": {
  959. "issues": "https://github.com/guzzle/guzzle/issues",
  960. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  961. },
  962. "funding": [
  963. {
  964. "url": "https://github.com/GrahamCampbell",
  965. "type": "github"
  966. },
  967. {
  968. "url": "https://github.com/Nyholm",
  969. "type": "github"
  970. },
  971. {
  972. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  973. "type": "tidelift"
  974. }
  975. ],
  976. "time": "2024-07-24T11:22:20+00:00"
  977. },
  978. {
  979. "name": "guzzlehttp/promises",
  980. "version": "2.0.4",
  981. "source": {
  982. "type": "git",
  983. "url": "https://github.com/guzzle/promises.git",
  984. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  985. },
  986. "dist": {
  987. "type": "zip",
  988. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  989. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  990. "shasum": ""
  991. },
  992. "require": {
  993. "php": "^7.2.5 || ^8.0"
  994. },
  995. "require-dev": {
  996. "bamarni/composer-bin-plugin": "^1.8.2",
  997. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "bamarni-bin": {
  1002. "bin-links": true,
  1003. "forward-command": false
  1004. }
  1005. },
  1006. "autoload": {
  1007. "psr-4": {
  1008. "GuzzleHttp\\Promise\\": "src/"
  1009. }
  1010. },
  1011. "notification-url": "https://packagist.org/downloads/",
  1012. "license": [
  1013. "MIT"
  1014. ],
  1015. "authors": [
  1016. {
  1017. "name": "Graham Campbell",
  1018. "email": "hello@gjcampbell.co.uk",
  1019. "homepage": "https://github.com/GrahamCampbell"
  1020. },
  1021. {
  1022. "name": "Michael Dowling",
  1023. "email": "mtdowling@gmail.com",
  1024. "homepage": "https://github.com/mtdowling"
  1025. },
  1026. {
  1027. "name": "Tobias Nyholm",
  1028. "email": "tobias.nyholm@gmail.com",
  1029. "homepage": "https://github.com/Nyholm"
  1030. },
  1031. {
  1032. "name": "Tobias Schultze",
  1033. "email": "webmaster@tubo-world.de",
  1034. "homepage": "https://github.com/Tobion"
  1035. }
  1036. ],
  1037. "description": "Guzzle promises library",
  1038. "keywords": [
  1039. "promise"
  1040. ],
  1041. "support": {
  1042. "issues": "https://github.com/guzzle/promises/issues",
  1043. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://github.com/GrahamCampbell",
  1048. "type": "github"
  1049. },
  1050. {
  1051. "url": "https://github.com/Nyholm",
  1052. "type": "github"
  1053. },
  1054. {
  1055. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1056. "type": "tidelift"
  1057. }
  1058. ],
  1059. "time": "2024-10-17T10:06:22+00:00"
  1060. },
  1061. {
  1062. "name": "guzzlehttp/psr7",
  1063. "version": "2.7.0",
  1064. "source": {
  1065. "type": "git",
  1066. "url": "https://github.com/guzzle/psr7.git",
  1067. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1068. },
  1069. "dist": {
  1070. "type": "zip",
  1071. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1072. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1073. "shasum": ""
  1074. },
  1075. "require": {
  1076. "php": "^7.2.5 || ^8.0",
  1077. "psr/http-factory": "^1.0",
  1078. "psr/http-message": "^1.1 || ^2.0",
  1079. "ralouphie/getallheaders": "^3.0"
  1080. },
  1081. "provide": {
  1082. "psr/http-factory-implementation": "1.0",
  1083. "psr/http-message-implementation": "1.0"
  1084. },
  1085. "require-dev": {
  1086. "bamarni/composer-bin-plugin": "^1.8.2",
  1087. "http-interop/http-factory-tests": "0.9.0",
  1088. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1089. },
  1090. "suggest": {
  1091. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1092. },
  1093. "type": "library",
  1094. "extra": {
  1095. "bamarni-bin": {
  1096. "bin-links": true,
  1097. "forward-command": false
  1098. }
  1099. },
  1100. "autoload": {
  1101. "psr-4": {
  1102. "GuzzleHttp\\Psr7\\": "src/"
  1103. }
  1104. },
  1105. "notification-url": "https://packagist.org/downloads/",
  1106. "license": [
  1107. "MIT"
  1108. ],
  1109. "authors": [
  1110. {
  1111. "name": "Graham Campbell",
  1112. "email": "hello@gjcampbell.co.uk",
  1113. "homepage": "https://github.com/GrahamCampbell"
  1114. },
  1115. {
  1116. "name": "Michael Dowling",
  1117. "email": "mtdowling@gmail.com",
  1118. "homepage": "https://github.com/mtdowling"
  1119. },
  1120. {
  1121. "name": "George Mponos",
  1122. "email": "gmponos@gmail.com",
  1123. "homepage": "https://github.com/gmponos"
  1124. },
  1125. {
  1126. "name": "Tobias Nyholm",
  1127. "email": "tobias.nyholm@gmail.com",
  1128. "homepage": "https://github.com/Nyholm"
  1129. },
  1130. {
  1131. "name": "Márk Sági-Kazár",
  1132. "email": "mark.sagikazar@gmail.com",
  1133. "homepage": "https://github.com/sagikazarmark"
  1134. },
  1135. {
  1136. "name": "Tobias Schultze",
  1137. "email": "webmaster@tubo-world.de",
  1138. "homepage": "https://github.com/Tobion"
  1139. },
  1140. {
  1141. "name": "Márk Sági-Kazár",
  1142. "email": "mark.sagikazar@gmail.com",
  1143. "homepage": "https://sagikazarmark.hu"
  1144. }
  1145. ],
  1146. "description": "PSR-7 message implementation that also provides common utility methods",
  1147. "keywords": [
  1148. "http",
  1149. "message",
  1150. "psr-7",
  1151. "request",
  1152. "response",
  1153. "stream",
  1154. "uri",
  1155. "url"
  1156. ],
  1157. "support": {
  1158. "issues": "https://github.com/guzzle/psr7/issues",
  1159. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1160. },
  1161. "funding": [
  1162. {
  1163. "url": "https://github.com/GrahamCampbell",
  1164. "type": "github"
  1165. },
  1166. {
  1167. "url": "https://github.com/Nyholm",
  1168. "type": "github"
  1169. },
  1170. {
  1171. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1172. "type": "tidelift"
  1173. }
  1174. ],
  1175. "time": "2024-07-18T11:15:46+00:00"
  1176. },
  1177. {
  1178. "name": "hyperf/amqp",
  1179. "version": "v3.1.50",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/hyperf/amqp.git",
  1183. "reference": "db5e24822f2dcc3af055b5c985702f59901be380"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/hyperf/amqp/zipball/db5e24822f2dcc3af055b5c985702f59901be380",
  1188. "reference": "db5e24822f2dcc3af055b5c985702f59901be380",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "doctrine/instantiator": "^1.2.0",
  1193. "hyperf/codec": "~3.1.0",
  1194. "hyperf/contract": "~3.1.0",
  1195. "hyperf/coroutine": "~3.1.0",
  1196. "hyperf/pool": "~3.1.0",
  1197. "hyperf/process": "~3.1.0",
  1198. "hyperf/support": "~3.1.0",
  1199. "hyperf/utils": "~3.1.0",
  1200. "php": ">=8.1",
  1201. "php-amqplib/php-amqplib": "^3.5",
  1202. "psr/container": "^1.0 || ^2.0",
  1203. "psr/event-dispatcher": "^1.0",
  1204. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1205. },
  1206. "suggest": {
  1207. "hyperf/di": "Required to use annotations.",
  1208. "hyperf/event": "Declare queue and start consumers automatically."
  1209. },
  1210. "type": "library",
  1211. "extra": {
  1212. "hyperf": {
  1213. "config": "Hyperf\\Amqp\\ConfigProvider"
  1214. },
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. }
  1218. },
  1219. "autoload": {
  1220. "psr-4": {
  1221. "Hyperf\\Amqp\\": "src/"
  1222. }
  1223. },
  1224. "notification-url": "https://packagist.org/downloads/",
  1225. "license": [
  1226. "MIT"
  1227. ],
  1228. "description": "A amqplib for hyperf.",
  1229. "homepage": "https://hyperf.io",
  1230. "keywords": [
  1231. "AMQP",
  1232. "hyperf",
  1233. "php"
  1234. ],
  1235. "support": {
  1236. "docs": "https://hyperf.wiki",
  1237. "issues": "https://github.com/hyperf/hyperf/issues",
  1238. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1239. "source": "https://github.com/hyperf/hyperf"
  1240. },
  1241. "funding": [
  1242. {
  1243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1244. "type": "custom"
  1245. },
  1246. {
  1247. "url": "https://opencollective.com/hyperf",
  1248. "type": "open_collective"
  1249. }
  1250. ],
  1251. "time": "2025-01-08T08:57:09+00:00"
  1252. },
  1253. {
  1254. "name": "hyperf/async-queue",
  1255. "version": "v3.1.42",
  1256. "source": {
  1257. "type": "git",
  1258. "url": "https://github.com/hyperf/async-queue.git",
  1259. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1260. },
  1261. "dist": {
  1262. "type": "zip",
  1263. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1264. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1265. "shasum": ""
  1266. },
  1267. "require": {
  1268. "hyperf/codec": "~3.1.0",
  1269. "hyperf/collection": "~3.1.0",
  1270. "hyperf/command": "~3.1.0",
  1271. "hyperf/contract": "~3.1.0",
  1272. "hyperf/support": "~3.1.0",
  1273. "hyperf/utils": "~3.1.0",
  1274. "php": ">=8.1",
  1275. "psr/container": "^1.0 || ^2.0",
  1276. "psr/event-dispatcher": "^1.0"
  1277. },
  1278. "suggest": {
  1279. "hyperf/di": "Required to use annotations.",
  1280. "hyperf/event": "Required to dispatch a event.",
  1281. "hyperf/logger": "Required to use QueueHandleListener.",
  1282. "hyperf/process": "Auto register the consumer process for server."
  1283. },
  1284. "type": "library",
  1285. "extra": {
  1286. "hyperf": {
  1287. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1288. },
  1289. "branch-alias": {
  1290. "dev-master": "3.1-dev"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "files": [
  1295. "src/Functions.php"
  1296. ],
  1297. "psr-4": {
  1298. "Hyperf\\AsyncQueue\\": "src/"
  1299. }
  1300. },
  1301. "notification-url": "https://packagist.org/downloads/",
  1302. "license": [
  1303. "MIT"
  1304. ],
  1305. "description": "A async queue component for hyperf.",
  1306. "homepage": "https://hyperf.io",
  1307. "keywords": [
  1308. "async-queue",
  1309. "hyperf",
  1310. "php"
  1311. ],
  1312. "support": {
  1313. "docs": "https://hyperf.wiki",
  1314. "issues": "https://github.com/hyperf/hyperf/issues",
  1315. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1316. "source": "https://github.com/hyperf/hyperf"
  1317. },
  1318. "funding": [
  1319. {
  1320. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1321. "type": "custom"
  1322. },
  1323. {
  1324. "url": "https://opencollective.com/hyperf",
  1325. "type": "open_collective"
  1326. }
  1327. ],
  1328. "time": "2024-09-25T02:54:12+00:00"
  1329. },
  1330. {
  1331. "name": "hyperf/cache",
  1332. "version": "v3.1.43",
  1333. "source": {
  1334. "type": "git",
  1335. "url": "https://github.com/hyperf/cache.git",
  1336. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1337. },
  1338. "dist": {
  1339. "type": "zip",
  1340. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1341. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1342. "shasum": ""
  1343. },
  1344. "require": {
  1345. "hyperf/codec": "~3.1.0",
  1346. "hyperf/collection": "~3.1.0",
  1347. "hyperf/contract": "~3.1.0",
  1348. "hyperf/support": "~3.1.0",
  1349. "hyperf/utils": "~3.1.0",
  1350. "php": ">=8.1",
  1351. "psr/container": "^1.0 || ^2.0",
  1352. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1353. },
  1354. "suggest": {
  1355. "hyperf/di": "Use cache annotations.",
  1356. "hyperf/event": "Use listener to delete annotation cache."
  1357. },
  1358. "type": "library",
  1359. "extra": {
  1360. "hyperf": {
  1361. "config": "Hyperf\\Cache\\ConfigProvider"
  1362. },
  1363. "branch-alias": {
  1364. "dev-master": "3.1-dev"
  1365. }
  1366. },
  1367. "autoload": {
  1368. "psr-4": {
  1369. "Hyperf\\Cache\\": "src/"
  1370. }
  1371. },
  1372. "notification-url": "https://packagist.org/downloads/",
  1373. "license": [
  1374. "MIT"
  1375. ],
  1376. "description": "A cache component for hyperf.",
  1377. "homepage": "https://hyperf.io",
  1378. "keywords": [
  1379. "cache",
  1380. "hyperf",
  1381. "php"
  1382. ],
  1383. "support": {
  1384. "docs": "https://hyperf.wiki",
  1385. "issues": "https://github.com/hyperf/hyperf/issues",
  1386. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1387. "source": "https://github.com/hyperf/hyperf"
  1388. },
  1389. "funding": [
  1390. {
  1391. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1392. "type": "custom"
  1393. },
  1394. {
  1395. "url": "https://opencollective.com/hyperf",
  1396. "type": "open_collective"
  1397. }
  1398. ],
  1399. "time": "2024-10-09T10:22:39+00:00"
  1400. },
  1401. {
  1402. "name": "hyperf/code-parser",
  1403. "version": "v3.1.42",
  1404. "source": {
  1405. "type": "git",
  1406. "url": "https://github.com/hyperf/code-parser.git",
  1407. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1408. },
  1409. "dist": {
  1410. "type": "zip",
  1411. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1412. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1413. "shasum": ""
  1414. },
  1415. "require": {
  1416. "hyperf/collection": "~3.1.0",
  1417. "hyperf/stringable": "~3.1.0",
  1418. "hyperf/support": "~3.1.0",
  1419. "php": ">=8.1"
  1420. },
  1421. "suggest": {
  1422. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1423. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1424. },
  1425. "type": "library",
  1426. "extra": {
  1427. "branch-alias": {
  1428. "dev-master": "3.1-dev"
  1429. }
  1430. },
  1431. "autoload": {
  1432. "psr-4": {
  1433. "Hyperf\\CodeParser\\": "src/"
  1434. }
  1435. },
  1436. "notification-url": "https://packagist.org/downloads/",
  1437. "license": [
  1438. "MIT"
  1439. ],
  1440. "description": "A code parser component for Hyperf.",
  1441. "homepage": "https://hyperf.io",
  1442. "keywords": [
  1443. "code-parser",
  1444. "hyperf",
  1445. "php",
  1446. "swoole"
  1447. ],
  1448. "support": {
  1449. "docs": "https://hyperf.wiki",
  1450. "issues": "https://github.com/hyperf/hyperf/issues",
  1451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1452. "source": "https://github.com/hyperf/hyperf"
  1453. },
  1454. "funding": [
  1455. {
  1456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1457. "type": "custom"
  1458. },
  1459. {
  1460. "url": "https://opencollective.com/hyperf",
  1461. "type": "open_collective"
  1462. }
  1463. ],
  1464. "time": "2024-09-25T02:54:12+00:00"
  1465. },
  1466. {
  1467. "name": "hyperf/codec",
  1468. "version": "v3.1.42",
  1469. "source": {
  1470. "type": "git",
  1471. "url": "https://github.com/hyperf/codec.git",
  1472. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1473. },
  1474. "dist": {
  1475. "type": "zip",
  1476. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1477. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1478. "shasum": ""
  1479. },
  1480. "require": {
  1481. "ext-json": "*",
  1482. "ext-xml": "*",
  1483. "hyperf/contract": "~3.1.0",
  1484. "php": ">=8.1"
  1485. },
  1486. "suggest": {
  1487. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1488. },
  1489. "type": "library",
  1490. "extra": {
  1491. "branch-alias": {
  1492. "dev-master": "3.1-dev"
  1493. }
  1494. },
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Hyperf\\Codec\\": "src/"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "MIT"
  1503. ],
  1504. "description": "A codec component for Hyperf.",
  1505. "homepage": "https://hyperf.io",
  1506. "keywords": [
  1507. "codec",
  1508. "hyperf",
  1509. "php",
  1510. "swoole"
  1511. ],
  1512. "support": {
  1513. "docs": "https://hyperf.wiki",
  1514. "issues": "https://github.com/hyperf/hyperf/issues",
  1515. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1516. "source": "https://github.com/hyperf/hyperf"
  1517. },
  1518. "funding": [
  1519. {
  1520. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1521. "type": "custom"
  1522. },
  1523. {
  1524. "url": "https://opencollective.com/hyperf",
  1525. "type": "open_collective"
  1526. }
  1527. ],
  1528. "time": "2024-09-25T02:54:12+00:00"
  1529. },
  1530. {
  1531. "name": "hyperf/collection",
  1532. "version": "v3.1.50",
  1533. "source": {
  1534. "type": "git",
  1535. "url": "https://github.com/hyperf/collection.git",
  1536. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363"
  1537. },
  1538. "dist": {
  1539. "type": "zip",
  1540. "url": "https://api.github.com/repos/hyperf/collection/zipball/9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1541. "reference": "9ec6c151c6e1ce8407d617b7813eb52f4fb3c363",
  1542. "shasum": ""
  1543. },
  1544. "require": {
  1545. "hyperf/conditionable": "~3.1.0",
  1546. "hyperf/contract": "~3.1.0",
  1547. "hyperf/macroable": "~3.1.0",
  1548. "hyperf/stringable": "~3.1.0",
  1549. "php": ">=8.1"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "3.1-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "files": [
  1559. "src/Functions.php"
  1560. ],
  1561. "psr-4": {
  1562. "Hyperf\\Collection\\": "src/"
  1563. }
  1564. },
  1565. "notification-url": "https://packagist.org/downloads/",
  1566. "license": [
  1567. "MIT"
  1568. ],
  1569. "description": "Hyperf Collection package which come from illuminate/collections",
  1570. "homepage": "https://hyperf.io",
  1571. "keywords": [
  1572. "collection",
  1573. "hyperf",
  1574. "php",
  1575. "swoole"
  1576. ],
  1577. "support": {
  1578. "docs": "https://hyperf.wiki",
  1579. "issues": "https://github.com/hyperf/hyperf/issues",
  1580. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1581. "source": "https://github.com/hyperf/hyperf"
  1582. },
  1583. "funding": [
  1584. {
  1585. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1586. "type": "custom"
  1587. },
  1588. {
  1589. "url": "https://opencollective.com/hyperf",
  1590. "type": "open_collective"
  1591. }
  1592. ],
  1593. "time": "2025-01-08T06:57:58+00:00"
  1594. },
  1595. {
  1596. "name": "hyperf/command",
  1597. "version": "v3.1.42",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/hyperf/command.git",
  1601. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1606. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "hyperf/collection": "~3.1.0",
  1611. "hyperf/context": "~3.1.0",
  1612. "hyperf/contract": "~3.1.0",
  1613. "hyperf/coroutine": "~3.1.0",
  1614. "hyperf/di": "~3.1.0",
  1615. "hyperf/stringable": "~3.1.0",
  1616. "hyperf/support": "~3.1.0",
  1617. "hyperf/tappable": "~3.1.0",
  1618. "php": ">=8.1",
  1619. "psr/event-dispatcher": "^1.0",
  1620. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1621. },
  1622. "suggest": {
  1623. "hyperf/di": "Required to use annotations.",
  1624. "hyperf/event": "Required to use listeners."
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "hyperf": {
  1629. "config": "Hyperf\\Command\\ConfigProvider"
  1630. },
  1631. "branch-alias": {
  1632. "dev-master": "3.1-dev"
  1633. }
  1634. },
  1635. "autoload": {
  1636. "psr-4": {
  1637. "Hyperf\\Command\\": "src/"
  1638. }
  1639. },
  1640. "notification-url": "https://packagist.org/downloads/",
  1641. "license": [
  1642. "MIT"
  1643. ],
  1644. "description": "Command for hyperf",
  1645. "keywords": [
  1646. "command",
  1647. "php",
  1648. "swoole"
  1649. ],
  1650. "support": {
  1651. "issues": "https://github.com/hyperf/command/issues",
  1652. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1653. },
  1654. "funding": [
  1655. {
  1656. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1657. "type": "custom"
  1658. },
  1659. {
  1660. "url": "https://opencollective.com/hyperf",
  1661. "type": "open_collective"
  1662. }
  1663. ],
  1664. "time": "2024-09-25T02:54:12+00:00"
  1665. },
  1666. {
  1667. "name": "hyperf/conditionable",
  1668. "version": "v3.1.42",
  1669. "source": {
  1670. "type": "git",
  1671. "url": "https://github.com/hyperf/conditionable.git",
  1672. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1673. },
  1674. "dist": {
  1675. "type": "zip",
  1676. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1677. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1678. "shasum": ""
  1679. },
  1680. "require": {
  1681. "php": ">=8.1"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. }
  1688. },
  1689. "autoload": {
  1690. "psr-4": {
  1691. "Hyperf\\Conditionable\\": "src/"
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "MIT"
  1697. ],
  1698. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1699. "homepage": "https://hyperf.io",
  1700. "keywords": [
  1701. "conditionable",
  1702. "hyperf",
  1703. "php",
  1704. "swoole"
  1705. ],
  1706. "support": {
  1707. "docs": "https://hyperf.wiki",
  1708. "issues": "https://github.com/hyperf/hyperf/issues",
  1709. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1710. "source": "https://github.com/hyperf/hyperf"
  1711. },
  1712. "funding": [
  1713. {
  1714. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1715. "type": "custom"
  1716. },
  1717. {
  1718. "url": "https://opencollective.com/hyperf",
  1719. "type": "open_collective"
  1720. }
  1721. ],
  1722. "time": "2024-09-25T02:54:12+00:00"
  1723. },
  1724. {
  1725. "name": "hyperf/config",
  1726. "version": "v3.1.42",
  1727. "source": {
  1728. "type": "git",
  1729. "url": "https://github.com/hyperf/config.git",
  1730. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1731. },
  1732. "dist": {
  1733. "type": "zip",
  1734. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1735. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1736. "shasum": ""
  1737. },
  1738. "require": {
  1739. "hyperf/collection": "~3.1.0",
  1740. "hyperf/contract": "~3.1.0",
  1741. "hyperf/support": "~3.1.0",
  1742. "php": ">=8.1",
  1743. "psr/container": "^1.0 || ^2.0",
  1744. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1745. },
  1746. "suggest": {
  1747. "hyperf/context": "Required to use config()",
  1748. "hyperf/di": "Allows using @Value annotation",
  1749. "hyperf/event": "Allows using @Value annotation",
  1750. "hyperf/framework": "Allows using @Value annotation",
  1751. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "hyperf": {
  1756. "config": "Hyperf\\Config\\ConfigProvider"
  1757. },
  1758. "branch-alias": {
  1759. "dev-master": "3.1-dev"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "files": [
  1764. "./src/Functions.php"
  1765. ],
  1766. "psr-4": {
  1767. "Hyperf\\Config\\": "src/"
  1768. }
  1769. },
  1770. "notification-url": "https://packagist.org/downloads/",
  1771. "license": [
  1772. "MIT"
  1773. ],
  1774. "description": "An independent component that provides configuration container.",
  1775. "homepage": "https://hyperf.io",
  1776. "keywords": [
  1777. "config",
  1778. "configuration",
  1779. "hyperf",
  1780. "php",
  1781. "swoole"
  1782. ],
  1783. "support": {
  1784. "docs": "https://hyperf.wiki",
  1785. "issues": "https://github.com/hyperf/hyperf/issues",
  1786. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1787. "source": "https://github.com/hyperf/hyperf"
  1788. },
  1789. "funding": [
  1790. {
  1791. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1792. "type": "custom"
  1793. },
  1794. {
  1795. "url": "https://opencollective.com/hyperf",
  1796. "type": "open_collective"
  1797. }
  1798. ],
  1799. "time": "2024-09-25T02:54:12+00:00"
  1800. },
  1801. {
  1802. "name": "hyperf/config-center",
  1803. "version": "v3.1.42",
  1804. "source": {
  1805. "type": "git",
  1806. "url": "https://github.com/hyperf/config-center.git",
  1807. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1808. },
  1809. "dist": {
  1810. "type": "zip",
  1811. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1812. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1813. "shasum": ""
  1814. },
  1815. "require": {
  1816. "hyperf/support": "~3.1.0",
  1817. "php": ">=8.1"
  1818. },
  1819. "suggest": {
  1820. "hyperf/process": "^2.1"
  1821. },
  1822. "type": "library",
  1823. "extra": {
  1824. "hyperf": {
  1825. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1826. },
  1827. "branch-alias": {
  1828. "dev-master": "3.1-dev"
  1829. }
  1830. },
  1831. "autoload": {
  1832. "psr-4": {
  1833. "Hyperf\\ConfigCenter\\": "src/"
  1834. }
  1835. },
  1836. "notification-url": "https://packagist.org/downloads/",
  1837. "license": [
  1838. "MIT"
  1839. ],
  1840. "description": "The abstraction component of config center",
  1841. "homepage": "https://hyperf.io",
  1842. "keywords": [
  1843. "config-center",
  1844. "hyperf",
  1845. "php"
  1846. ],
  1847. "support": {
  1848. "docs": "https://hyperf.wiki",
  1849. "issues": "https://github.com/hyperf/hyperf/issues",
  1850. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1851. "source": "https://github.com/hyperf/hyperf"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1856. "type": "custom"
  1857. },
  1858. {
  1859. "url": "https://opencollective.com/hyperf",
  1860. "type": "open_collective"
  1861. }
  1862. ],
  1863. "time": "2024-09-25T02:54:12+00:00"
  1864. },
  1865. {
  1866. "name": "hyperf/config-nacos",
  1867. "version": "v3.1.42",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/hyperf/config-nacos.git",
  1871. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1876. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "hyperf/codec": "~3.1.0",
  1881. "hyperf/config-center": "~3.1.0",
  1882. "hyperf/contract": "~3.1.0",
  1883. "hyperf/guzzle": "~3.1.0",
  1884. "hyperf/nacos": "~3.1.0",
  1885. "hyperf/support": "~3.1.0",
  1886. "hyperf/utils": "~3.1.0",
  1887. "jetbrains/phpstorm-attributes": "^1.0",
  1888. "php": ">=8.1"
  1889. },
  1890. "suggest": {
  1891. "ext-json": "*",
  1892. "ext-simplexml": "*",
  1893. "ext-yaml": "*",
  1894. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1895. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1896. "hyperf/process": "Required to use processes. (~2.2.0)"
  1897. },
  1898. "type": "library",
  1899. "extra": {
  1900. "hyperf": {
  1901. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1902. },
  1903. "branch-alias": {
  1904. "dev-master": "3.1-dev"
  1905. }
  1906. },
  1907. "autoload": {
  1908. "psr-4": {
  1909. "Hyperf\\ConfigNacos\\": "src/"
  1910. }
  1911. },
  1912. "notification-url": "https://packagist.org/downloads/",
  1913. "license": [
  1914. "MIT"
  1915. ],
  1916. "description": "A nacos adapter for config center component.",
  1917. "homepage": "https://hyperf.io",
  1918. "keywords": [
  1919. "hyperf",
  1920. "nacos",
  1921. "php",
  1922. "swoole"
  1923. ],
  1924. "support": {
  1925. "docs": "https://hyperf.wiki",
  1926. "issues": "https://github.com/hyperf/hyperf/issues",
  1927. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1928. "source": "https://github.com/hyperf/hyperf"
  1929. },
  1930. "funding": [
  1931. {
  1932. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1933. "type": "custom"
  1934. },
  1935. {
  1936. "url": "https://opencollective.com/hyperf",
  1937. "type": "open_collective"
  1938. }
  1939. ],
  1940. "time": "2024-09-25T02:54:12+00:00"
  1941. },
  1942. {
  1943. "name": "hyperf/constants",
  1944. "version": "v3.1.42",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/hyperf/constants.git",
  1948. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1953. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "hyperf/di": "~3.1.0",
  1958. "hyperf/support": "~3.1.0",
  1959. "hyperf/utils": "~3.1.0",
  1960. "php": ">=8.1"
  1961. },
  1962. "suggest": {
  1963. "hyperf/translation": "Required to use translation."
  1964. },
  1965. "type": "library",
  1966. "extra": {
  1967. "hyperf": {
  1968. "config": "Hyperf\\Constants\\ConfigProvider"
  1969. },
  1970. "branch-alias": {
  1971. "dev-master": "3.1-dev"
  1972. }
  1973. },
  1974. "autoload": {
  1975. "psr-4": {
  1976. "Hyperf\\Constants\\": "src/"
  1977. }
  1978. },
  1979. "notification-url": "https://packagist.org/downloads/",
  1980. "license": [
  1981. "MIT"
  1982. ],
  1983. "description": "A constants component for hyperf.",
  1984. "homepage": "https://hyperf.io",
  1985. "keywords": [
  1986. "constants",
  1987. "hyperf",
  1988. "php"
  1989. ],
  1990. "support": {
  1991. "docs": "https://hyperf.wiki",
  1992. "issues": "https://github.com/hyperf/hyperf/issues",
  1993. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1994. "source": "https://github.com/hyperf/hyperf"
  1995. },
  1996. "funding": [
  1997. {
  1998. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1999. "type": "custom"
  2000. },
  2001. {
  2002. "url": "https://opencollective.com/hyperf",
  2003. "type": "open_collective"
  2004. }
  2005. ],
  2006. "time": "2024-09-25T02:54:12+00:00"
  2007. },
  2008. {
  2009. "name": "hyperf/consul",
  2010. "version": "v3.1.42",
  2011. "source": {
  2012. "type": "git",
  2013. "url": "https://github.com/hyperf/consul.git",
  2014. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  2015. },
  2016. "dist": {
  2017. "type": "zip",
  2018. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2019. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  2020. "shasum": ""
  2021. },
  2022. "require": {
  2023. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2024. "php": ">=8.1"
  2025. },
  2026. "type": "library",
  2027. "extra": {
  2028. "hyperf": {
  2029. "config": "Hyperf\\Consul\\ConfigProvider"
  2030. },
  2031. "branch-alias": {
  2032. "dev-master": "3.1-dev"
  2033. }
  2034. },
  2035. "autoload": {
  2036. "psr-4": {
  2037. "Hyperf\\Consul\\": "src/"
  2038. }
  2039. },
  2040. "notification-url": "https://packagist.org/downloads/",
  2041. "license": [
  2042. "MIT"
  2043. ],
  2044. "description": "A Consul Client for Hyperf.",
  2045. "homepage": "https://hyperf.io",
  2046. "keywords": [
  2047. "consul",
  2048. "consul-client",
  2049. "hyperf",
  2050. "php",
  2051. "swoole"
  2052. ],
  2053. "support": {
  2054. "docs": "https://hyperf.wiki",
  2055. "issues": "https://github.com/hyperf/hyperf/issues",
  2056. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2057. "source": "https://github.com/hyperf/hyperf"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://opencollective.com/hyperf",
  2066. "type": "open_collective"
  2067. }
  2068. ],
  2069. "time": "2024-09-25T02:54:12+00:00"
  2070. },
  2071. {
  2072. "name": "hyperf/context",
  2073. "version": "v3.1.42",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/hyperf/context.git",
  2077. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2082. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "hyperf/engine": "^2.0",
  2087. "php": ">=8.1"
  2088. },
  2089. "suggest": {
  2090. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2091. },
  2092. "type": "library",
  2093. "extra": {
  2094. "branch-alias": {
  2095. "dev-master": "3.1-dev"
  2096. }
  2097. },
  2098. "autoload": {
  2099. "psr-4": {
  2100. "Hyperf\\Context\\": "src/"
  2101. }
  2102. },
  2103. "notification-url": "https://packagist.org/downloads/",
  2104. "license": [
  2105. "MIT"
  2106. ],
  2107. "description": "A coroutine/application context library.",
  2108. "homepage": "https://hyperf.io",
  2109. "keywords": [
  2110. "Context",
  2111. "hyperf",
  2112. "php",
  2113. "swoole"
  2114. ],
  2115. "support": {
  2116. "docs": "https://hyperf.wiki",
  2117. "issues": "https://github.com/hyperf/hyperf/issues",
  2118. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2119. "source": "https://github.com/hyperf/hyperf"
  2120. },
  2121. "funding": [
  2122. {
  2123. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2124. "type": "custom"
  2125. },
  2126. {
  2127. "url": "https://opencollective.com/hyperf",
  2128. "type": "open_collective"
  2129. }
  2130. ],
  2131. "time": "2024-09-25T02:54:12+00:00"
  2132. },
  2133. {
  2134. "name": "hyperf/contract",
  2135. "version": "v3.1.42",
  2136. "source": {
  2137. "type": "git",
  2138. "url": "https://github.com/hyperf/contract.git",
  2139. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2140. },
  2141. "dist": {
  2142. "type": "zip",
  2143. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2144. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2145. "shasum": ""
  2146. },
  2147. "require": {
  2148. "php": ">=8.1"
  2149. },
  2150. "type": "library",
  2151. "extra": {
  2152. "branch-alias": {
  2153. "dev-master": "3.1-dev"
  2154. }
  2155. },
  2156. "autoload": {
  2157. "psr-4": {
  2158. "Hyperf\\Contract\\": "src/"
  2159. }
  2160. },
  2161. "notification-url": "https://packagist.org/downloads/",
  2162. "license": [
  2163. "MIT"
  2164. ],
  2165. "description": "The contracts of Hyperf.",
  2166. "homepage": "https://hyperf.io",
  2167. "keywords": [
  2168. "hyperf",
  2169. "php",
  2170. "swoole"
  2171. ],
  2172. "support": {
  2173. "docs": "https://hyperf.wiki",
  2174. "issues": "https://github.com/hyperf/hyperf/issues",
  2175. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2176. "source": "https://github.com/hyperf/hyperf"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2181. "type": "custom"
  2182. },
  2183. {
  2184. "url": "https://opencollective.com/hyperf",
  2185. "type": "open_collective"
  2186. }
  2187. ],
  2188. "time": "2024-09-25T02:54:12+00:00"
  2189. },
  2190. {
  2191. "name": "hyperf/coordinator",
  2192. "version": "v3.1.42",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/hyperf/coordinator.git",
  2196. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2201. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "hyperf/engine": "^2.0",
  2206. "php": ">=8.1"
  2207. },
  2208. "type": "library",
  2209. "extra": {
  2210. "branch-alias": {
  2211. "dev-master": "3.1-dev"
  2212. }
  2213. },
  2214. "autoload": {
  2215. "files": [
  2216. "src/Functions.php"
  2217. ],
  2218. "psr-4": {
  2219. "Hyperf\\Coordinator\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "Hyperf Coordinator",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "Coordinator",
  2230. "hyperf",
  2231. "php",
  2232. "swoole"
  2233. ],
  2234. "support": {
  2235. "docs": "https://hyperf.wiki",
  2236. "issues": "https://github.com/hyperf/hyperf/issues",
  2237. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2238. "source": "https://github.com/hyperf/hyperf"
  2239. },
  2240. "funding": [
  2241. {
  2242. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2243. "type": "custom"
  2244. },
  2245. {
  2246. "url": "https://opencollective.com/hyperf",
  2247. "type": "open_collective"
  2248. }
  2249. ],
  2250. "time": "2024-09-25T02:54:12+00:00"
  2251. },
  2252. {
  2253. "name": "hyperf/coroutine",
  2254. "version": "v3.1.50",
  2255. "source": {
  2256. "type": "git",
  2257. "url": "https://github.com/hyperf/coroutine.git",
  2258. "reference": "c353b3fbd86e30b5b51219e8867d479ea11e6811"
  2259. },
  2260. "dist": {
  2261. "type": "zip",
  2262. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/c353b3fbd86e30b5b51219e8867d479ea11e6811",
  2263. "reference": "c353b3fbd86e30b5b51219e8867d479ea11e6811",
  2264. "shasum": ""
  2265. },
  2266. "require": {
  2267. "hyperf/context": "~3.1.0",
  2268. "hyperf/contract": "~3.1.0",
  2269. "hyperf/engine": "^2.0",
  2270. "php": ">=8.1"
  2271. },
  2272. "type": "library",
  2273. "extra": {
  2274. "branch-alias": {
  2275. "dev-master": "3.1-dev"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "files": [
  2280. "src/Functions.php"
  2281. ],
  2282. "psr-4": {
  2283. "Hyperf\\Coroutine\\": "src/"
  2284. }
  2285. },
  2286. "notification-url": "https://packagist.org/downloads/",
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "description": "Hyperf Coroutine",
  2291. "homepage": "https://hyperf.io",
  2292. "keywords": [
  2293. "coroutine",
  2294. "hyperf",
  2295. "php",
  2296. "swoole"
  2297. ],
  2298. "support": {
  2299. "docs": "https://hyperf.wiki",
  2300. "issues": "https://github.com/hyperf/hyperf/issues",
  2301. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2302. "source": "https://github.com/hyperf/hyperf"
  2303. },
  2304. "funding": [
  2305. {
  2306. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2307. "type": "custom"
  2308. },
  2309. {
  2310. "url": "https://opencollective.com/hyperf",
  2311. "type": "open_collective"
  2312. }
  2313. ],
  2314. "time": "2024-12-24T08:59:48+00:00"
  2315. },
  2316. {
  2317. "name": "hyperf/database",
  2318. "version": "v3.1.48",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/hyperf/database.git",
  2322. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2327. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "hyperf/code-parser": "~3.1.0",
  2332. "hyperf/collection": "~3.1.23",
  2333. "hyperf/conditionable": "~3.1.0",
  2334. "hyperf/macroable": "~3.1.0",
  2335. "hyperf/support": "~3.1.0",
  2336. "hyperf/tappable": "~3.1.0",
  2337. "hyperf/utils": "~3.1.0",
  2338. "nesbot/carbon": "^2.0",
  2339. "php": ">=8.1",
  2340. "psr/container": "^1.0 || ^2.0",
  2341. "psr/event-dispatcher": "^1.0"
  2342. },
  2343. "suggest": {
  2344. "doctrine/dbal": "Required to rename columns (^3.0).",
  2345. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2346. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2347. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2348. },
  2349. "type": "library",
  2350. "extra": {
  2351. "branch-alias": {
  2352. "dev-master": "3.1-dev"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\Database\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A flexible database library.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "database",
  2368. "hyperf",
  2369. "php"
  2370. ],
  2371. "support": {
  2372. "docs": "https://hyperf.wiki",
  2373. "issues": "https://github.com/hyperf/hyperf/issues",
  2374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2375. "source": "https://github.com/hyperf/hyperf"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://opencollective.com/hyperf",
  2384. "type": "open_collective"
  2385. }
  2386. ],
  2387. "time": "2024-12-12T01:58:16+00:00"
  2388. },
  2389. {
  2390. "name": "hyperf/db-connection",
  2391. "version": "v3.1.44",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/hyperf/db-connection.git",
  2395. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2400. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "hyperf/database": "~3.1.0",
  2405. "hyperf/di": "~3.1.0",
  2406. "hyperf/framework": "~3.1.0",
  2407. "hyperf/model-listener": "~3.1.0",
  2408. "hyperf/pool": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "hyperf/utils": "~3.1.0",
  2411. "php": ">=8.1",
  2412. "psr/container": "^1.0 || ^2.0"
  2413. },
  2414. "type": "library",
  2415. "extra": {
  2416. "hyperf": {
  2417. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2418. },
  2419. "branch-alias": {
  2420. "dev-master": "3.1-dev"
  2421. }
  2422. },
  2423. "autoload": {
  2424. "psr-4": {
  2425. "Hyperf\\DbConnection\\": "src/"
  2426. }
  2427. },
  2428. "notification-url": "https://packagist.org/downloads/",
  2429. "license": [
  2430. "MIT"
  2431. ],
  2432. "description": "A hyperf db connection handler for hyperf/database.",
  2433. "homepage": "https://hyperf.io",
  2434. "keywords": [
  2435. "Connection",
  2436. "database",
  2437. "hyperf",
  2438. "php"
  2439. ],
  2440. "support": {
  2441. "docs": "https://hyperf.wiki",
  2442. "issues": "https://github.com/hyperf/hyperf/issues",
  2443. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2444. "source": "https://github.com/hyperf/hyperf"
  2445. },
  2446. "funding": [
  2447. {
  2448. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2449. "type": "custom"
  2450. },
  2451. {
  2452. "url": "https://opencollective.com/hyperf",
  2453. "type": "open_collective"
  2454. }
  2455. ],
  2456. "time": "2024-10-11T08:58:16+00:00"
  2457. },
  2458. {
  2459. "name": "hyperf/di",
  2460. "version": "v3.1.42",
  2461. "source": {
  2462. "type": "git",
  2463. "url": "https://github.com/hyperf/di.git",
  2464. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2465. },
  2466. "dist": {
  2467. "type": "zip",
  2468. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2469. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2470. "shasum": ""
  2471. },
  2472. "require": {
  2473. "doctrine/instantiator": "^1.0",
  2474. "hyperf/code-parser": "~3.1.0",
  2475. "hyperf/pipeline": "~3.1.0",
  2476. "hyperf/stdlib": "~3.1.0",
  2477. "hyperf/support": "~3.1.0",
  2478. "nikic/php-parser": "^4.1",
  2479. "php": ">=8.1",
  2480. "php-di/phpdoc-reader": "^2.2",
  2481. "psr/container": "^1.0 || ^2.0",
  2482. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2483. "vlucas/phpdotenv": "^5.0"
  2484. },
  2485. "suggest": {
  2486. "ext-pcntl": "Required to scan annotations.",
  2487. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2488. },
  2489. "type": "library",
  2490. "extra": {
  2491. "hyperf": {
  2492. "config": "Hyperf\\Di\\ConfigProvider"
  2493. },
  2494. "branch-alias": {
  2495. "dev-master": "3.1-dev"
  2496. }
  2497. },
  2498. "autoload": {
  2499. "psr-4": {
  2500. "Hyperf\\Di\\": "src/"
  2501. }
  2502. },
  2503. "notification-url": "https://packagist.org/downloads/",
  2504. "license": [
  2505. "MIT"
  2506. ],
  2507. "description": "A DI for Hyperf.",
  2508. "homepage": "https://hyperf.io",
  2509. "keywords": [
  2510. "annotation",
  2511. "di",
  2512. "hyperf",
  2513. "php",
  2514. "swoole"
  2515. ],
  2516. "support": {
  2517. "docs": "https://hyperf.wiki",
  2518. "issues": "https://github.com/hyperf/hyperf/issues",
  2519. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2520. "source": "https://github.com/hyperf/hyperf"
  2521. },
  2522. "funding": [
  2523. {
  2524. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2525. "type": "custom"
  2526. },
  2527. {
  2528. "url": "https://opencollective.com/hyperf",
  2529. "type": "open_collective"
  2530. }
  2531. ],
  2532. "time": "2024-09-25T02:54:12+00:00"
  2533. },
  2534. {
  2535. "name": "hyperf/dispatcher",
  2536. "version": "v3.1.42",
  2537. "source": {
  2538. "type": "git",
  2539. "url": "https://github.com/hyperf/dispatcher.git",
  2540. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2541. },
  2542. "dist": {
  2543. "type": "zip",
  2544. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2545. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2546. "shasum": ""
  2547. },
  2548. "require": {
  2549. "hyperf/contract": "~3.1.0",
  2550. "php": ">=8.1",
  2551. "psr/container": "^1.0 || ^2.0",
  2552. "psr/http-message": "^1.0 || ^2.0",
  2553. "psr/http-server-middleware": "^1.0"
  2554. },
  2555. "type": "library",
  2556. "extra": {
  2557. "hyperf": {
  2558. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2559. },
  2560. "branch-alias": {
  2561. "dev-master": "3.1-dev"
  2562. }
  2563. },
  2564. "autoload": {
  2565. "psr-4": {
  2566. "Hyperf\\Dispatcher\\": "src/"
  2567. }
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "MIT"
  2572. ],
  2573. "description": "A HTTP Server for Hyperf.",
  2574. "homepage": "https://hyperf.io",
  2575. "keywords": [
  2576. "dispatcher",
  2577. "filter",
  2578. "hyperf",
  2579. "middleware",
  2580. "php",
  2581. "swoole"
  2582. ],
  2583. "support": {
  2584. "docs": "https://hyperf.wiki",
  2585. "issues": "https://github.com/hyperf/hyperf/issues",
  2586. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2587. "source": "https://github.com/hyperf/hyperf"
  2588. },
  2589. "funding": [
  2590. {
  2591. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2592. "type": "custom"
  2593. },
  2594. {
  2595. "url": "https://opencollective.com/hyperf",
  2596. "type": "open_collective"
  2597. }
  2598. ],
  2599. "time": "2024-09-25T02:54:12+00:00"
  2600. },
  2601. {
  2602. "name": "hyperf/engine",
  2603. "version": "v2.12.1",
  2604. "source": {
  2605. "type": "git",
  2606. "url": "https://github.com/hyperf/engine.git",
  2607. "reference": "90be8143841482dcd00051050986251e126c6132"
  2608. },
  2609. "dist": {
  2610. "type": "zip",
  2611. "url": "https://api.github.com/repos/hyperf/engine/zipball/90be8143841482dcd00051050986251e126c6132",
  2612. "reference": "90be8143841482dcd00051050986251e126c6132",
  2613. "shasum": ""
  2614. },
  2615. "require": {
  2616. "hyperf/engine-contract": "~1.11.0",
  2617. "php": ">=8.0"
  2618. },
  2619. "conflict": {
  2620. "ext-swoole": "<5.0"
  2621. },
  2622. "require-dev": {
  2623. "friendsofphp/php-cs-fixer": "^3.0",
  2624. "hyperf/guzzle": "^3.0",
  2625. "hyperf/http-message": "^3.0",
  2626. "mockery/mockery": "^1.5",
  2627. "phpstan/phpstan": "^1.0",
  2628. "phpunit/phpunit": "^9.4",
  2629. "swoole/ide-helper": "5.*"
  2630. },
  2631. "suggest": {
  2632. "ext-sockets": "*",
  2633. "ext-swoole": ">=5.0",
  2634. "hyperf/http-message": "Required to use ResponseEmitter.",
  2635. "psr/http-message": "Required to use WebSocket Frame."
  2636. },
  2637. "type": "library",
  2638. "extra": {
  2639. "hyperf": {
  2640. "config": "Hyperf\\Engine\\ConfigProvider"
  2641. }
  2642. },
  2643. "autoload": {
  2644. "files": [
  2645. "src/Functions.php"
  2646. ],
  2647. "psr-4": {
  2648. "Hyperf\\Engine\\": "src/"
  2649. }
  2650. },
  2651. "notification-url": "https://packagist.org/downloads/",
  2652. "license": [
  2653. "MIT"
  2654. ],
  2655. "description": "Coroutine engine provided by swoole.",
  2656. "keywords": [
  2657. "engine",
  2658. "hyperf",
  2659. "php",
  2660. "swoole"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/hyperf/engine/issues",
  2664. "source": "https://github.com/hyperf/engine/tree/v2.12.1"
  2665. },
  2666. "funding": [
  2667. {
  2668. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2669. "type": "custom"
  2670. },
  2671. {
  2672. "url": "https://opencollective.com/hyperf",
  2673. "type": "open_collective"
  2674. }
  2675. ],
  2676. "time": "2024-12-17T12:36:21+00:00"
  2677. },
  2678. {
  2679. "name": "hyperf/engine-contract",
  2680. "version": "v1.11.0",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/hyperf/engine-contract.git",
  2684. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2689. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "php": ">=8.0"
  2694. },
  2695. "require-dev": {
  2696. "friendsofphp/php-cs-fixer": "^3.0",
  2697. "mockery/mockery": "^1.0",
  2698. "phpstan/phpstan": "^1.0",
  2699. "phpunit/phpunit": ">=7.0",
  2700. "psr/http-message": "^1.0",
  2701. "swoole/ide-helper": "^4.5"
  2702. },
  2703. "suggest": {
  2704. "psr/http-message": "Required to use WebSocket Frame."
  2705. },
  2706. "type": "library",
  2707. "extra": {
  2708. "branch-alias": {
  2709. "dev-master": "1.9-dev"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "psr-4": {
  2714. "Hyperf\\Engine\\Contract\\": "src/"
  2715. }
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "description": "Contract for Coroutine Engine",
  2722. "keywords": [
  2723. "contract",
  2724. "coroutine",
  2725. "engine",
  2726. "hyperf",
  2727. "php"
  2728. ],
  2729. "support": {
  2730. "issues": "https://github.com/hyperf/engine-contract/issues",
  2731. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2736. "type": "custom"
  2737. },
  2738. {
  2739. "url": "https://opencollective.com/hyperf",
  2740. "type": "open_collective"
  2741. }
  2742. ],
  2743. "time": "2024-11-19T04:15:31+00:00"
  2744. },
  2745. {
  2746. "name": "hyperf/event",
  2747. "version": "v3.1.42",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/hyperf/event.git",
  2751. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2756. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "hyperf/contract": "~3.1.0",
  2761. "hyperf/stdlib": "~3.1.0",
  2762. "php": ">=8.1",
  2763. "psr/event-dispatcher": "^1.0"
  2764. },
  2765. "suggest": {
  2766. "hyperf/di": "Required to use annotatioins."
  2767. },
  2768. "type": "library",
  2769. "extra": {
  2770. "hyperf": {
  2771. "config": "Hyperf\\Event\\ConfigProvider"
  2772. },
  2773. "branch-alias": {
  2774. "dev-master": "3.1-dev"
  2775. }
  2776. },
  2777. "autoload": {
  2778. "psr-4": {
  2779. "Hyperf\\Event\\": "src/"
  2780. }
  2781. },
  2782. "notification-url": "https://packagist.org/downloads/",
  2783. "license": [
  2784. "MIT"
  2785. ],
  2786. "description": "an event manager that implements PSR-14.",
  2787. "homepage": "https://hyperf.io",
  2788. "keywords": [
  2789. "event",
  2790. "hyperf",
  2791. "php",
  2792. "swoole"
  2793. ],
  2794. "support": {
  2795. "docs": "https://hyperf.wiki",
  2796. "issues": "https://github.com/hyperf/hyperf/issues",
  2797. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2798. "source": "https://github.com/hyperf/hyperf"
  2799. },
  2800. "funding": [
  2801. {
  2802. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2803. "type": "custom"
  2804. },
  2805. {
  2806. "url": "https://opencollective.com/hyperf",
  2807. "type": "open_collective"
  2808. }
  2809. ],
  2810. "time": "2024-09-25T02:54:12+00:00"
  2811. },
  2812. {
  2813. "name": "hyperf/exception-handler",
  2814. "version": "v3.1.42",
  2815. "source": {
  2816. "type": "git",
  2817. "url": "https://github.com/hyperf/exception-handler.git",
  2818. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2819. },
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2823. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "hyperf/context": "~3.1.0",
  2828. "hyperf/contract": "~3.1.0",
  2829. "hyperf/dispatcher": "~3.1.0",
  2830. "hyperf/http-message": "~3.1.0",
  2831. "hyperf/stdlib": "~3.1.0",
  2832. "hyperf/support": "~3.1.0",
  2833. "php": ">=8.1",
  2834. "psr/container": "^1.0 || ^2.0",
  2835. "psr/http-message": "^1.0 || ^2.0",
  2836. "swow/psr7-plus": "^1.0"
  2837. },
  2838. "suggest": {
  2839. "hyperf/di": "Required to use #[ExceptionHandler]",
  2840. "hyperf/event": "Required to use listeners",
  2841. "hyperf/framework": "Required to use listeners",
  2842. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2843. },
  2844. "type": "library",
  2845. "extra": {
  2846. "hyperf": {
  2847. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2848. },
  2849. "branch-alias": {
  2850. "dev-master": "3.1-dev"
  2851. }
  2852. },
  2853. "autoload": {
  2854. "psr-4": {
  2855. "Hyperf\\ExceptionHandler\\": "src/"
  2856. }
  2857. },
  2858. "notification-url": "https://packagist.org/downloads/",
  2859. "license": [
  2860. "MIT"
  2861. ],
  2862. "description": "Exception handler for hyperf",
  2863. "homepage": "https://hyperf.io",
  2864. "keywords": [
  2865. "exception-handler",
  2866. "php",
  2867. "swoole"
  2868. ],
  2869. "support": {
  2870. "docs": "https://hyperf.wiki",
  2871. "issues": "https://github.com/hyperf/hyperf/issues",
  2872. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2873. "source": "https://github.com/hyperf/hyperf"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://opencollective.com/hyperf",
  2882. "type": "open_collective"
  2883. }
  2884. ],
  2885. "time": "2024-09-25T02:54:12+00:00"
  2886. },
  2887. {
  2888. "name": "hyperf/framework",
  2889. "version": "v3.1.42",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/hyperf/framework.git",
  2893. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2898. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "fig/http-message-util": "^1.1.2",
  2903. "hyperf/contract": "~3.1.0",
  2904. "hyperf/coordinator": "~3.1.0",
  2905. "hyperf/coroutine": "~3.1.0",
  2906. "php": ">=8.1",
  2907. "psr/container": "^1.0 || ^2.0",
  2908. "psr/event-dispatcher": "^1.0",
  2909. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2910. },
  2911. "suggest": {
  2912. "ext-swoole": "Required to use swoole engine.",
  2913. "hyperf/command": "Required to use Command annotation.",
  2914. "hyperf/di": "Required to use Command annotation.",
  2915. "hyperf/dispatcher": "Required to use BootApplication event.",
  2916. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "hyperf": {
  2921. "config": "Hyperf\\Framework\\ConfigProvider"
  2922. },
  2923. "branch-alias": {
  2924. "dev-master": "3.1-dev"
  2925. }
  2926. },
  2927. "autoload": {
  2928. "psr-4": {
  2929. "Hyperf\\Framework\\": "src/"
  2930. }
  2931. },
  2932. "notification-url": "https://packagist.org/downloads/",
  2933. "license": [
  2934. "MIT"
  2935. ],
  2936. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2937. "homepage": "https://hyperf.io",
  2938. "keywords": [
  2939. "Microservice",
  2940. "framework",
  2941. "hyperf",
  2942. "middleware",
  2943. "php",
  2944. "swoole"
  2945. ],
  2946. "support": {
  2947. "docs": "https://hyperf.wiki",
  2948. "issues": "https://github.com/hyperf/hyperf/issues",
  2949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2950. "source": "https://github.com/hyperf/hyperf"
  2951. },
  2952. "funding": [
  2953. {
  2954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2955. "type": "custom"
  2956. },
  2957. {
  2958. "url": "https://opencollective.com/hyperf",
  2959. "type": "open_collective"
  2960. }
  2961. ],
  2962. "time": "2024-09-25T02:54:12+00:00"
  2963. },
  2964. {
  2965. "name": "hyperf/guzzle",
  2966. "version": "v3.1.42",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/hyperf/guzzle.git",
  2970. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2975. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2980. "php": ">=8.1",
  2981. "psr/container": "^1.0 || ^2.0",
  2982. "psr/http-message": "^1.0 || ^2.0"
  2983. },
  2984. "suggest": {
  2985. "ext-curl": "Required for CURL handler support",
  2986. "hyperf/pool": "Required to use pool handler."
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "hyperf": {
  2991. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2992. },
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Hyperf\\Guzzle\\": "src/"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "description": "Swoole coroutine handler for guzzle",
  3007. "keywords": [
  3008. "Guzzle",
  3009. "handler",
  3010. "php",
  3011. "swoole"
  3012. ],
  3013. "support": {
  3014. "issues": "https://github.com/hyperf/guzzle/issues",
  3015. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  3016. },
  3017. "funding": [
  3018. {
  3019. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3020. "type": "custom"
  3021. },
  3022. {
  3023. "url": "https://opencollective.com/hyperf",
  3024. "type": "open_collective"
  3025. }
  3026. ],
  3027. "time": "2024-09-25T02:54:12+00:00"
  3028. },
  3029. {
  3030. "name": "hyperf/http-message",
  3031. "version": "v3.1.48",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/hyperf/http-message.git",
  3035. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3040. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "hyperf/codec": "~3.1.0",
  3045. "hyperf/engine": "^2.11",
  3046. "hyperf/support": "~3.1.0",
  3047. "laminas/laminas-mime": "^2.7",
  3048. "php": ">=8.1",
  3049. "psr/http-message": "^1.0 || ^2.0",
  3050. "swow/psr7-plus": "^1.0"
  3051. },
  3052. "suggest": {
  3053. "psr/container": "Required to replace RequestParserInterface."
  3054. },
  3055. "type": "library",
  3056. "extra": {
  3057. "hyperf": {
  3058. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  3059. },
  3060. "branch-alias": {
  3061. "dev-master": "3.1-dev"
  3062. }
  3063. },
  3064. "autoload": {
  3065. "psr-4": {
  3066. "Hyperf\\HttpMessage\\": "src/"
  3067. }
  3068. },
  3069. "notification-url": "https://packagist.org/downloads/",
  3070. "license": [
  3071. "MIT"
  3072. ],
  3073. "description": "microservice framework base on swoole",
  3074. "keywords": [
  3075. "http-message",
  3076. "hyperf",
  3077. "php",
  3078. "swoole"
  3079. ],
  3080. "support": {
  3081. "issues": "https://github.com/hyperf/http-message/issues",
  3082. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  3083. },
  3084. "funding": [
  3085. {
  3086. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3087. "type": "custom"
  3088. },
  3089. {
  3090. "url": "https://opencollective.com/hyperf",
  3091. "type": "open_collective"
  3092. }
  3093. ],
  3094. "time": "2024-12-05T02:41:08+00:00"
  3095. },
  3096. {
  3097. "name": "hyperf/http-server",
  3098. "version": "v3.1.42",
  3099. "source": {
  3100. "type": "git",
  3101. "url": "https://github.com/hyperf/http-server.git",
  3102. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3103. },
  3104. "dist": {
  3105. "type": "zip",
  3106. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3107. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3108. "shasum": ""
  3109. },
  3110. "require": {
  3111. "hyperf/codec": "~3.1.0",
  3112. "hyperf/collection": "~3.1.0",
  3113. "hyperf/context": "~3.1.0",
  3114. "hyperf/contract": "~3.1.0",
  3115. "hyperf/coroutine": "~3.1.0",
  3116. "hyperf/dispatcher": "~3.1.0",
  3117. "hyperf/event": "~3.1.0",
  3118. "hyperf/exception-handler": "~3.1.0",
  3119. "hyperf/http-message": "~3.1.0",
  3120. "hyperf/macroable": "~3.1.0",
  3121. "hyperf/serializer": "~3.1.0",
  3122. "hyperf/server": "~3.1.0",
  3123. "hyperf/stdlib": "~3.1.0",
  3124. "hyperf/support": "~3.1.0",
  3125. "nikic/fast-route": "^1.3",
  3126. "php": ">=8.1",
  3127. "psr/container": "^1.0 || ^2.0",
  3128. "swow/psr7-plus": "^1.0"
  3129. },
  3130. "suggest": {
  3131. "hyperf/di": "Required to use annotations."
  3132. },
  3133. "type": "library",
  3134. "extra": {
  3135. "hyperf": {
  3136. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3137. },
  3138. "branch-alias": {
  3139. "dev-master": "3.1-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "psr-4": {
  3144. "Hyperf\\HttpServer\\": "src/"
  3145. }
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "MIT"
  3150. ],
  3151. "description": "A HTTP Server for Hyperf.",
  3152. "homepage": "https://hyperf.io",
  3153. "keywords": [
  3154. "http",
  3155. "http-server",
  3156. "hyperf",
  3157. "php",
  3158. "swoole"
  3159. ],
  3160. "support": {
  3161. "docs": "https://hyperf.wiki",
  3162. "issues": "https://github.com/hyperf/hyperf/issues",
  3163. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3164. "source": "https://github.com/hyperf/hyperf"
  3165. },
  3166. "funding": [
  3167. {
  3168. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3169. "type": "custom"
  3170. },
  3171. {
  3172. "url": "https://opencollective.com/hyperf",
  3173. "type": "open_collective"
  3174. }
  3175. ],
  3176. "time": "2024-09-25T02:54:12+00:00"
  3177. },
  3178. {
  3179. "name": "hyperf/json-rpc",
  3180. "version": "v3.1.47",
  3181. "source": {
  3182. "type": "git",
  3183. "url": "https://github.com/hyperf/json-rpc.git",
  3184. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3185. },
  3186. "dist": {
  3187. "type": "zip",
  3188. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3189. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3190. "shasum": ""
  3191. },
  3192. "require": {
  3193. "hyperf/codec": "~3.1.0",
  3194. "hyperf/context": "~3.1.0",
  3195. "hyperf/contract": "~3.1.0",
  3196. "hyperf/engine": "^2.0",
  3197. "hyperf/http-message": "~3.1.0",
  3198. "hyperf/load-balancer": "~3.1.0",
  3199. "hyperf/rpc": "~3.1.0",
  3200. "hyperf/serializer": "~3.1.0",
  3201. "hyperf/support": "~3.1.0",
  3202. "hyperf/utils": "~3.1.0",
  3203. "php": ">=8.1",
  3204. "psr/container": "^1.0 || ^2.0",
  3205. "swow/psr7-plus": "^1.0"
  3206. },
  3207. "suggest": {
  3208. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3209. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3210. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3211. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3212. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "hyperf": {
  3217. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3218. },
  3219. "branch-alias": {
  3220. "dev-master": "3.1-dev"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Hyperf\\JsonRpc\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3233. "homepage": "https://hyperf.io",
  3234. "keywords": [
  3235. "hyperf",
  3236. "json-rpc",
  3237. "php",
  3238. "swoole"
  3239. ],
  3240. "support": {
  3241. "docs": "https://hyperf.wiki",
  3242. "issues": "https://github.com/hyperf/hyperf/issues",
  3243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3244. "source": "https://github.com/hyperf/hyperf"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://opencollective.com/hyperf",
  3253. "type": "open_collective"
  3254. }
  3255. ],
  3256. "time": "2024-11-28T01:51:55+00:00"
  3257. },
  3258. {
  3259. "name": "hyperf/load-balancer",
  3260. "version": "v3.1.42",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/hyperf/load-balancer.git",
  3264. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3269. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "hyperf/coordinator": "~3.1.0",
  3274. "hyperf/coroutine": "~3.1.0",
  3275. "markrogoyski/math-php": "^2.0",
  3276. "php": ">=8.1",
  3277. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "hyperf": {
  3282. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3283. },
  3284. "branch-alias": {
  3285. "dev-master": "3.1-dev"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Hyperf\\LoadBalancer\\": "src/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "description": "A load balancer library for Hyperf.",
  3298. "homepage": "https://hyperf.io",
  3299. "keywords": [
  3300. "hyperf",
  3301. "load-balancer",
  3302. "php",
  3303. "swoole"
  3304. ],
  3305. "support": {
  3306. "docs": "https://hyperf.wiki",
  3307. "issues": "https://github.com/hyperf/hyperf/issues",
  3308. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3309. "source": "https://github.com/hyperf/hyperf"
  3310. },
  3311. "funding": [
  3312. {
  3313. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3314. "type": "custom"
  3315. },
  3316. {
  3317. "url": "https://opencollective.com/hyperf",
  3318. "type": "open_collective"
  3319. }
  3320. ],
  3321. "time": "2024-09-25T02:54:12+00:00"
  3322. },
  3323. {
  3324. "name": "hyperf/logger",
  3325. "version": "v3.1.42",
  3326. "source": {
  3327. "type": "git",
  3328. "url": "https://github.com/hyperf/logger.git",
  3329. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3330. },
  3331. "dist": {
  3332. "type": "zip",
  3333. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3334. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3335. "shasum": ""
  3336. },
  3337. "require": {
  3338. "hyperf/contract": "~3.1.0",
  3339. "hyperf/support": "~3.1.0",
  3340. "hyperf/utils": "~3.1.0",
  3341. "monolog/monolog": "^2.7 || ^3.1",
  3342. "php": ">=8.1",
  3343. "psr/container": "^1.0 || ^2.0",
  3344. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3345. },
  3346. "type": "library",
  3347. "extra": {
  3348. "hyperf": {
  3349. "config": "Hyperf\\Logger\\ConfigProvider"
  3350. },
  3351. "branch-alias": {
  3352. "dev-master": "3.1-dev"
  3353. }
  3354. },
  3355. "autoload": {
  3356. "psr-4": {
  3357. "Hyperf\\Logger\\": "src/"
  3358. }
  3359. },
  3360. "notification-url": "https://packagist.org/downloads/",
  3361. "license": [
  3362. "MIT"
  3363. ],
  3364. "description": "A logger component for hyperf.",
  3365. "homepage": "https://hyperf.io",
  3366. "keywords": [
  3367. "hyperf",
  3368. "logger",
  3369. "php"
  3370. ],
  3371. "support": {
  3372. "docs": "https://hyperf.wiki",
  3373. "issues": "https://github.com/hyperf/hyperf/issues",
  3374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3375. "source": "https://github.com/hyperf/hyperf"
  3376. },
  3377. "funding": [
  3378. {
  3379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3380. "type": "custom"
  3381. },
  3382. {
  3383. "url": "https://opencollective.com/hyperf",
  3384. "type": "open_collective"
  3385. }
  3386. ],
  3387. "time": "2024-09-25T02:54:12+00:00"
  3388. },
  3389. {
  3390. "name": "hyperf/macroable",
  3391. "version": "v3.1.42",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/hyperf/macroable.git",
  3395. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3400. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "php": ">=8.1"
  3405. },
  3406. "type": "library",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-master": "3.1-dev"
  3410. }
  3411. },
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Hyperf\\Macroable\\": "src/"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3422. "homepage": "https://hyperf.io",
  3423. "keywords": [
  3424. "hyperf",
  3425. "macroable",
  3426. "php",
  3427. "swoole"
  3428. ],
  3429. "support": {
  3430. "docs": "https://hyperf.wiki",
  3431. "issues": "https://github.com/hyperf/hyperf/issues",
  3432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3433. "source": "https://github.com/hyperf/hyperf"
  3434. },
  3435. "funding": [
  3436. {
  3437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3438. "type": "custom"
  3439. },
  3440. {
  3441. "url": "https://opencollective.com/hyperf",
  3442. "type": "open_collective"
  3443. }
  3444. ],
  3445. "time": "2024-09-25T02:54:12+00:00"
  3446. },
  3447. {
  3448. "name": "hyperf/memory",
  3449. "version": "v3.1.42",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/hyperf/memory.git",
  3453. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3458. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "php": ">=8.1"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "hyperf": {
  3467. "config": "Hyperf\\Memory\\ConfigProvider"
  3468. },
  3469. "branch-alias": {
  3470. "dev-master": "3.1-dev"
  3471. }
  3472. },
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Hyperf\\Memory\\": "src/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "description": "An independent component that use to operate and manage memory.",
  3483. "homepage": "https://hyperf.io",
  3484. "keywords": [
  3485. "hyperf",
  3486. "memory",
  3487. "php",
  3488. "swoole"
  3489. ],
  3490. "support": {
  3491. "docs": "https://hyperf.wiki",
  3492. "issues": "https://github.com/hyperf/hyperf/issues",
  3493. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3494. "source": "https://github.com/hyperf/hyperf"
  3495. },
  3496. "funding": [
  3497. {
  3498. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3499. "type": "custom"
  3500. },
  3501. {
  3502. "url": "https://opencollective.com/hyperf",
  3503. "type": "open_collective"
  3504. }
  3505. ],
  3506. "time": "2024-09-25T02:54:12+00:00"
  3507. },
  3508. {
  3509. "name": "hyperf/model-listener",
  3510. "version": "v3.1.42",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/hyperf/model-listener.git",
  3514. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3519. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3520. "shasum": ""
  3521. },
  3522. "require": {
  3523. "hyperf/contract": "~3.1.0",
  3524. "hyperf/database": "~3.1.0",
  3525. "hyperf/di": "~3.1.0",
  3526. "hyperf/event": "~3.1.0",
  3527. "hyperf/support": "~3.1.0",
  3528. "hyperf/utils": "~3.1.0",
  3529. "php": ">=8.1",
  3530. "psr/container": "^1.0 || ^2.0"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "hyperf": {
  3535. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3536. },
  3537. "branch-alias": {
  3538. "dev-master": "3.1-dev"
  3539. }
  3540. },
  3541. "autoload": {
  3542. "psr-4": {
  3543. "Hyperf\\ModelListener\\": "src/"
  3544. }
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "description": "A model listener for Hyperf.",
  3551. "homepage": "https://hyperf.io",
  3552. "keywords": [
  3553. "hyperf",
  3554. "model-listener",
  3555. "php",
  3556. "swoole"
  3557. ],
  3558. "support": {
  3559. "docs": "https://hyperf.wiki",
  3560. "issues": "https://github.com/hyperf/hyperf/issues",
  3561. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3562. "source": "https://github.com/hyperf/hyperf"
  3563. },
  3564. "funding": [
  3565. {
  3566. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3567. "type": "custom"
  3568. },
  3569. {
  3570. "url": "https://opencollective.com/hyperf",
  3571. "type": "open_collective"
  3572. }
  3573. ],
  3574. "time": "2024-09-25T02:54:12+00:00"
  3575. },
  3576. {
  3577. "name": "hyperf/nacos",
  3578. "version": "v3.1.42",
  3579. "source": {
  3580. "type": "git",
  3581. "url": "https://github.com/hyperf/nacos.git",
  3582. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3583. },
  3584. "dist": {
  3585. "type": "zip",
  3586. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3587. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3588. "shasum": ""
  3589. },
  3590. "require": {
  3591. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3592. "hyperf/codec": "~3.1.0",
  3593. "hyperf/contract": "~3.1.0",
  3594. "hyperf/support": "~3.1.0",
  3595. "hyperf/utils": "~3.1.0",
  3596. "jetbrains/phpstorm-attributes": "^1.0",
  3597. "php": ">=8.1"
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "hyperf": {
  3602. "config": "Hyperf\\Nacos\\ConfigProvider"
  3603. },
  3604. "branch-alias": {
  3605. "dev-master": "3.1-dev"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Hyperf\\Nacos\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "description": "Nacos SDK",
  3618. "keywords": [
  3619. "hyperf",
  3620. "nacos",
  3621. "php"
  3622. ],
  3623. "support": {
  3624. "issues": "https://github.com/hyperf/nacos/issues",
  3625. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3626. },
  3627. "funding": [
  3628. {
  3629. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3630. "type": "custom"
  3631. },
  3632. {
  3633. "url": "https://opencollective.com/hyperf",
  3634. "type": "open_collective"
  3635. }
  3636. ],
  3637. "time": "2024-09-25T02:54:12+00:00"
  3638. },
  3639. {
  3640. "name": "hyperf/paginator",
  3641. "version": "v3.1.49",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/hyperf/paginator.git",
  3645. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3650. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3651. "shasum": ""
  3652. },
  3653. "require": {
  3654. "hyperf/contract": "~3.1.0",
  3655. "hyperf/support": "~3.1.0",
  3656. "hyperf/utils": "~3.1.0",
  3657. "php": ">=8.1"
  3658. },
  3659. "suggest": {
  3660. "hyperf/event": "Reqiured to use PageResolverListener.",
  3661. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3662. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3663. },
  3664. "type": "library",
  3665. "extra": {
  3666. "hyperf": {
  3667. "config": "Hyperf\\Paginator\\ConfigProvider"
  3668. },
  3669. "branch-alias": {
  3670. "dev-master": "3.1-dev"
  3671. }
  3672. },
  3673. "autoload": {
  3674. "psr-4": {
  3675. "Hyperf\\Paginator\\": "src/"
  3676. }
  3677. },
  3678. "notification-url": "https://packagist.org/downloads/",
  3679. "license": [
  3680. "MIT"
  3681. ],
  3682. "description": "A paginator component for hyperf.",
  3683. "homepage": "https://hyperf.io",
  3684. "keywords": [
  3685. "hyperf",
  3686. "paginator",
  3687. "php"
  3688. ],
  3689. "support": {
  3690. "docs": "https://hyperf.wiki",
  3691. "issues": "https://github.com/hyperf/hyperf/issues",
  3692. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3693. "source": "https://github.com/hyperf/hyperf"
  3694. },
  3695. "funding": [
  3696. {
  3697. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3698. "type": "custom"
  3699. },
  3700. {
  3701. "url": "https://opencollective.com/hyperf",
  3702. "type": "open_collective"
  3703. }
  3704. ],
  3705. "time": "2024-12-17T09:42:13+00:00"
  3706. },
  3707. {
  3708. "name": "hyperf/pipeline",
  3709. "version": "v3.1.42",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/hyperf/pipeline.git",
  3713. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3718. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3719. "shasum": ""
  3720. },
  3721. "require": {
  3722. "php": ">=8.1",
  3723. "psr/container": "^1.0 || ^2.0"
  3724. },
  3725. "type": "library",
  3726. "extra": {
  3727. "branch-alias": {
  3728. "dev-master": "3.1-dev"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Hyperf\\Pipeline\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3741. "homepage": "https://hyperf.io",
  3742. "keywords": [
  3743. "hyperf",
  3744. "php",
  3745. "pipeline",
  3746. "swoole"
  3747. ],
  3748. "support": {
  3749. "docs": "https://hyperf.wiki",
  3750. "issues": "https://github.com/hyperf/hyperf/issues",
  3751. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3752. "source": "https://github.com/hyperf/hyperf"
  3753. },
  3754. "funding": [
  3755. {
  3756. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3757. "type": "custom"
  3758. },
  3759. {
  3760. "url": "https://opencollective.com/hyperf",
  3761. "type": "open_collective"
  3762. }
  3763. ],
  3764. "time": "2024-09-25T02:54:12+00:00"
  3765. },
  3766. {
  3767. "name": "hyperf/pool",
  3768. "version": "v3.1.42",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/hyperf/pool.git",
  3772. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3777. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "hyperf/contract": "~3.1.0",
  3782. "hyperf/support": "~3.1.0",
  3783. "hyperf/utils": "~3.1.0",
  3784. "php": ">=8.1",
  3785. "psr/container": "^1.0 || ^2.0"
  3786. },
  3787. "suggest": {
  3788. "psr/event-dispatcher": "Required to use events."
  3789. },
  3790. "type": "library",
  3791. "extra": {
  3792. "hyperf": {
  3793. "config": "Hyperf\\Pool\\ConfigProvider"
  3794. },
  3795. "branch-alias": {
  3796. "dev-master": "3.1-dev"
  3797. }
  3798. },
  3799. "autoload": {
  3800. "psr-4": {
  3801. "Hyperf\\Pool\\": "src/"
  3802. }
  3803. },
  3804. "notification-url": "https://packagist.org/downloads/",
  3805. "license": [
  3806. "MIT"
  3807. ],
  3808. "description": "An independent universal connection pool component.",
  3809. "homepage": "https://hyperf.io",
  3810. "keywords": [
  3811. "connection-pool",
  3812. "hyperf",
  3813. "php",
  3814. "swoole"
  3815. ],
  3816. "support": {
  3817. "docs": "https://hyperf.wiki",
  3818. "issues": "https://github.com/hyperf/hyperf/issues",
  3819. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3820. "source": "https://github.com/hyperf/hyperf"
  3821. },
  3822. "funding": [
  3823. {
  3824. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3825. "type": "custom"
  3826. },
  3827. {
  3828. "url": "https://opencollective.com/hyperf",
  3829. "type": "open_collective"
  3830. }
  3831. ],
  3832. "time": "2024-09-25T02:54:12+00:00"
  3833. },
  3834. {
  3835. "name": "hyperf/process",
  3836. "version": "v3.1.42",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://github.com/hyperf/process.git",
  3840. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3845. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3846. "shasum": ""
  3847. },
  3848. "require": {
  3849. "hyperf/contract": "~3.1.0",
  3850. "hyperf/support": "~3.1.0",
  3851. "hyperf/utils": "~3.1.0",
  3852. "php": ">=8.1",
  3853. "psr/container": "^1.0 || ^2.0",
  3854. "psr/event-dispatcher": "^1.0"
  3855. },
  3856. "suggest": {
  3857. "hyperf/di": "Required to use annotations.",
  3858. "hyperf/event": "Required to dump the message before and after process.",
  3859. "hyperf/framework": "Required to use BootProcessListener."
  3860. },
  3861. "type": "library",
  3862. "extra": {
  3863. "hyperf": {
  3864. "config": "Hyperf\\Process\\ConfigProvider"
  3865. },
  3866. "branch-alias": {
  3867. "dev-master": "3.1-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Hyperf\\Process\\": "src/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "description": "A process component for hyperf.",
  3880. "homepage": "https://hyperf.io",
  3881. "keywords": [
  3882. "hyperf",
  3883. "php",
  3884. "process"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2024-09-25T02:54:12+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/redis",
  3906. "version": "v3.1.42",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/redis.git",
  3910. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3915. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "ext-redis": "^5.0 || ^6.0",
  3920. "hyperf/contract": "~3.1.0",
  3921. "hyperf/pool": "~3.1.0",
  3922. "hyperf/support": "~3.1.0",
  3923. "hyperf/tappable": "~3.1.0",
  3924. "hyperf/utils": "~3.1.0",
  3925. "php": ">=8.1",
  3926. "psr/container": "^1.0 || ^2.0"
  3927. },
  3928. "suggest": {
  3929. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3930. "hyperf/di": "Create the RedisPool via dependency injection."
  3931. },
  3932. "type": "library",
  3933. "extra": {
  3934. "hyperf": {
  3935. "config": "Hyperf\\Redis\\ConfigProvider"
  3936. },
  3937. "branch-alias": {
  3938. "dev-master": "3.1-dev"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Hyperf\\Redis\\": "src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "description": "A redis component for hyperf.",
  3951. "homepage": "https://hyperf.io",
  3952. "keywords": [
  3953. "hyperf",
  3954. "php",
  3955. "pool",
  3956. "redis"
  3957. ],
  3958. "support": {
  3959. "docs": "https://hyperf.wiki",
  3960. "issues": "https://github.com/hyperf/hyperf/issues",
  3961. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3962. "source": "https://github.com/hyperf/hyperf"
  3963. },
  3964. "funding": [
  3965. {
  3966. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3967. "type": "custom"
  3968. },
  3969. {
  3970. "url": "https://opencollective.com/hyperf",
  3971. "type": "open_collective"
  3972. }
  3973. ],
  3974. "time": "2024-09-25T02:54:12+00:00"
  3975. },
  3976. {
  3977. "name": "hyperf/rpc",
  3978. "version": "v3.1.42",
  3979. "source": {
  3980. "type": "git",
  3981. "url": "https://github.com/hyperf/rpc.git",
  3982. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3983. },
  3984. "dist": {
  3985. "type": "zip",
  3986. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3987. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3988. "shasum": ""
  3989. },
  3990. "require": {
  3991. "hyperf/codec": "~3.1.0",
  3992. "hyperf/contract": "~3.1.0",
  3993. "hyperf/support": "~3.1.0",
  3994. "jetbrains/phpstorm-attributes": "^1.0",
  3995. "php": ">=8.1"
  3996. },
  3997. "type": "library",
  3998. "extra": {
  3999. "hyperf": [],
  4000. "branch-alias": {
  4001. "dev-master": "3.1-dev"
  4002. }
  4003. },
  4004. "autoload": {
  4005. "psr-4": {
  4006. "Hyperf\\Rpc\\": "src/"
  4007. }
  4008. },
  4009. "notification-url": "https://packagist.org/downloads/",
  4010. "license": [
  4011. "MIT"
  4012. ],
  4013. "description": "A rpc basic library for Hyperf.",
  4014. "homepage": "https://hyperf.io",
  4015. "keywords": [
  4016. "hyperf",
  4017. "php",
  4018. "rpc",
  4019. "swoole"
  4020. ],
  4021. "support": {
  4022. "docs": "https://hyperf.wiki",
  4023. "issues": "https://github.com/hyperf/hyperf/issues",
  4024. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4025. "source": "https://github.com/hyperf/hyperf"
  4026. },
  4027. "funding": [
  4028. {
  4029. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4030. "type": "custom"
  4031. },
  4032. {
  4033. "url": "https://opencollective.com/hyperf",
  4034. "type": "open_collective"
  4035. }
  4036. ],
  4037. "time": "2024-09-25T02:54:12+00:00"
  4038. },
  4039. {
  4040. "name": "hyperf/rpc-client",
  4041. "version": "v3.1.42",
  4042. "source": {
  4043. "type": "git",
  4044. "url": "https://github.com/hyperf/rpc-client.git",
  4045. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  4046. },
  4047. "dist": {
  4048. "type": "zip",
  4049. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  4050. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  4051. "shasum": ""
  4052. },
  4053. "require": {
  4054. "hyperf/code-parser": "~3.1.0",
  4055. "hyperf/load-balancer": "~3.1.0",
  4056. "hyperf/rpc": "~3.1.0",
  4057. "hyperf/support": "~3.1.0",
  4058. "hyperf/utils": "~3.1.0",
  4059. "jetbrains/phpstorm-attributes": "^1.0",
  4060. "php": ">=8.1",
  4061. "psr/container": "^1.0 || ^2.0"
  4062. },
  4063. "suggest": {
  4064. "hyperf/di": "For better container experience.",
  4065. "hyperf/pool": "Required to use connection pool.",
  4066. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "hyperf": {
  4071. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4072. },
  4073. "branch-alias": {
  4074. "dev-master": "3.1-dev"
  4075. }
  4076. },
  4077. "autoload": {
  4078. "psr-4": {
  4079. "Hyperf\\RpcClient\\": "src/"
  4080. }
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "description": "An abstract rpc server component for Hyperf.",
  4087. "homepage": "https://hyperf.io",
  4088. "keywords": [
  4089. "hyperf",
  4090. "json-rpc",
  4091. "php",
  4092. "rpc",
  4093. "rpc-client",
  4094. "swoole"
  4095. ],
  4096. "support": {
  4097. "docs": "https://hyperf.wiki",
  4098. "issues": "https://github.com/hyperf/hyperf/issues",
  4099. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4100. "source": "https://github.com/hyperf/hyperf"
  4101. },
  4102. "funding": [
  4103. {
  4104. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4105. "type": "custom"
  4106. },
  4107. {
  4108. "url": "https://opencollective.com/hyperf",
  4109. "type": "open_collective"
  4110. }
  4111. ],
  4112. "time": "2024-09-25T02:54:12+00:00"
  4113. },
  4114. {
  4115. "name": "hyperf/rpc-server",
  4116. "version": "v3.1.42",
  4117. "source": {
  4118. "type": "git",
  4119. "url": "https://github.com/hyperf/rpc-server.git",
  4120. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4121. },
  4122. "dist": {
  4123. "type": "zip",
  4124. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4125. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4126. "shasum": ""
  4127. },
  4128. "require": {
  4129. "hyperf/http-server": "~3.1.0",
  4130. "hyperf/rpc": "~3.1.0",
  4131. "php": ">=8.1"
  4132. },
  4133. "suggest": {
  4134. "hyperf/di": "Required to use annotations."
  4135. },
  4136. "type": "library",
  4137. "extra": {
  4138. "hyperf": {
  4139. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4140. },
  4141. "branch-alias": {
  4142. "dev-master": "3.1-dev"
  4143. }
  4144. },
  4145. "autoload": {
  4146. "psr-4": {
  4147. "Hyperf\\RpcServer\\": "src/"
  4148. }
  4149. },
  4150. "notification-url": "https://packagist.org/downloads/",
  4151. "license": [
  4152. "MIT"
  4153. ],
  4154. "description": "An abstract rpc server component for Hyperf.",
  4155. "homepage": "https://hyperf.io",
  4156. "keywords": [
  4157. "hyperf",
  4158. "php",
  4159. "rpc",
  4160. "rpc-server",
  4161. "swoole"
  4162. ],
  4163. "support": {
  4164. "docs": "https://hyperf.wiki",
  4165. "issues": "https://github.com/hyperf/hyperf/issues",
  4166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4167. "source": "https://github.com/hyperf/hyperf"
  4168. },
  4169. "funding": [
  4170. {
  4171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4172. "type": "custom"
  4173. },
  4174. {
  4175. "url": "https://opencollective.com/hyperf",
  4176. "type": "open_collective"
  4177. }
  4178. ],
  4179. "time": "2024-09-25T02:54:12+00:00"
  4180. },
  4181. {
  4182. "name": "hyperf/serializer",
  4183. "version": "v3.1.42",
  4184. "source": {
  4185. "type": "git",
  4186. "url": "https://github.com/hyperf/serializer.git",
  4187. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4188. },
  4189. "dist": {
  4190. "type": "zip",
  4191. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4192. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4193. "shasum": ""
  4194. },
  4195. "require": {
  4196. "hyperf/contract": "~3.1.0",
  4197. "php": ">=8.1"
  4198. },
  4199. "suggest": {
  4200. "hyperf/di": "Required to use ExceptionNormalizer",
  4201. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4202. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4203. },
  4204. "type": "library",
  4205. "extra": {
  4206. "hyperf": {
  4207. "config": "Hyperf\\Serializer\\ConfigProvider"
  4208. },
  4209. "branch-alias": {
  4210. "dev-master": "3.1-dev"
  4211. }
  4212. },
  4213. "autoload": {
  4214. "psr-4": {
  4215. "Hyperf\\Serializer\\": "src/"
  4216. }
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "MIT"
  4221. ],
  4222. "description": "A serializer component for Hyperf.",
  4223. "homepage": "https://hyperf.io",
  4224. "keywords": [
  4225. "hyperf",
  4226. "php",
  4227. "swoole",
  4228. "tappable"
  4229. ],
  4230. "support": {
  4231. "docs": "https://hyperf.wiki",
  4232. "issues": "https://github.com/hyperf/hyperf/issues",
  4233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4234. "source": "https://github.com/hyperf/hyperf"
  4235. },
  4236. "funding": [
  4237. {
  4238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4239. "type": "custom"
  4240. },
  4241. {
  4242. "url": "https://opencollective.com/hyperf",
  4243. "type": "open_collective"
  4244. }
  4245. ],
  4246. "time": "2024-09-25T02:54:12+00:00"
  4247. },
  4248. {
  4249. "name": "hyperf/server",
  4250. "version": "v3.1.42",
  4251. "source": {
  4252. "type": "git",
  4253. "url": "https://github.com/hyperf/server.git",
  4254. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4255. },
  4256. "dist": {
  4257. "type": "zip",
  4258. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4259. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4260. "shasum": ""
  4261. },
  4262. "require": {
  4263. "hyperf/contract": "~3.1.0",
  4264. "hyperf/coordinator": "~3.1.0",
  4265. "hyperf/engine": "^2.8",
  4266. "hyperf/support": "~3.1.0",
  4267. "hyperf/tappable": "~3.1.0",
  4268. "php": ">=8.1",
  4269. "psr/container": "^1.0 || ^2.0",
  4270. "psr/event-dispatcher": "^1.0",
  4271. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4272. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4273. },
  4274. "suggest": {
  4275. "hyperf/event": "Dump the info after server start.",
  4276. "hyperf/framework": "Dump the info after server start."
  4277. },
  4278. "type": "library",
  4279. "extra": {
  4280. "hyperf": {
  4281. "config": "Hyperf\\Server\\ConfigProvider"
  4282. },
  4283. "branch-alias": {
  4284. "dev-master": "3.1-dev"
  4285. }
  4286. },
  4287. "autoload": {
  4288. "psr-4": {
  4289. "Hyperf\\Server\\": "src/"
  4290. }
  4291. },
  4292. "notification-url": "https://packagist.org/downloads/",
  4293. "license": [
  4294. "MIT"
  4295. ],
  4296. "description": "A base server library for Hyperf.",
  4297. "homepage": "https://hyperf.io",
  4298. "keywords": [
  4299. "hyperf",
  4300. "php",
  4301. "server",
  4302. "swoole"
  4303. ],
  4304. "support": {
  4305. "docs": "https://hyperf.wiki",
  4306. "issues": "https://github.com/hyperf/hyperf/issues",
  4307. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4308. "source": "https://github.com/hyperf/hyperf"
  4309. },
  4310. "funding": [
  4311. {
  4312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4313. "type": "custom"
  4314. },
  4315. {
  4316. "url": "https://opencollective.com/hyperf",
  4317. "type": "open_collective"
  4318. }
  4319. ],
  4320. "time": "2024-09-25T02:54:12+00:00"
  4321. },
  4322. {
  4323. "name": "hyperf/service-governance",
  4324. "version": "v3.1.42",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/hyperf/service-governance.git",
  4328. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4333. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4334. "shasum": ""
  4335. },
  4336. "require": {
  4337. "hyperf/contract": "~3.1.0",
  4338. "hyperf/support": "~3.1.0",
  4339. "jetbrains/phpstorm-attributes": "^1.0",
  4340. "php": ">=8.1"
  4341. },
  4342. "suggest": {
  4343. "hyperf/event": "Required to use RegisterServiceListener.",
  4344. "hyperf/framework": "Required to use RegisterServiceListener.",
  4345. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4346. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4347. },
  4348. "type": "library",
  4349. "extra": {
  4350. "hyperf": {
  4351. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4352. },
  4353. "branch-alias": {
  4354. "dev-master": "3.1-dev"
  4355. }
  4356. },
  4357. "autoload": {
  4358. "psr-4": {
  4359. "Hyperf\\ServiceGovernance\\": "src/"
  4360. }
  4361. },
  4362. "notification-url": "https://packagist.org/downloads/",
  4363. "license": [
  4364. "MIT"
  4365. ],
  4366. "description": "A service governance component for Hyperf.",
  4367. "homepage": "https://hyperf.io",
  4368. "keywords": [
  4369. "hyperf",
  4370. "php",
  4371. "service-governance",
  4372. "swoole"
  4373. ],
  4374. "support": {
  4375. "docs": "https://hyperf.wiki",
  4376. "issues": "https://github.com/hyperf/hyperf/issues",
  4377. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4378. "source": "https://github.com/hyperf/hyperf"
  4379. },
  4380. "funding": [
  4381. {
  4382. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4383. "type": "custom"
  4384. },
  4385. {
  4386. "url": "https://opencollective.com/hyperf",
  4387. "type": "open_collective"
  4388. }
  4389. ],
  4390. "time": "2024-09-25T02:54:12+00:00"
  4391. },
  4392. {
  4393. "name": "hyperf/service-governance-consul",
  4394. "version": "v3.1.42",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/hyperf/service-governance-consul.git",
  4398. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4403. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "hyperf/consul": "~3.1.0",
  4408. "hyperf/contract": "~3.1.0",
  4409. "hyperf/service-governance": "~3.1.0",
  4410. "hyperf/support": "~3.1.0",
  4411. "hyperf/utils": "~3.1.0",
  4412. "php": ">=8.1"
  4413. },
  4414. "type": "library",
  4415. "extra": {
  4416. "hyperf": {
  4417. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4418. },
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. }
  4422. },
  4423. "autoload": {
  4424. "psr-4": {
  4425. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4426. }
  4427. },
  4428. "notification-url": "https://packagist.org/downloads/",
  4429. "license": [
  4430. "MIT"
  4431. ],
  4432. "description": "A consul adapter for service governance.",
  4433. "homepage": "https://hyperf.io",
  4434. "keywords": [
  4435. "consul-adapter",
  4436. "hyperf",
  4437. "php",
  4438. "service-governance",
  4439. "swoole"
  4440. ],
  4441. "support": {
  4442. "docs": "https://hyperf.wiki",
  4443. "issues": "https://github.com/hyperf/hyperf/issues",
  4444. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4445. "source": "https://github.com/hyperf/hyperf"
  4446. },
  4447. "funding": [
  4448. {
  4449. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4450. "type": "custom"
  4451. },
  4452. {
  4453. "url": "https://opencollective.com/hyperf",
  4454. "type": "open_collective"
  4455. }
  4456. ],
  4457. "time": "2024-09-25T02:54:12+00:00"
  4458. },
  4459. {
  4460. "name": "hyperf/service-governance-nacos",
  4461. "version": "v3.1.42",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4465. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4470. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4471. "shasum": ""
  4472. },
  4473. "require": {
  4474. "hyperf/codec": "~3.1.0",
  4475. "hyperf/contract": "~3.1.0",
  4476. "hyperf/nacos": "~3.1.0",
  4477. "hyperf/service-governance": "~3.1.0",
  4478. "hyperf/support": "~3.1.0",
  4479. "hyperf/utils": "~3.1.0",
  4480. "php": ">=8.1"
  4481. },
  4482. "type": "library",
  4483. "extra": {
  4484. "hyperf": {
  4485. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4486. },
  4487. "branch-alias": {
  4488. "dev-master": "3.1-dev"
  4489. }
  4490. },
  4491. "autoload": {
  4492. "psr-4": {
  4493. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4494. }
  4495. },
  4496. "notification-url": "https://packagist.org/downloads/",
  4497. "license": [
  4498. "MIT"
  4499. ],
  4500. "description": "A nacos adapter for service governance.",
  4501. "homepage": "https://hyperf.io",
  4502. "keywords": [
  4503. "hyperf",
  4504. "nacos-adapter",
  4505. "php",
  4506. "service-governance",
  4507. "swoole"
  4508. ],
  4509. "support": {
  4510. "docs": "https://hyperf.wiki",
  4511. "issues": "https://github.com/hyperf/hyperf/issues",
  4512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4513. "source": "https://github.com/hyperf/hyperf"
  4514. },
  4515. "funding": [
  4516. {
  4517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4518. "type": "custom"
  4519. },
  4520. {
  4521. "url": "https://opencollective.com/hyperf",
  4522. "type": "open_collective"
  4523. }
  4524. ],
  4525. "time": "2024-09-25T02:54:12+00:00"
  4526. },
  4527. {
  4528. "name": "hyperf/snowflake",
  4529. "version": "v3.1.42",
  4530. "source": {
  4531. "type": "git",
  4532. "url": "https://github.com/hyperf/snowflake.git",
  4533. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4534. },
  4535. "dist": {
  4536. "type": "zip",
  4537. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4538. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4539. "shasum": ""
  4540. },
  4541. "require": {
  4542. "hyperf/contract": "~3.1.0",
  4543. "php": ">=8.1"
  4544. },
  4545. "suggest": {
  4546. "hyperf/config": "Required to read snowflake config.",
  4547. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4548. "psr/container": "Required to use MetaGeneratorFactory."
  4549. },
  4550. "type": "library",
  4551. "extra": {
  4552. "hyperf": {
  4553. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4554. },
  4555. "branch-alias": {
  4556. "dev-master": "3.1-dev"
  4557. }
  4558. },
  4559. "autoload": {
  4560. "psr-4": {
  4561. "Hyperf\\Snowflake\\": "src/"
  4562. }
  4563. },
  4564. "notification-url": "https://packagist.org/downloads/",
  4565. "license": [
  4566. "MIT"
  4567. ],
  4568. "description": "A snowflake library",
  4569. "homepage": "https://hyperf.io",
  4570. "keywords": [
  4571. "php",
  4572. "snowflake"
  4573. ],
  4574. "support": {
  4575. "docs": "https://hyperf.wiki",
  4576. "issues": "https://github.com/hyperf/hyperf/issues",
  4577. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4578. "source": "https://github.com/hyperf/hyperf"
  4579. },
  4580. "funding": [
  4581. {
  4582. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4583. "type": "custom"
  4584. },
  4585. {
  4586. "url": "https://opencollective.com/hyperf",
  4587. "type": "open_collective"
  4588. }
  4589. ],
  4590. "time": "2024-09-25T02:54:12+00:00"
  4591. },
  4592. {
  4593. "name": "hyperf/stdlib",
  4594. "version": "v3.1.42",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/hyperf/stdlib.git",
  4598. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4603. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "php": ">=8.1"
  4608. },
  4609. "type": "library",
  4610. "extra": {
  4611. "branch-alias": {
  4612. "dev-master": "3.1-dev"
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Hyperf\\Stdlib\\": "src/"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "description": "A stdlib component for Hyperf.",
  4625. "homepage": "https://hyperf.io",
  4626. "keywords": [
  4627. "hyperf",
  4628. "php",
  4629. "stdlib",
  4630. "swoole"
  4631. ],
  4632. "support": {
  4633. "docs": "https://hyperf.wiki",
  4634. "issues": "https://github.com/hyperf/hyperf/issues",
  4635. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4636. "source": "https://github.com/hyperf/hyperf"
  4637. },
  4638. "funding": [
  4639. {
  4640. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4641. "type": "custom"
  4642. },
  4643. {
  4644. "url": "https://opencollective.com/hyperf",
  4645. "type": "open_collective"
  4646. }
  4647. ],
  4648. "time": "2024-09-25T02:54:12+00:00"
  4649. },
  4650. {
  4651. "name": "hyperf/stringable",
  4652. "version": "v3.1.50",
  4653. "source": {
  4654. "type": "git",
  4655. "url": "https://github.com/hyperf/stringable.git",
  4656. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687"
  4657. },
  4658. "dist": {
  4659. "type": "zip",
  4660. "url": "https://api.github.com/repos/hyperf/stringable/zipball/89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4661. "reference": "89ab60e9ccabf024f5afc81a72f630cc67ae6687",
  4662. "shasum": ""
  4663. },
  4664. "require": {
  4665. "ext-mbstring": "*",
  4666. "hyperf/collection": "~3.1.0",
  4667. "hyperf/conditionable": "~3.1.0",
  4668. "hyperf/macroable": "~3.1.0",
  4669. "hyperf/tappable": "~3.1.0",
  4670. "php": ">=8.1"
  4671. },
  4672. "suggest": {
  4673. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4674. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4675. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4676. },
  4677. "type": "library",
  4678. "extra": {
  4679. "branch-alias": {
  4680. "dev-master": "3.1-dev"
  4681. }
  4682. },
  4683. "autoload": {
  4684. "files": [
  4685. "src/Functions.php"
  4686. ],
  4687. "psr-4": {
  4688. "Hyperf\\Stringable\\": "src/"
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "description": "Hyperf Stringable package which come from illuminate/support",
  4696. "homepage": "https://hyperf.io",
  4697. "keywords": [
  4698. "hyperf",
  4699. "php",
  4700. "stringable",
  4701. "swoole"
  4702. ],
  4703. "support": {
  4704. "docs": "https://hyperf.wiki",
  4705. "issues": "https://github.com/hyperf/hyperf/issues",
  4706. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4707. "source": "https://github.com/hyperf/hyperf"
  4708. },
  4709. "funding": [
  4710. {
  4711. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4712. "type": "custom"
  4713. },
  4714. {
  4715. "url": "https://opencollective.com/hyperf",
  4716. "type": "open_collective"
  4717. }
  4718. ],
  4719. "time": "2025-01-08T06:57:58+00:00"
  4720. },
  4721. {
  4722. "name": "hyperf/support",
  4723. "version": "v3.1.50",
  4724. "source": {
  4725. "type": "git",
  4726. "url": "https://github.com/hyperf/support.git",
  4727. "reference": "899b7dbfe39b60d25ec71da3ad445d9db0bbce1a"
  4728. },
  4729. "dist": {
  4730. "type": "zip",
  4731. "url": "https://api.github.com/repos/hyperf/support/zipball/899b7dbfe39b60d25ec71da3ad445d9db0bbce1a",
  4732. "reference": "899b7dbfe39b60d25ec71da3ad445d9db0bbce1a",
  4733. "shasum": ""
  4734. },
  4735. "require": {
  4736. "hyperf/collection": "~3.1.0",
  4737. "hyperf/context": "~3.1.0",
  4738. "hyperf/contract": "~3.1.0",
  4739. "hyperf/coroutine": "~3.1.0",
  4740. "hyperf/macroable": "~3.1.0",
  4741. "hyperf/stringable": "~3.1.0",
  4742. "php": ">=8.1"
  4743. },
  4744. "suggest": {
  4745. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4746. },
  4747. "type": "library",
  4748. "extra": {
  4749. "branch-alias": {
  4750. "dev-master": "3.1-dev"
  4751. }
  4752. },
  4753. "autoload": {
  4754. "files": [
  4755. "src/Functions.php"
  4756. ],
  4757. "psr-4": {
  4758. "Hyperf\\Support\\": "src/"
  4759. }
  4760. },
  4761. "notification-url": "https://packagist.org/downloads/",
  4762. "license": [
  4763. "MIT"
  4764. ],
  4765. "description": "A support component for Hyperf.",
  4766. "homepage": "https://hyperf.io",
  4767. "keywords": [
  4768. "hyperf",
  4769. "php",
  4770. "support",
  4771. "swoole"
  4772. ],
  4773. "support": {
  4774. "docs": "https://hyperf.wiki",
  4775. "issues": "https://github.com/hyperf/hyperf/issues",
  4776. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4777. "source": "https://github.com/hyperf/hyperf"
  4778. },
  4779. "funding": [
  4780. {
  4781. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4782. "type": "custom"
  4783. },
  4784. {
  4785. "url": "https://opencollective.com/hyperf",
  4786. "type": "open_collective"
  4787. }
  4788. ],
  4789. "time": "2025-01-08T07:28:13+00:00"
  4790. },
  4791. {
  4792. "name": "hyperf/tappable",
  4793. "version": "v3.1.42",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/hyperf/tappable.git",
  4797. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4802. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "php": ">=8.1"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "3.1-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "files": [
  4816. "src/Functions.php"
  4817. ],
  4818. "psr-4": {
  4819. "Hyperf\\Tappable\\": "src/"
  4820. }
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "MIT"
  4825. ],
  4826. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4827. "homepage": "https://hyperf.io",
  4828. "keywords": [
  4829. "hyperf",
  4830. "php",
  4831. "swoole",
  4832. "tappable"
  4833. ],
  4834. "support": {
  4835. "docs": "https://hyperf.wiki",
  4836. "issues": "https://github.com/hyperf/hyperf/issues",
  4837. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4838. "source": "https://github.com/hyperf/hyperf"
  4839. },
  4840. "funding": [
  4841. {
  4842. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4843. "type": "custom"
  4844. },
  4845. {
  4846. "url": "https://opencollective.com/hyperf",
  4847. "type": "open_collective"
  4848. }
  4849. ],
  4850. "time": "2024-09-25T02:54:12+00:00"
  4851. },
  4852. {
  4853. "name": "hyperf/translation",
  4854. "version": "v3.1.42",
  4855. "source": {
  4856. "type": "git",
  4857. "url": "https://github.com/hyperf/translation.git",
  4858. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4859. },
  4860. "dist": {
  4861. "type": "zip",
  4862. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4863. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4864. "shasum": ""
  4865. },
  4866. "require": {
  4867. "hyperf/contract": "~3.1.0",
  4868. "hyperf/macroable": "~3.1.0",
  4869. "hyperf/support": "~3.1.0",
  4870. "hyperf/utils": "~3.1.0",
  4871. "php": ">=8.1",
  4872. "psr/container": "^1.0 || ^2.0"
  4873. },
  4874. "type": "library",
  4875. "extra": {
  4876. "hyperf": {
  4877. "config": "Hyperf\\Translation\\ConfigProvider"
  4878. },
  4879. "branch-alias": {
  4880. "dev-master": "3.1-dev"
  4881. }
  4882. },
  4883. "autoload": {
  4884. "files": [
  4885. "src/Functions.php"
  4886. ],
  4887. "psr-4": {
  4888. "Hyperf\\Translation\\": "src/"
  4889. }
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "description": "An independent translation component, forked by illuminate/translation.",
  4896. "keywords": [
  4897. "hyperf",
  4898. "translation"
  4899. ],
  4900. "support": {
  4901. "issues": "https://github.com/hyperf/translation/issues",
  4902. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4903. },
  4904. "funding": [
  4905. {
  4906. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4907. "type": "custom"
  4908. },
  4909. {
  4910. "url": "https://opencollective.com/hyperf",
  4911. "type": "open_collective"
  4912. }
  4913. ],
  4914. "time": "2024-09-25T02:54:12+00:00"
  4915. },
  4916. {
  4917. "name": "hyperf/utils",
  4918. "version": "v3.1.42",
  4919. "source": {
  4920. "type": "git",
  4921. "url": "https://github.com/hyperf/utils.git",
  4922. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4923. },
  4924. "dist": {
  4925. "type": "zip",
  4926. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4927. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4928. "shasum": ""
  4929. },
  4930. "require": {
  4931. "doctrine/inflector": "^2.0",
  4932. "hyperf/code-parser": "~3.1.0",
  4933. "hyperf/codec": "~3.1.0",
  4934. "hyperf/collection": "~3.1.0",
  4935. "hyperf/context": "~3.1.0",
  4936. "hyperf/contract": "~3.1.0",
  4937. "hyperf/coordinator": "~3.1.0",
  4938. "hyperf/coroutine": "~3.1.0",
  4939. "hyperf/engine": "^2.0",
  4940. "hyperf/macroable": "~3.1.0",
  4941. "hyperf/serializer": "~3.1.0",
  4942. "hyperf/stringable": "~3.1.0",
  4943. "hyperf/support": "~3.1.0",
  4944. "php": ">=8.1"
  4945. },
  4946. "type": "library",
  4947. "extra": {
  4948. "branch-alias": {
  4949. "dev-master": "3.1-dev"
  4950. }
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "MIT"
  4955. ],
  4956. "description": "A tools package that could help developer solved the problem quickly.",
  4957. "homepage": "https://hyperf.io",
  4958. "keywords": [
  4959. "hyperf",
  4960. "php",
  4961. "swoole",
  4962. "utils"
  4963. ],
  4964. "support": {
  4965. "docs": "https://hyperf.wiki",
  4966. "issues": "https://github.com/hyperf/hyperf/issues",
  4967. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4968. "source": "https://github.com/hyperf/hyperf"
  4969. },
  4970. "funding": [
  4971. {
  4972. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4973. "type": "custom"
  4974. },
  4975. {
  4976. "url": "https://opencollective.com/hyperf",
  4977. "type": "open_collective"
  4978. }
  4979. ],
  4980. "time": "2024-09-25T02:54:12+00:00"
  4981. },
  4982. {
  4983. "name": "hyperf/validation",
  4984. "version": "v3.1.47",
  4985. "source": {
  4986. "type": "git",
  4987. "url": "https://github.com/hyperf/validation.git",
  4988. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4989. },
  4990. "dist": {
  4991. "type": "zip",
  4992. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4993. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4994. "shasum": ""
  4995. },
  4996. "require": {
  4997. "egulias/email-validator": "^3.0",
  4998. "hyperf/collection": "~3.1.0",
  4999. "hyperf/conditionable": "~3.1.0",
  5000. "hyperf/contract": "~3.1.0",
  5001. "hyperf/di": "~3.1.0",
  5002. "hyperf/framework": "~3.1.0",
  5003. "hyperf/macroable": "~3.1.0",
  5004. "hyperf/stringable": "~3.1.0",
  5005. "hyperf/support": "~3.1.0",
  5006. "hyperf/tappable": "~3.1.0",
  5007. "hyperf/translation": "~3.1.0",
  5008. "hyperf/utils": "~3.1.0",
  5009. "nesbot/carbon": "^2.21",
  5010. "php": ">=8.1",
  5011. "psr/container": "^1.0 || ^2.0",
  5012. "psr/event-dispatcher": "^1.0",
  5013. "psr/http-message": "^1.0 || ^2.0"
  5014. },
  5015. "suggest": {
  5016. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  5017. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  5018. },
  5019. "type": "library",
  5020. "extra": {
  5021. "hyperf": {
  5022. "config": "Hyperf\\Validation\\ConfigProvider"
  5023. },
  5024. "branch-alias": {
  5025. "dev-master": "3.1-dev"
  5026. }
  5027. },
  5028. "autoload": {
  5029. "psr-4": {
  5030. "Hyperf\\Validation\\": "src/"
  5031. }
  5032. },
  5033. "notification-url": "https://packagist.org/downloads/",
  5034. "license": [
  5035. "MIT"
  5036. ],
  5037. "description": "hyperf validation",
  5038. "keywords": [
  5039. "hyperf",
  5040. "validation"
  5041. ],
  5042. "support": {
  5043. "issues": "https://github.com/hyperf/validation/issues",
  5044. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  5045. },
  5046. "funding": [
  5047. {
  5048. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5049. "type": "custom"
  5050. },
  5051. {
  5052. "url": "https://opencollective.com/hyperf",
  5053. "type": "open_collective"
  5054. }
  5055. ],
  5056. "time": "2024-11-28T01:51:55+00:00"
  5057. },
  5058. {
  5059. "name": "hyperf/websocket-server",
  5060. "version": "v3.1.50",
  5061. "source": {
  5062. "type": "git",
  5063. "url": "https://github.com/hyperf/websocket-server.git",
  5064. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5"
  5065. },
  5066. "dist": {
  5067. "type": "zip",
  5068. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/c770ebf0208738bbb21000db01f09a48e15023a5",
  5069. "reference": "c770ebf0208738bbb21000db01f09a48e15023a5",
  5070. "shasum": ""
  5071. },
  5072. "require": {
  5073. "hyperf/collection": "~3.1.0",
  5074. "hyperf/contract": "~3.1.0",
  5075. "hyperf/exception-handler": "~3.1.0",
  5076. "hyperf/http-server": "~3.1.0",
  5077. "hyperf/support": "~3.1.0",
  5078. "hyperf/utils": "~3.1.0",
  5079. "php": ">=8.1",
  5080. "psr/container": "^1.0 || ^2.0",
  5081. "psr/event-dispatcher": "^1.0"
  5082. },
  5083. "type": "library",
  5084. "extra": {
  5085. "hyperf": {
  5086. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5087. },
  5088. "branch-alias": {
  5089. "dev-master": "3.1-dev"
  5090. }
  5091. },
  5092. "autoload": {
  5093. "psr-4": {
  5094. "Hyperf\\WebSocketServer\\": "src/"
  5095. }
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "description": "A websocket server library for Hyperf.",
  5102. "homepage": "https://hyperf.io",
  5103. "keywords": [
  5104. "hyperf",
  5105. "php",
  5106. "swoole",
  5107. "websocket"
  5108. ],
  5109. "support": {
  5110. "docs": "https://hyperf.wiki",
  5111. "issues": "https://github.com/hyperf/hyperf/issues",
  5112. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5113. "source": "https://github.com/hyperf/hyperf"
  5114. },
  5115. "funding": [
  5116. {
  5117. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5118. "type": "custom"
  5119. },
  5120. {
  5121. "url": "https://opencollective.com/hyperf",
  5122. "type": "open_collective"
  5123. }
  5124. ],
  5125. "time": "2025-01-08T02:18:30+00:00"
  5126. },
  5127. {
  5128. "name": "jetbrains/phpstorm-attributes",
  5129. "version": "1.2",
  5130. "source": {
  5131. "type": "git",
  5132. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5133. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5134. },
  5135. "dist": {
  5136. "type": "zip",
  5137. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5138. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5139. "shasum": ""
  5140. },
  5141. "type": "library",
  5142. "autoload": {
  5143. "psr-4": {
  5144. "JetBrains\\PhpStorm\\": "src/"
  5145. }
  5146. },
  5147. "notification-url": "https://packagist.org/downloads/",
  5148. "license": [
  5149. "Apache-2.0"
  5150. ],
  5151. "authors": [
  5152. {
  5153. "name": "JetBrains",
  5154. "homepage": "https://www.jetbrains.com"
  5155. }
  5156. ],
  5157. "description": "PhpStorm specific attributes",
  5158. "keywords": [
  5159. "attributes",
  5160. "jetbrains",
  5161. "phpstorm"
  5162. ],
  5163. "support": {
  5164. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5165. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5166. },
  5167. "time": "2024-10-11T10:46:19+00:00"
  5168. },
  5169. {
  5170. "name": "laminas/laminas-mime",
  5171. "version": "2.12.0",
  5172. "source": {
  5173. "type": "git",
  5174. "url": "https://github.com/laminas/laminas-mime.git",
  5175. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5176. },
  5177. "dist": {
  5178. "type": "zip",
  5179. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5180. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5181. "shasum": ""
  5182. },
  5183. "require": {
  5184. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5185. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5186. },
  5187. "conflict": {
  5188. "zendframework/zend-mime": "*"
  5189. },
  5190. "require-dev": {
  5191. "laminas/laminas-coding-standard": "~2.4.0",
  5192. "laminas/laminas-mail": "^2.19.0",
  5193. "phpunit/phpunit": "~9.5.25"
  5194. },
  5195. "suggest": {
  5196. "laminas/laminas-mail": "Laminas\\Mail component"
  5197. },
  5198. "type": "library",
  5199. "autoload": {
  5200. "psr-4": {
  5201. "Laminas\\Mime\\": "src/"
  5202. }
  5203. },
  5204. "notification-url": "https://packagist.org/downloads/",
  5205. "license": [
  5206. "BSD-3-Clause"
  5207. ],
  5208. "description": "Create and parse MIME messages and parts",
  5209. "homepage": "https://laminas.dev",
  5210. "keywords": [
  5211. "laminas",
  5212. "mime"
  5213. ],
  5214. "support": {
  5215. "chat": "https://laminas.dev/chat",
  5216. "docs": "https://docs.laminas.dev/laminas-mime/",
  5217. "forum": "https://discourse.laminas.dev",
  5218. "issues": "https://github.com/laminas/laminas-mime/issues",
  5219. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5220. "source": "https://github.com/laminas/laminas-mime"
  5221. },
  5222. "funding": [
  5223. {
  5224. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5225. "type": "community_bridge"
  5226. }
  5227. ],
  5228. "abandoned": "symfony/mime",
  5229. "time": "2023-11-02T16:47:19+00:00"
  5230. },
  5231. {
  5232. "name": "laminas/laminas-stdlib",
  5233. "version": "3.20.0",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/laminas/laminas-stdlib.git",
  5237. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5242. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5243. "shasum": ""
  5244. },
  5245. "require": {
  5246. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5247. },
  5248. "conflict": {
  5249. "zendframework/zend-stdlib": "*"
  5250. },
  5251. "require-dev": {
  5252. "laminas/laminas-coding-standard": "^3.0",
  5253. "phpbench/phpbench": "^1.3.1",
  5254. "phpunit/phpunit": "^10.5.38",
  5255. "psalm/plugin-phpunit": "^0.19.0",
  5256. "vimeo/psalm": "^5.26.1"
  5257. },
  5258. "type": "library",
  5259. "autoload": {
  5260. "psr-4": {
  5261. "Laminas\\Stdlib\\": "src/"
  5262. }
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "BSD-3-Clause"
  5267. ],
  5268. "description": "SPL extensions, array utilities, error handlers, and more",
  5269. "homepage": "https://laminas.dev",
  5270. "keywords": [
  5271. "laminas",
  5272. "stdlib"
  5273. ],
  5274. "support": {
  5275. "chat": "https://laminas.dev/chat",
  5276. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5277. "forum": "https://discourse.laminas.dev",
  5278. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5279. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5280. "source": "https://github.com/laminas/laminas-stdlib"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5285. "type": "community_bridge"
  5286. }
  5287. ],
  5288. "time": "2024-10-29T13:46:07+00:00"
  5289. },
  5290. {
  5291. "name": "lcobucci/clock",
  5292. "version": "2.3.0",
  5293. "source": {
  5294. "type": "git",
  5295. "url": "https://github.com/lcobucci/clock.git",
  5296. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5297. },
  5298. "dist": {
  5299. "type": "zip",
  5300. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5301. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5302. "shasum": ""
  5303. },
  5304. "require": {
  5305. "php": "~8.1.0 || ~8.2.0",
  5306. "stella-maris/clock": "^0.1.7"
  5307. },
  5308. "provide": {
  5309. "psr/clock-implementation": "1.0"
  5310. },
  5311. "require-dev": {
  5312. "infection/infection": "^0.26",
  5313. "lcobucci/coding-standard": "^9.0",
  5314. "phpstan/extension-installer": "^1.2",
  5315. "phpstan/phpstan": "^1.9.4",
  5316. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5317. "phpstan/phpstan-phpunit": "^1.3.2",
  5318. "phpstan/phpstan-strict-rules": "^1.4.4",
  5319. "phpunit/phpunit": "^9.5.27"
  5320. },
  5321. "type": "library",
  5322. "autoload": {
  5323. "psr-4": {
  5324. "Lcobucci\\Clock\\": "src"
  5325. }
  5326. },
  5327. "notification-url": "https://packagist.org/downloads/",
  5328. "license": [
  5329. "MIT"
  5330. ],
  5331. "authors": [
  5332. {
  5333. "name": "Luís Cobucci",
  5334. "email": "lcobucci@gmail.com"
  5335. }
  5336. ],
  5337. "description": "Yet another clock abstraction",
  5338. "support": {
  5339. "issues": "https://github.com/lcobucci/clock/issues",
  5340. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5341. },
  5342. "funding": [
  5343. {
  5344. "url": "https://github.com/lcobucci",
  5345. "type": "github"
  5346. },
  5347. {
  5348. "url": "https://www.patreon.com/lcobucci",
  5349. "type": "patreon"
  5350. }
  5351. ],
  5352. "time": "2022-12-19T14:38:11+00:00"
  5353. },
  5354. {
  5355. "name": "lcobucci/jwt",
  5356. "version": "4.1.5",
  5357. "source": {
  5358. "type": "git",
  5359. "url": "https://github.com/lcobucci/jwt.git",
  5360. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5361. },
  5362. "dist": {
  5363. "type": "zip",
  5364. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5365. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5366. "shasum": ""
  5367. },
  5368. "require": {
  5369. "ext-hash": "*",
  5370. "ext-json": "*",
  5371. "ext-mbstring": "*",
  5372. "ext-openssl": "*",
  5373. "ext-sodium": "*",
  5374. "lcobucci/clock": "^2.0",
  5375. "php": "^7.4 || ^8.0"
  5376. },
  5377. "require-dev": {
  5378. "infection/infection": "^0.21",
  5379. "lcobucci/coding-standard": "^6.0",
  5380. "mikey179/vfsstream": "^1.6.7",
  5381. "phpbench/phpbench": "^1.0",
  5382. "phpstan/extension-installer": "^1.0",
  5383. "phpstan/phpstan": "^0.12",
  5384. "phpstan/phpstan-deprecation-rules": "^0.12",
  5385. "phpstan/phpstan-phpunit": "^0.12",
  5386. "phpstan/phpstan-strict-rules": "^0.12",
  5387. "phpunit/php-invoker": "^3.1",
  5388. "phpunit/phpunit": "^9.5"
  5389. },
  5390. "type": "library",
  5391. "autoload": {
  5392. "psr-4": {
  5393. "Lcobucci\\JWT\\": "src"
  5394. }
  5395. },
  5396. "notification-url": "https://packagist.org/downloads/",
  5397. "license": [
  5398. "BSD-3-Clause"
  5399. ],
  5400. "authors": [
  5401. {
  5402. "name": "Luís Cobucci",
  5403. "email": "lcobucci@gmail.com",
  5404. "role": "Developer"
  5405. }
  5406. ],
  5407. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5408. "keywords": [
  5409. "JWS",
  5410. "jwt"
  5411. ],
  5412. "support": {
  5413. "issues": "https://github.com/lcobucci/jwt/issues",
  5414. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5415. },
  5416. "funding": [
  5417. {
  5418. "url": "https://github.com/lcobucci",
  5419. "type": "github"
  5420. },
  5421. {
  5422. "url": "https://www.patreon.com/lcobucci",
  5423. "type": "patreon"
  5424. }
  5425. ],
  5426. "time": "2021-09-28T19:34:56+00:00"
  5427. },
  5428. {
  5429. "name": "markrogoyski/math-php",
  5430. "version": "v2.10.0",
  5431. "source": {
  5432. "type": "git",
  5433. "url": "https://github.com/markrogoyski/math-php.git",
  5434. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5435. },
  5436. "dist": {
  5437. "type": "zip",
  5438. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5439. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5440. "shasum": ""
  5441. },
  5442. "require": {
  5443. "ext-json": "*",
  5444. "php": ">=7.2.0"
  5445. },
  5446. "require-dev": {
  5447. "php-coveralls/php-coveralls": "^2.0",
  5448. "php-parallel-lint/php-parallel-lint": "^1.2",
  5449. "phploc/phploc": "*",
  5450. "phpmd/phpmd": "^2.6",
  5451. "phpstan/phpstan": "^1.10",
  5452. "phpunit/phpunit": "^8.5",
  5453. "squizlabs/php_codesniffer": "3.*"
  5454. },
  5455. "type": "library",
  5456. "autoload": {
  5457. "psr-4": {
  5458. "MathPHP\\": "src/"
  5459. }
  5460. },
  5461. "notification-url": "https://packagist.org/downloads/",
  5462. "license": [
  5463. "MIT"
  5464. ],
  5465. "authors": [
  5466. {
  5467. "name": "Mark Rogoyski",
  5468. "email": "mark@rogoyski.com",
  5469. "homepage": "https://github.com/markrogoyski",
  5470. "role": "Lead developer"
  5471. },
  5472. {
  5473. "name": "Kevin Nowaczyk",
  5474. "homepage": "https://github.com/Beakerboy",
  5475. "role": "Developer"
  5476. },
  5477. {
  5478. "name": "MathPHP Community of Contributors",
  5479. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5480. }
  5481. ],
  5482. "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",
  5483. "homepage": "https://github.com/markrogoyski/math-php/",
  5484. "keywords": [
  5485. "algebra",
  5486. "combinatorics",
  5487. "distributions",
  5488. "linear algebra",
  5489. "math",
  5490. "mathematics",
  5491. "matrix",
  5492. "numerical analysis",
  5493. "probability",
  5494. "regressions",
  5495. "statistics"
  5496. ],
  5497. "support": {
  5498. "issues": "https://github.com/markrogoyski/math-php/issues",
  5499. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5500. },
  5501. "time": "2024-04-17T00:09:51+00:00"
  5502. },
  5503. {
  5504. "name": "monolog/monolog",
  5505. "version": "3.8.1",
  5506. "source": {
  5507. "type": "git",
  5508. "url": "https://github.com/Seldaek/monolog.git",
  5509. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5510. },
  5511. "dist": {
  5512. "type": "zip",
  5513. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5514. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5515. "shasum": ""
  5516. },
  5517. "require": {
  5518. "php": ">=8.1",
  5519. "psr/log": "^2.0 || ^3.0"
  5520. },
  5521. "provide": {
  5522. "psr/log-implementation": "3.0.0"
  5523. },
  5524. "require-dev": {
  5525. "aws/aws-sdk-php": "^3.0",
  5526. "doctrine/couchdb": "~1.0@dev",
  5527. "elasticsearch/elasticsearch": "^7 || ^8",
  5528. "ext-json": "*",
  5529. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5530. "guzzlehttp/guzzle": "^7.4.5",
  5531. "guzzlehttp/psr7": "^2.2",
  5532. "mongodb/mongodb": "^1.8",
  5533. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5534. "php-console/php-console": "^3.1.8",
  5535. "phpstan/phpstan": "^2",
  5536. "phpstan/phpstan-deprecation-rules": "^2",
  5537. "phpstan/phpstan-strict-rules": "^2",
  5538. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5539. "predis/predis": "^1.1 || ^2",
  5540. "rollbar/rollbar": "^4.0",
  5541. "ruflin/elastica": "^7 || ^8",
  5542. "symfony/mailer": "^5.4 || ^6",
  5543. "symfony/mime": "^5.4 || ^6"
  5544. },
  5545. "suggest": {
  5546. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5547. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5548. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5549. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5550. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5551. "ext-mbstring": "Allow to work properly with unicode symbols",
  5552. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5553. "ext-openssl": "Required to send log messages using SSL",
  5554. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5555. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5556. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5557. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5558. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5559. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5560. },
  5561. "type": "library",
  5562. "extra": {
  5563. "branch-alias": {
  5564. "dev-main": "3.x-dev"
  5565. }
  5566. },
  5567. "autoload": {
  5568. "psr-4": {
  5569. "Monolog\\": "src/Monolog"
  5570. }
  5571. },
  5572. "notification-url": "https://packagist.org/downloads/",
  5573. "license": [
  5574. "MIT"
  5575. ],
  5576. "authors": [
  5577. {
  5578. "name": "Jordi Boggiano",
  5579. "email": "j.boggiano@seld.be",
  5580. "homepage": "https://seld.be"
  5581. }
  5582. ],
  5583. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5584. "homepage": "https://github.com/Seldaek/monolog",
  5585. "keywords": [
  5586. "log",
  5587. "logging",
  5588. "psr-3"
  5589. ],
  5590. "support": {
  5591. "issues": "https://github.com/Seldaek/monolog/issues",
  5592. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5593. },
  5594. "funding": [
  5595. {
  5596. "url": "https://github.com/Seldaek",
  5597. "type": "github"
  5598. },
  5599. {
  5600. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5601. "type": "tidelift"
  5602. }
  5603. ],
  5604. "time": "2024-12-05T17:15:07+00:00"
  5605. },
  5606. {
  5607. "name": "nesbot/carbon",
  5608. "version": "2.72.6",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/CarbonPHP/carbon.git",
  5612. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5617. "reference": "1e9d50601e7035a4c61441a208cb5bed73e108c5",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "carbonphp/carbon-doctrine-types": "*",
  5622. "ext-json": "*",
  5623. "php": "^7.1.8 || ^8.0",
  5624. "psr/clock": "^1.0",
  5625. "symfony/polyfill-mbstring": "^1.0",
  5626. "symfony/polyfill-php80": "^1.16",
  5627. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5628. },
  5629. "provide": {
  5630. "psr/clock-implementation": "1.0"
  5631. },
  5632. "require-dev": {
  5633. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5634. "doctrine/orm": "^2.7 || ^3.0",
  5635. "friendsofphp/php-cs-fixer": "^3.0",
  5636. "kylekatarnls/multi-tester": "^2.0",
  5637. "ondrejmirtes/better-reflection": "<6",
  5638. "phpmd/phpmd": "^2.9",
  5639. "phpstan/extension-installer": "^1.0",
  5640. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5641. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5642. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5643. "squizlabs/php_codesniffer": "^3.4"
  5644. },
  5645. "bin": [
  5646. "bin/carbon"
  5647. ],
  5648. "type": "library",
  5649. "extra": {
  5650. "laravel": {
  5651. "providers": [
  5652. "Carbon\\Laravel\\ServiceProvider"
  5653. ]
  5654. },
  5655. "phpstan": {
  5656. "includes": [
  5657. "extension.neon"
  5658. ]
  5659. },
  5660. "branch-alias": {
  5661. "dev-2.x": "2.x-dev",
  5662. "dev-master": "3.x-dev"
  5663. }
  5664. },
  5665. "autoload": {
  5666. "psr-4": {
  5667. "Carbon\\": "src/Carbon/"
  5668. }
  5669. },
  5670. "notification-url": "https://packagist.org/downloads/",
  5671. "license": [
  5672. "MIT"
  5673. ],
  5674. "authors": [
  5675. {
  5676. "name": "Brian Nesbitt",
  5677. "email": "brian@nesbot.com",
  5678. "homepage": "https://markido.com"
  5679. },
  5680. {
  5681. "name": "kylekatarnls",
  5682. "homepage": "https://github.com/kylekatarnls"
  5683. }
  5684. ],
  5685. "description": "An API extension for DateTime that supports 281 different languages.",
  5686. "homepage": "https://carbon.nesbot.com",
  5687. "keywords": [
  5688. "date",
  5689. "datetime",
  5690. "time"
  5691. ],
  5692. "support": {
  5693. "docs": "https://carbon.nesbot.com/docs",
  5694. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5695. "source": "https://github.com/briannesbitt/Carbon"
  5696. },
  5697. "funding": [
  5698. {
  5699. "url": "https://github.com/sponsors/kylekatarnls",
  5700. "type": "github"
  5701. },
  5702. {
  5703. "url": "https://opencollective.com/Carbon#sponsor",
  5704. "type": "opencollective"
  5705. },
  5706. {
  5707. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5708. "type": "tidelift"
  5709. }
  5710. ],
  5711. "time": "2024-12-27T09:28:11+00:00"
  5712. },
  5713. {
  5714. "name": "nikic/fast-route",
  5715. "version": "v1.3.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/nikic/FastRoute.git",
  5719. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5724. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": ">=5.4.0"
  5729. },
  5730. "require-dev": {
  5731. "phpunit/phpunit": "^4.8.35|~5.7"
  5732. },
  5733. "type": "library",
  5734. "autoload": {
  5735. "files": [
  5736. "src/functions.php"
  5737. ],
  5738. "psr-4": {
  5739. "FastRoute\\": "src/"
  5740. }
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "BSD-3-Clause"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "Nikita Popov",
  5749. "email": "nikic@php.net"
  5750. }
  5751. ],
  5752. "description": "Fast request router for PHP",
  5753. "keywords": [
  5754. "router",
  5755. "routing"
  5756. ],
  5757. "support": {
  5758. "issues": "https://github.com/nikic/FastRoute/issues",
  5759. "source": "https://github.com/nikic/FastRoute/tree/master"
  5760. },
  5761. "time": "2018-02-13T20:26:39+00:00"
  5762. },
  5763. {
  5764. "name": "nikic/php-parser",
  5765. "version": "v4.19.4",
  5766. "source": {
  5767. "type": "git",
  5768. "url": "https://github.com/nikic/PHP-Parser.git",
  5769. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5770. },
  5771. "dist": {
  5772. "type": "zip",
  5773. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5774. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5775. "shasum": ""
  5776. },
  5777. "require": {
  5778. "ext-tokenizer": "*",
  5779. "php": ">=7.1"
  5780. },
  5781. "require-dev": {
  5782. "ircmaxell/php-yacc": "^0.0.7",
  5783. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5784. },
  5785. "bin": [
  5786. "bin/php-parse"
  5787. ],
  5788. "type": "library",
  5789. "extra": {
  5790. "branch-alias": {
  5791. "dev-master": "4.9-dev"
  5792. }
  5793. },
  5794. "autoload": {
  5795. "psr-4": {
  5796. "PhpParser\\": "lib/PhpParser"
  5797. }
  5798. },
  5799. "notification-url": "https://packagist.org/downloads/",
  5800. "license": [
  5801. "BSD-3-Clause"
  5802. ],
  5803. "authors": [
  5804. {
  5805. "name": "Nikita Popov"
  5806. }
  5807. ],
  5808. "description": "A PHP parser written in PHP",
  5809. "keywords": [
  5810. "parser",
  5811. "php"
  5812. ],
  5813. "support": {
  5814. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5815. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5816. },
  5817. "time": "2024-09-29T15:01:53+00:00"
  5818. },
  5819. {
  5820. "name": "openai-php/client",
  5821. "version": "v0.10.3",
  5822. "source": {
  5823. "type": "git",
  5824. "url": "https://github.com/openai-php/client.git",
  5825. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  5826. },
  5827. "dist": {
  5828. "type": "zip",
  5829. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5830. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5831. "shasum": ""
  5832. },
  5833. "require": {
  5834. "php": "^8.1.0",
  5835. "php-http/discovery": "^1.20.0",
  5836. "php-http/multipart-stream-builder": "^1.4.2",
  5837. "psr/http-client": "^1.0.3",
  5838. "psr/http-client-implementation": "^1.0.1",
  5839. "psr/http-factory-implementation": "*",
  5840. "psr/http-message": "^1.1.0|^2.0.0"
  5841. },
  5842. "require-dev": {
  5843. "guzzlehttp/guzzle": "^7.9.2",
  5844. "guzzlehttp/psr7": "^2.7.0",
  5845. "laravel/pint": "^1.18.1",
  5846. "mockery/mockery": "^1.6.12",
  5847. "nunomaduro/collision": "^7.11.0|^8.5.0",
  5848. "pestphp/pest": "^2.36.0|^3.5.0",
  5849. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  5850. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  5851. "phpstan/phpstan": "^1.12.7",
  5852. "symfony/var-dumper": "^6.4.11|^7.1.5"
  5853. },
  5854. "type": "library",
  5855. "autoload": {
  5856. "files": [
  5857. "src/OpenAI.php"
  5858. ],
  5859. "psr-4": {
  5860. "OpenAI\\": "src/"
  5861. }
  5862. },
  5863. "notification-url": "https://packagist.org/downloads/",
  5864. "license": [
  5865. "MIT"
  5866. ],
  5867. "authors": [
  5868. {
  5869. "name": "Nuno Maduro",
  5870. "email": "enunomaduro@gmail.com"
  5871. },
  5872. {
  5873. "name": "Sandro Gehri"
  5874. }
  5875. ],
  5876. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  5877. "keywords": [
  5878. "GPT-3",
  5879. "api",
  5880. "client",
  5881. "codex",
  5882. "dall-e",
  5883. "language",
  5884. "natural",
  5885. "openai",
  5886. "php",
  5887. "processing",
  5888. "sdk"
  5889. ],
  5890. "support": {
  5891. "issues": "https://github.com/openai-php/client/issues",
  5892. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  5893. },
  5894. "funding": [
  5895. {
  5896. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5897. "type": "custom"
  5898. },
  5899. {
  5900. "url": "https://github.com/gehrisandro",
  5901. "type": "github"
  5902. },
  5903. {
  5904. "url": "https://github.com/nunomaduro",
  5905. "type": "github"
  5906. }
  5907. ],
  5908. "time": "2024-11-12T20:51:16+00:00"
  5909. },
  5910. {
  5911. "name": "paragonie/constant_time_encoding",
  5912. "version": "v3.0.0",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5916. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5921. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": "^8"
  5926. },
  5927. "require-dev": {
  5928. "phpunit/phpunit": "^9",
  5929. "vimeo/psalm": "^4|^5"
  5930. },
  5931. "type": "library",
  5932. "autoload": {
  5933. "psr-4": {
  5934. "ParagonIE\\ConstantTime\\": "src/"
  5935. }
  5936. },
  5937. "notification-url": "https://packagist.org/downloads/",
  5938. "license": [
  5939. "MIT"
  5940. ],
  5941. "authors": [
  5942. {
  5943. "name": "Paragon Initiative Enterprises",
  5944. "email": "security@paragonie.com",
  5945. "homepage": "https://paragonie.com",
  5946. "role": "Maintainer"
  5947. },
  5948. {
  5949. "name": "Steve 'Sc00bz' Thomas",
  5950. "email": "steve@tobtu.com",
  5951. "homepage": "https://www.tobtu.com",
  5952. "role": "Original Developer"
  5953. }
  5954. ],
  5955. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5956. "keywords": [
  5957. "base16",
  5958. "base32",
  5959. "base32_decode",
  5960. "base32_encode",
  5961. "base64",
  5962. "base64_decode",
  5963. "base64_encode",
  5964. "bin2hex",
  5965. "encoding",
  5966. "hex",
  5967. "hex2bin",
  5968. "rfc4648"
  5969. ],
  5970. "support": {
  5971. "email": "info@paragonie.com",
  5972. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5973. "source": "https://github.com/paragonie/constant_time_encoding"
  5974. },
  5975. "time": "2024-05-08T12:36:18+00:00"
  5976. },
  5977. {
  5978. "name": "paragonie/random_compat",
  5979. "version": "v9.99.100",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://github.com/paragonie/random_compat.git",
  5983. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5984. },
  5985. "dist": {
  5986. "type": "zip",
  5987. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5988. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5989. "shasum": ""
  5990. },
  5991. "require": {
  5992. "php": ">= 7"
  5993. },
  5994. "require-dev": {
  5995. "phpunit/phpunit": "4.*|5.*",
  5996. "vimeo/psalm": "^1"
  5997. },
  5998. "suggest": {
  5999. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  6000. },
  6001. "type": "library",
  6002. "notification-url": "https://packagist.org/downloads/",
  6003. "license": [
  6004. "MIT"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "Paragon Initiative Enterprises",
  6009. "email": "security@paragonie.com",
  6010. "homepage": "https://paragonie.com"
  6011. }
  6012. ],
  6013. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  6014. "keywords": [
  6015. "csprng",
  6016. "polyfill",
  6017. "pseudorandom",
  6018. "random"
  6019. ],
  6020. "support": {
  6021. "email": "info@paragonie.com",
  6022. "issues": "https://github.com/paragonie/random_compat/issues",
  6023. "source": "https://github.com/paragonie/random_compat"
  6024. },
  6025. "time": "2020-10-15T08:29:30+00:00"
  6026. },
  6027. {
  6028. "name": "php-amqplib/php-amqplib",
  6029. "version": "v3.7.2",
  6030. "source": {
  6031. "type": "git",
  6032. "url": "https://github.com/php-amqplib/php-amqplib.git",
  6033. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  6034. },
  6035. "dist": {
  6036. "type": "zip",
  6037. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6038. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  6039. "shasum": ""
  6040. },
  6041. "require": {
  6042. "ext-mbstring": "*",
  6043. "ext-sockets": "*",
  6044. "php": "^7.2||^8.0",
  6045. "phpseclib/phpseclib": "^2.0|^3.0"
  6046. },
  6047. "conflict": {
  6048. "php": "7.4.0 - 7.4.1"
  6049. },
  6050. "replace": {
  6051. "videlalvaro/php-amqplib": "self.version"
  6052. },
  6053. "require-dev": {
  6054. "ext-curl": "*",
  6055. "nategood/httpful": "^0.2.20",
  6056. "phpunit/phpunit": "^7.5|^9.5",
  6057. "squizlabs/php_codesniffer": "^3.6"
  6058. },
  6059. "type": "library",
  6060. "extra": {
  6061. "branch-alias": {
  6062. "dev-master": "3.0-dev"
  6063. }
  6064. },
  6065. "autoload": {
  6066. "psr-4": {
  6067. "PhpAmqpLib\\": "PhpAmqpLib/"
  6068. }
  6069. },
  6070. "notification-url": "https://packagist.org/downloads/",
  6071. "license": [
  6072. "LGPL-2.1-or-later"
  6073. ],
  6074. "authors": [
  6075. {
  6076. "name": "Alvaro Videla",
  6077. "role": "Original Maintainer"
  6078. },
  6079. {
  6080. "name": "Raúl Araya",
  6081. "email": "nubeiro@gmail.com",
  6082. "role": "Maintainer"
  6083. },
  6084. {
  6085. "name": "Luke Bakken",
  6086. "email": "luke@bakken.io",
  6087. "role": "Maintainer"
  6088. },
  6089. {
  6090. "name": "Ramūnas Dronga",
  6091. "email": "github@ramuno.lt",
  6092. "role": "Maintainer"
  6093. }
  6094. ],
  6095. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  6096. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  6097. "keywords": [
  6098. "message",
  6099. "queue",
  6100. "rabbitmq"
  6101. ],
  6102. "support": {
  6103. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  6104. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  6105. },
  6106. "time": "2024-11-21T09:21:41+00:00"
  6107. },
  6108. {
  6109. "name": "php-di/phpdoc-reader",
  6110. "version": "2.2.1",
  6111. "source": {
  6112. "type": "git",
  6113. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  6114. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  6115. },
  6116. "dist": {
  6117. "type": "zip",
  6118. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6119. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  6120. "shasum": ""
  6121. },
  6122. "require": {
  6123. "php": ">=7.2.0"
  6124. },
  6125. "require-dev": {
  6126. "mnapoli/hard-mode": "~0.3.0",
  6127. "phpunit/phpunit": "^8.5|^9.0"
  6128. },
  6129. "type": "library",
  6130. "autoload": {
  6131. "psr-4": {
  6132. "PhpDocReader\\": "src/PhpDocReader"
  6133. }
  6134. },
  6135. "notification-url": "https://packagist.org/downloads/",
  6136. "license": [
  6137. "MIT"
  6138. ],
  6139. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  6140. "keywords": [
  6141. "phpdoc",
  6142. "reflection"
  6143. ],
  6144. "support": {
  6145. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  6146. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  6147. },
  6148. "time": "2020-10-12T12:39:22+00:00"
  6149. },
  6150. {
  6151. "name": "php-http/discovery",
  6152. "version": "1.20.0",
  6153. "source": {
  6154. "type": "git",
  6155. "url": "https://github.com/php-http/discovery.git",
  6156. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  6157. },
  6158. "dist": {
  6159. "type": "zip",
  6160. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6161. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  6162. "shasum": ""
  6163. },
  6164. "require": {
  6165. "composer-plugin-api": "^1.0|^2.0",
  6166. "php": "^7.1 || ^8.0"
  6167. },
  6168. "conflict": {
  6169. "nyholm/psr7": "<1.0",
  6170. "zendframework/zend-diactoros": "*"
  6171. },
  6172. "provide": {
  6173. "php-http/async-client-implementation": "*",
  6174. "php-http/client-implementation": "*",
  6175. "psr/http-client-implementation": "*",
  6176. "psr/http-factory-implementation": "*",
  6177. "psr/http-message-implementation": "*"
  6178. },
  6179. "require-dev": {
  6180. "composer/composer": "^1.0.2|^2.0",
  6181. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  6182. "php-http/httplug": "^1.0 || ^2.0",
  6183. "php-http/message-factory": "^1.0",
  6184. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  6185. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  6186. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  6187. },
  6188. "type": "composer-plugin",
  6189. "extra": {
  6190. "class": "Http\\Discovery\\Composer\\Plugin",
  6191. "plugin-optional": true
  6192. },
  6193. "autoload": {
  6194. "psr-4": {
  6195. "Http\\Discovery\\": "src/"
  6196. },
  6197. "exclude-from-classmap": [
  6198. "src/Composer/Plugin.php"
  6199. ]
  6200. },
  6201. "notification-url": "https://packagist.org/downloads/",
  6202. "license": [
  6203. "MIT"
  6204. ],
  6205. "authors": [
  6206. {
  6207. "name": "Márk Sági-Kazár",
  6208. "email": "mark.sagikazar@gmail.com"
  6209. }
  6210. ],
  6211. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  6212. "homepage": "http://php-http.org",
  6213. "keywords": [
  6214. "adapter",
  6215. "client",
  6216. "discovery",
  6217. "factory",
  6218. "http",
  6219. "message",
  6220. "psr17",
  6221. "psr7"
  6222. ],
  6223. "support": {
  6224. "issues": "https://github.com/php-http/discovery/issues",
  6225. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  6226. },
  6227. "time": "2024-10-02T11:20:13+00:00"
  6228. },
  6229. {
  6230. "name": "php-http/multipart-stream-builder",
  6231. "version": "1.4.2",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://github.com/php-http/multipart-stream-builder.git",
  6235. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  6240. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  6241. "shasum": ""
  6242. },
  6243. "require": {
  6244. "php": "^7.1 || ^8.0",
  6245. "php-http/discovery": "^1.15",
  6246. "psr/http-factory-implementation": "^1.0"
  6247. },
  6248. "require-dev": {
  6249. "nyholm/psr7": "^1.0",
  6250. "php-http/message": "^1.5",
  6251. "php-http/message-factory": "^1.0.2",
  6252. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  6253. },
  6254. "type": "library",
  6255. "autoload": {
  6256. "psr-4": {
  6257. "Http\\Message\\MultipartStream\\": "src/"
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Tobias Nyholm",
  6267. "email": "tobias.nyholm@gmail.com"
  6268. }
  6269. ],
  6270. "description": "A builder class that help you create a multipart stream",
  6271. "homepage": "http://php-http.org",
  6272. "keywords": [
  6273. "factory",
  6274. "http",
  6275. "message",
  6276. "multipart stream",
  6277. "stream"
  6278. ],
  6279. "support": {
  6280. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  6281. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  6282. },
  6283. "time": "2024-09-04T13:22:54+00:00"
  6284. },
  6285. {
  6286. "name": "phper666/jwt-auth",
  6287. "version": "v4.0.11",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://github.com/phper666/jwt-auth.git",
  6291. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6296. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6297. "shasum": ""
  6298. },
  6299. "require": {
  6300. "ext-swoole": ">=4.4",
  6301. "lcobucci/jwt": "4.1.5",
  6302. "nesbot/carbon": "^1.0 || ^2.0",
  6303. "php": ">=7.4"
  6304. },
  6305. "suggest": {
  6306. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6307. "hyperf/command": "required hyperf/command ~2.2.0",
  6308. "hyperf/config": "required hyperf/config ~2.2.0",
  6309. "hyperf/di": "required hyperf/di ~2.2.0"
  6310. },
  6311. "type": "library",
  6312. "extra": {
  6313. "hyperf": {
  6314. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6315. }
  6316. },
  6317. "autoload": {
  6318. "files": [
  6319. "src/Functions.php"
  6320. ],
  6321. "psr-4": {
  6322. "Phper666\\JWTAuth\\": "src/"
  6323. }
  6324. },
  6325. "notification-url": "https://packagist.org/downloads/",
  6326. "license": [
  6327. "MIT"
  6328. ],
  6329. "authors": [
  6330. {
  6331. "name": "Li Yuzhao",
  6332. "email": "562405704@qq.com",
  6333. "homepage": "https://github.com/phper666/jwt-auth",
  6334. "role": "Developer"
  6335. }
  6336. ],
  6337. "description": "jwt-auth Component",
  6338. "keywords": [
  6339. "hyperf",
  6340. "php"
  6341. ],
  6342. "support": {
  6343. "issues": "https://github.com/phper666/jwt-auth/issues",
  6344. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6345. },
  6346. "time": "2024-02-02T13:24:54+00:00"
  6347. },
  6348. {
  6349. "name": "phpoption/phpoption",
  6350. "version": "1.9.3",
  6351. "source": {
  6352. "type": "git",
  6353. "url": "https://github.com/schmittjoh/php-option.git",
  6354. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6355. },
  6356. "dist": {
  6357. "type": "zip",
  6358. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6359. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6360. "shasum": ""
  6361. },
  6362. "require": {
  6363. "php": "^7.2.5 || ^8.0"
  6364. },
  6365. "require-dev": {
  6366. "bamarni/composer-bin-plugin": "^1.8.2",
  6367. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6368. },
  6369. "type": "library",
  6370. "extra": {
  6371. "bamarni-bin": {
  6372. "bin-links": true,
  6373. "forward-command": false
  6374. },
  6375. "branch-alias": {
  6376. "dev-master": "1.9-dev"
  6377. }
  6378. },
  6379. "autoload": {
  6380. "psr-4": {
  6381. "PhpOption\\": "src/PhpOption/"
  6382. }
  6383. },
  6384. "notification-url": "https://packagist.org/downloads/",
  6385. "license": [
  6386. "Apache-2.0"
  6387. ],
  6388. "authors": [
  6389. {
  6390. "name": "Johannes M. Schmitt",
  6391. "email": "schmittjoh@gmail.com",
  6392. "homepage": "https://github.com/schmittjoh"
  6393. },
  6394. {
  6395. "name": "Graham Campbell",
  6396. "email": "hello@gjcampbell.co.uk",
  6397. "homepage": "https://github.com/GrahamCampbell"
  6398. }
  6399. ],
  6400. "description": "Option Type for PHP",
  6401. "keywords": [
  6402. "language",
  6403. "option",
  6404. "php",
  6405. "type"
  6406. ],
  6407. "support": {
  6408. "issues": "https://github.com/schmittjoh/php-option/issues",
  6409. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6410. },
  6411. "funding": [
  6412. {
  6413. "url": "https://github.com/GrahamCampbell",
  6414. "type": "github"
  6415. },
  6416. {
  6417. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6418. "type": "tidelift"
  6419. }
  6420. ],
  6421. "time": "2024-07-20T21:41:07+00:00"
  6422. },
  6423. {
  6424. "name": "phpseclib/phpseclib",
  6425. "version": "3.0.42",
  6426. "source": {
  6427. "type": "git",
  6428. "url": "https://github.com/phpseclib/phpseclib.git",
  6429. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6430. },
  6431. "dist": {
  6432. "type": "zip",
  6433. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6434. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6435. "shasum": ""
  6436. },
  6437. "require": {
  6438. "paragonie/constant_time_encoding": "^1|^2|^3",
  6439. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6440. "php": ">=5.6.1"
  6441. },
  6442. "require-dev": {
  6443. "phpunit/phpunit": "*"
  6444. },
  6445. "suggest": {
  6446. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6447. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6448. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6449. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6450. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6451. },
  6452. "type": "library",
  6453. "autoload": {
  6454. "files": [
  6455. "phpseclib/bootstrap.php"
  6456. ],
  6457. "psr-4": {
  6458. "phpseclib3\\": "phpseclib/"
  6459. }
  6460. },
  6461. "notification-url": "https://packagist.org/downloads/",
  6462. "license": [
  6463. "MIT"
  6464. ],
  6465. "authors": [
  6466. {
  6467. "name": "Jim Wigginton",
  6468. "email": "terrafrost@php.net",
  6469. "role": "Lead Developer"
  6470. },
  6471. {
  6472. "name": "Patrick Monnerat",
  6473. "email": "pm@datasphere.ch",
  6474. "role": "Developer"
  6475. },
  6476. {
  6477. "name": "Andreas Fischer",
  6478. "email": "bantu@phpbb.com",
  6479. "role": "Developer"
  6480. },
  6481. {
  6482. "name": "Hans-Jürgen Petrich",
  6483. "email": "petrich@tronic-media.com",
  6484. "role": "Developer"
  6485. },
  6486. {
  6487. "name": "Graham Campbell",
  6488. "email": "graham@alt-three.com",
  6489. "role": "Developer"
  6490. }
  6491. ],
  6492. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6493. "homepage": "http://phpseclib.sourceforge.net",
  6494. "keywords": [
  6495. "BigInteger",
  6496. "aes",
  6497. "asn.1",
  6498. "asn1",
  6499. "blowfish",
  6500. "crypto",
  6501. "cryptography",
  6502. "encryption",
  6503. "rsa",
  6504. "security",
  6505. "sftp",
  6506. "signature",
  6507. "signing",
  6508. "ssh",
  6509. "twofish",
  6510. "x.509",
  6511. "x509"
  6512. ],
  6513. "support": {
  6514. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6515. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6516. },
  6517. "funding": [
  6518. {
  6519. "url": "https://github.com/terrafrost",
  6520. "type": "github"
  6521. },
  6522. {
  6523. "url": "https://www.patreon.com/phpseclib",
  6524. "type": "patreon"
  6525. },
  6526. {
  6527. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6528. "type": "tidelift"
  6529. }
  6530. ],
  6531. "time": "2024-09-16T03:06:04+00:00"
  6532. },
  6533. {
  6534. "name": "psr/cache",
  6535. "version": "3.0.0",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://github.com/php-fig/cache.git",
  6539. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6544. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6545. "shasum": ""
  6546. },
  6547. "require": {
  6548. "php": ">=8.0.0"
  6549. },
  6550. "type": "library",
  6551. "extra": {
  6552. "branch-alias": {
  6553. "dev-master": "1.0.x-dev"
  6554. }
  6555. },
  6556. "autoload": {
  6557. "psr-4": {
  6558. "Psr\\Cache\\": "src/"
  6559. }
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "PHP-FIG",
  6568. "homepage": "https://www.php-fig.org/"
  6569. }
  6570. ],
  6571. "description": "Common interface for caching libraries",
  6572. "keywords": [
  6573. "cache",
  6574. "psr",
  6575. "psr-6"
  6576. ],
  6577. "support": {
  6578. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6579. },
  6580. "time": "2021-02-03T23:26:27+00:00"
  6581. },
  6582. {
  6583. "name": "psr/clock",
  6584. "version": "1.0.0",
  6585. "source": {
  6586. "type": "git",
  6587. "url": "https://github.com/php-fig/clock.git",
  6588. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6589. },
  6590. "dist": {
  6591. "type": "zip",
  6592. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6593. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6594. "shasum": ""
  6595. },
  6596. "require": {
  6597. "php": "^7.0 || ^8.0"
  6598. },
  6599. "type": "library",
  6600. "autoload": {
  6601. "psr-4": {
  6602. "Psr\\Clock\\": "src/"
  6603. }
  6604. },
  6605. "notification-url": "https://packagist.org/downloads/",
  6606. "license": [
  6607. "MIT"
  6608. ],
  6609. "authors": [
  6610. {
  6611. "name": "PHP-FIG",
  6612. "homepage": "https://www.php-fig.org/"
  6613. }
  6614. ],
  6615. "description": "Common interface for reading the clock.",
  6616. "homepage": "https://github.com/php-fig/clock",
  6617. "keywords": [
  6618. "clock",
  6619. "now",
  6620. "psr",
  6621. "psr-20",
  6622. "time"
  6623. ],
  6624. "support": {
  6625. "issues": "https://github.com/php-fig/clock/issues",
  6626. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6627. },
  6628. "time": "2022-11-25T14:36:26+00:00"
  6629. },
  6630. {
  6631. "name": "psr/container",
  6632. "version": "2.0.2",
  6633. "source": {
  6634. "type": "git",
  6635. "url": "https://github.com/php-fig/container.git",
  6636. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6637. },
  6638. "dist": {
  6639. "type": "zip",
  6640. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6641. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6642. "shasum": ""
  6643. },
  6644. "require": {
  6645. "php": ">=7.4.0"
  6646. },
  6647. "type": "library",
  6648. "extra": {
  6649. "branch-alias": {
  6650. "dev-master": "2.0.x-dev"
  6651. }
  6652. },
  6653. "autoload": {
  6654. "psr-4": {
  6655. "Psr\\Container\\": "src/"
  6656. }
  6657. },
  6658. "notification-url": "https://packagist.org/downloads/",
  6659. "license": [
  6660. "MIT"
  6661. ],
  6662. "authors": [
  6663. {
  6664. "name": "PHP-FIG",
  6665. "homepage": "https://www.php-fig.org/"
  6666. }
  6667. ],
  6668. "description": "Common Container Interface (PHP FIG PSR-11)",
  6669. "homepage": "https://github.com/php-fig/container",
  6670. "keywords": [
  6671. "PSR-11",
  6672. "container",
  6673. "container-interface",
  6674. "container-interop",
  6675. "psr"
  6676. ],
  6677. "support": {
  6678. "issues": "https://github.com/php-fig/container/issues",
  6679. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6680. },
  6681. "time": "2021-11-05T16:47:00+00:00"
  6682. },
  6683. {
  6684. "name": "psr/event-dispatcher",
  6685. "version": "1.0.0",
  6686. "source": {
  6687. "type": "git",
  6688. "url": "https://github.com/php-fig/event-dispatcher.git",
  6689. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6690. },
  6691. "dist": {
  6692. "type": "zip",
  6693. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6694. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6695. "shasum": ""
  6696. },
  6697. "require": {
  6698. "php": ">=7.2.0"
  6699. },
  6700. "type": "library",
  6701. "extra": {
  6702. "branch-alias": {
  6703. "dev-master": "1.0.x-dev"
  6704. }
  6705. },
  6706. "autoload": {
  6707. "psr-4": {
  6708. "Psr\\EventDispatcher\\": "src/"
  6709. }
  6710. },
  6711. "notification-url": "https://packagist.org/downloads/",
  6712. "license": [
  6713. "MIT"
  6714. ],
  6715. "authors": [
  6716. {
  6717. "name": "PHP-FIG",
  6718. "homepage": "http://www.php-fig.org/"
  6719. }
  6720. ],
  6721. "description": "Standard interfaces for event handling.",
  6722. "keywords": [
  6723. "events",
  6724. "psr",
  6725. "psr-14"
  6726. ],
  6727. "support": {
  6728. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6729. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6730. },
  6731. "time": "2019-01-08T18:20:26+00:00"
  6732. },
  6733. {
  6734. "name": "psr/http-client",
  6735. "version": "1.0.3",
  6736. "source": {
  6737. "type": "git",
  6738. "url": "https://github.com/php-fig/http-client.git",
  6739. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6740. },
  6741. "dist": {
  6742. "type": "zip",
  6743. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6744. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6745. "shasum": ""
  6746. },
  6747. "require": {
  6748. "php": "^7.0 || ^8.0",
  6749. "psr/http-message": "^1.0 || ^2.0"
  6750. },
  6751. "type": "library",
  6752. "extra": {
  6753. "branch-alias": {
  6754. "dev-master": "1.0.x-dev"
  6755. }
  6756. },
  6757. "autoload": {
  6758. "psr-4": {
  6759. "Psr\\Http\\Client\\": "src/"
  6760. }
  6761. },
  6762. "notification-url": "https://packagist.org/downloads/",
  6763. "license": [
  6764. "MIT"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "PHP-FIG",
  6769. "homepage": "https://www.php-fig.org/"
  6770. }
  6771. ],
  6772. "description": "Common interface for HTTP clients",
  6773. "homepage": "https://github.com/php-fig/http-client",
  6774. "keywords": [
  6775. "http",
  6776. "http-client",
  6777. "psr",
  6778. "psr-18"
  6779. ],
  6780. "support": {
  6781. "source": "https://github.com/php-fig/http-client"
  6782. },
  6783. "time": "2023-09-23T14:17:50+00:00"
  6784. },
  6785. {
  6786. "name": "psr/http-factory",
  6787. "version": "1.1.0",
  6788. "source": {
  6789. "type": "git",
  6790. "url": "https://github.com/php-fig/http-factory.git",
  6791. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6792. },
  6793. "dist": {
  6794. "type": "zip",
  6795. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6796. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6797. "shasum": ""
  6798. },
  6799. "require": {
  6800. "php": ">=7.1",
  6801. "psr/http-message": "^1.0 || ^2.0"
  6802. },
  6803. "type": "library",
  6804. "extra": {
  6805. "branch-alias": {
  6806. "dev-master": "1.0.x-dev"
  6807. }
  6808. },
  6809. "autoload": {
  6810. "psr-4": {
  6811. "Psr\\Http\\Message\\": "src/"
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "PHP-FIG",
  6821. "homepage": "https://www.php-fig.org/"
  6822. }
  6823. ],
  6824. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6825. "keywords": [
  6826. "factory",
  6827. "http",
  6828. "message",
  6829. "psr",
  6830. "psr-17",
  6831. "psr-7",
  6832. "request",
  6833. "response"
  6834. ],
  6835. "support": {
  6836. "source": "https://github.com/php-fig/http-factory"
  6837. },
  6838. "time": "2024-04-15T12:06:14+00:00"
  6839. },
  6840. {
  6841. "name": "psr/http-message",
  6842. "version": "2.0",
  6843. "source": {
  6844. "type": "git",
  6845. "url": "https://github.com/php-fig/http-message.git",
  6846. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6847. },
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6851. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": "^7.2 || ^8.0"
  6856. },
  6857. "type": "library",
  6858. "extra": {
  6859. "branch-alias": {
  6860. "dev-master": "2.0.x-dev"
  6861. }
  6862. },
  6863. "autoload": {
  6864. "psr-4": {
  6865. "Psr\\Http\\Message\\": "src/"
  6866. }
  6867. },
  6868. "notification-url": "https://packagist.org/downloads/",
  6869. "license": [
  6870. "MIT"
  6871. ],
  6872. "authors": [
  6873. {
  6874. "name": "PHP-FIG",
  6875. "homepage": "https://www.php-fig.org/"
  6876. }
  6877. ],
  6878. "description": "Common interface for HTTP messages",
  6879. "homepage": "https://github.com/php-fig/http-message",
  6880. "keywords": [
  6881. "http",
  6882. "http-message",
  6883. "psr",
  6884. "psr-7",
  6885. "request",
  6886. "response"
  6887. ],
  6888. "support": {
  6889. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6890. },
  6891. "time": "2023-04-04T09:54:51+00:00"
  6892. },
  6893. {
  6894. "name": "psr/http-server-handler",
  6895. "version": "1.0.2",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://github.com/php-fig/http-server-handler.git",
  6899. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6904. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6905. "shasum": ""
  6906. },
  6907. "require": {
  6908. "php": ">=7.0",
  6909. "psr/http-message": "^1.0 || ^2.0"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "branch-alias": {
  6914. "dev-master": "1.0.x-dev"
  6915. }
  6916. },
  6917. "autoload": {
  6918. "psr-4": {
  6919. "Psr\\Http\\Server\\": "src/"
  6920. }
  6921. },
  6922. "notification-url": "https://packagist.org/downloads/",
  6923. "license": [
  6924. "MIT"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "PHP-FIG",
  6929. "homepage": "https://www.php-fig.org/"
  6930. }
  6931. ],
  6932. "description": "Common interface for HTTP server-side request handler",
  6933. "keywords": [
  6934. "handler",
  6935. "http",
  6936. "http-interop",
  6937. "psr",
  6938. "psr-15",
  6939. "psr-7",
  6940. "request",
  6941. "response",
  6942. "server"
  6943. ],
  6944. "support": {
  6945. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6946. },
  6947. "time": "2023-04-10T20:06:20+00:00"
  6948. },
  6949. {
  6950. "name": "psr/http-server-middleware",
  6951. "version": "1.0.2",
  6952. "source": {
  6953. "type": "git",
  6954. "url": "https://github.com/php-fig/http-server-middleware.git",
  6955. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6956. },
  6957. "dist": {
  6958. "type": "zip",
  6959. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6960. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6961. "shasum": ""
  6962. },
  6963. "require": {
  6964. "php": ">=7.0",
  6965. "psr/http-message": "^1.0 || ^2.0",
  6966. "psr/http-server-handler": "^1.0"
  6967. },
  6968. "type": "library",
  6969. "extra": {
  6970. "branch-alias": {
  6971. "dev-master": "1.0.x-dev"
  6972. }
  6973. },
  6974. "autoload": {
  6975. "psr-4": {
  6976. "Psr\\Http\\Server\\": "src/"
  6977. }
  6978. },
  6979. "notification-url": "https://packagist.org/downloads/",
  6980. "license": [
  6981. "MIT"
  6982. ],
  6983. "authors": [
  6984. {
  6985. "name": "PHP-FIG",
  6986. "homepage": "https://www.php-fig.org/"
  6987. }
  6988. ],
  6989. "description": "Common interface for HTTP server-side middleware",
  6990. "keywords": [
  6991. "http",
  6992. "http-interop",
  6993. "middleware",
  6994. "psr",
  6995. "psr-15",
  6996. "psr-7",
  6997. "request",
  6998. "response"
  6999. ],
  7000. "support": {
  7001. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  7002. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  7003. },
  7004. "time": "2023-04-11T06:14:47+00:00"
  7005. },
  7006. {
  7007. "name": "psr/log",
  7008. "version": "3.0.2",
  7009. "source": {
  7010. "type": "git",
  7011. "url": "https://github.com/php-fig/log.git",
  7012. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7013. },
  7014. "dist": {
  7015. "type": "zip",
  7016. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7017. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7018. "shasum": ""
  7019. },
  7020. "require": {
  7021. "php": ">=8.0.0"
  7022. },
  7023. "type": "library",
  7024. "extra": {
  7025. "branch-alias": {
  7026. "dev-master": "3.x-dev"
  7027. }
  7028. },
  7029. "autoload": {
  7030. "psr-4": {
  7031. "Psr\\Log\\": "src"
  7032. }
  7033. },
  7034. "notification-url": "https://packagist.org/downloads/",
  7035. "license": [
  7036. "MIT"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "PHP-FIG",
  7041. "homepage": "https://www.php-fig.org/"
  7042. }
  7043. ],
  7044. "description": "Common interface for logging libraries",
  7045. "homepage": "https://github.com/php-fig/log",
  7046. "keywords": [
  7047. "log",
  7048. "psr",
  7049. "psr-3"
  7050. ],
  7051. "support": {
  7052. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7053. },
  7054. "time": "2024-09-11T13:17:53+00:00"
  7055. },
  7056. {
  7057. "name": "psr/simple-cache",
  7058. "version": "3.0.0",
  7059. "source": {
  7060. "type": "git",
  7061. "url": "https://github.com/php-fig/simple-cache.git",
  7062. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  7063. },
  7064. "dist": {
  7065. "type": "zip",
  7066. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7067. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  7068. "shasum": ""
  7069. },
  7070. "require": {
  7071. "php": ">=8.0.0"
  7072. },
  7073. "type": "library",
  7074. "extra": {
  7075. "branch-alias": {
  7076. "dev-master": "3.0.x-dev"
  7077. }
  7078. },
  7079. "autoload": {
  7080. "psr-4": {
  7081. "Psr\\SimpleCache\\": "src/"
  7082. }
  7083. },
  7084. "notification-url": "https://packagist.org/downloads/",
  7085. "license": [
  7086. "MIT"
  7087. ],
  7088. "authors": [
  7089. {
  7090. "name": "PHP-FIG",
  7091. "homepage": "https://www.php-fig.org/"
  7092. }
  7093. ],
  7094. "description": "Common interfaces for simple caching",
  7095. "keywords": [
  7096. "cache",
  7097. "caching",
  7098. "psr",
  7099. "psr-16",
  7100. "simple-cache"
  7101. ],
  7102. "support": {
  7103. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  7104. },
  7105. "time": "2021-10-29T13:26:27+00:00"
  7106. },
  7107. {
  7108. "name": "ralouphie/getallheaders",
  7109. "version": "3.0.3",
  7110. "source": {
  7111. "type": "git",
  7112. "url": "https://github.com/ralouphie/getallheaders.git",
  7113. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7114. },
  7115. "dist": {
  7116. "type": "zip",
  7117. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7118. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7119. "shasum": ""
  7120. },
  7121. "require": {
  7122. "php": ">=5.6"
  7123. },
  7124. "require-dev": {
  7125. "php-coveralls/php-coveralls": "^2.1",
  7126. "phpunit/phpunit": "^5 || ^6.5"
  7127. },
  7128. "type": "library",
  7129. "autoload": {
  7130. "files": [
  7131. "src/getallheaders.php"
  7132. ]
  7133. },
  7134. "notification-url": "https://packagist.org/downloads/",
  7135. "license": [
  7136. "MIT"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Ralph Khattar",
  7141. "email": "ralph.khattar@gmail.com"
  7142. }
  7143. ],
  7144. "description": "A polyfill for getallheaders.",
  7145. "support": {
  7146. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7147. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7148. },
  7149. "time": "2019-03-08T08:55:37+00:00"
  7150. },
  7151. {
  7152. "name": "stella-maris/clock",
  7153. "version": "0.1.7",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/stella-maris-solutions/clock.git",
  7157. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7162. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "php": "^7.0|^8.0",
  7167. "psr/clock": "^1.0"
  7168. },
  7169. "type": "library",
  7170. "autoload": {
  7171. "psr-4": {
  7172. "StellaMaris\\Clock\\": "src"
  7173. }
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Andreas Heigl",
  7182. "role": "Maintainer"
  7183. }
  7184. ],
  7185. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  7186. "homepage": "https://gitlab.com/stella-maris/clock",
  7187. "keywords": [
  7188. "clock",
  7189. "datetime",
  7190. "point in time",
  7191. "psr20"
  7192. ],
  7193. "support": {
  7194. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  7195. },
  7196. "time": "2022-11-25T16:15:06+00:00"
  7197. },
  7198. {
  7199. "name": "swow/psr7-plus",
  7200. "version": "v1.1.2",
  7201. "source": {
  7202. "type": "git",
  7203. "url": "https://github.com/swow/psr7-plus.git",
  7204. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  7205. },
  7206. "dist": {
  7207. "type": "zip",
  7208. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  7209. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  7210. "shasum": ""
  7211. },
  7212. "require": {
  7213. "php": ">=8.0",
  7214. "psr/http-client": "^1.0",
  7215. "psr/http-factory": "^1.0",
  7216. "psr/http-message": "^1.1|^2.0"
  7217. },
  7218. "type": "library",
  7219. "autoload": {
  7220. "psr-4": {
  7221. "Swow\\Psr7\\Message\\": "src/Message/"
  7222. }
  7223. },
  7224. "notification-url": "https://packagist.org/downloads/",
  7225. "license": [
  7226. "Apache-2.0"
  7227. ],
  7228. "authors": [
  7229. {
  7230. "name": "twose",
  7231. "email": "twosee@php.net"
  7232. }
  7233. ],
  7234. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  7235. "keywords": [
  7236. "http",
  7237. "psr17",
  7238. "psr7",
  7239. "swow",
  7240. "websocket"
  7241. ],
  7242. "support": {
  7243. "issues": "https://github.com/swow/swow",
  7244. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  7245. },
  7246. "time": "2023-06-15T09:18:11+00:00"
  7247. },
  7248. {
  7249. "name": "symfony/console",
  7250. "version": "v6.4.17",
  7251. "source": {
  7252. "type": "git",
  7253. "url": "https://github.com/symfony/console.git",
  7254. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04"
  7255. },
  7256. "dist": {
  7257. "type": "zip",
  7258. "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04",
  7259. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  7260. "shasum": ""
  7261. },
  7262. "require": {
  7263. "php": ">=8.1",
  7264. "symfony/deprecation-contracts": "^2.5|^3",
  7265. "symfony/polyfill-mbstring": "~1.0",
  7266. "symfony/service-contracts": "^2.5|^3",
  7267. "symfony/string": "^5.4|^6.0|^7.0"
  7268. },
  7269. "conflict": {
  7270. "symfony/dependency-injection": "<5.4",
  7271. "symfony/dotenv": "<5.4",
  7272. "symfony/event-dispatcher": "<5.4",
  7273. "symfony/lock": "<5.4",
  7274. "symfony/process": "<5.4"
  7275. },
  7276. "provide": {
  7277. "psr/log-implementation": "1.0|2.0|3.0"
  7278. },
  7279. "require-dev": {
  7280. "psr/log": "^1|^2|^3",
  7281. "symfony/config": "^5.4|^6.0|^7.0",
  7282. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7283. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7284. "symfony/http-foundation": "^6.4|^7.0",
  7285. "symfony/http-kernel": "^6.4|^7.0",
  7286. "symfony/lock": "^5.4|^6.0|^7.0",
  7287. "symfony/messenger": "^5.4|^6.0|^7.0",
  7288. "symfony/process": "^5.4|^6.0|^7.0",
  7289. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7290. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7291. },
  7292. "type": "library",
  7293. "autoload": {
  7294. "psr-4": {
  7295. "Symfony\\Component\\Console\\": ""
  7296. },
  7297. "exclude-from-classmap": [
  7298. "/Tests/"
  7299. ]
  7300. },
  7301. "notification-url": "https://packagist.org/downloads/",
  7302. "license": [
  7303. "MIT"
  7304. ],
  7305. "authors": [
  7306. {
  7307. "name": "Fabien Potencier",
  7308. "email": "fabien@symfony.com"
  7309. },
  7310. {
  7311. "name": "Symfony Community",
  7312. "homepage": "https://symfony.com/contributors"
  7313. }
  7314. ],
  7315. "description": "Eases the creation of beautiful and testable command line interfaces",
  7316. "homepage": "https://symfony.com",
  7317. "keywords": [
  7318. "cli",
  7319. "command-line",
  7320. "console",
  7321. "terminal"
  7322. ],
  7323. "support": {
  7324. "source": "https://github.com/symfony/console/tree/v6.4.17"
  7325. },
  7326. "funding": [
  7327. {
  7328. "url": "https://symfony.com/sponsor",
  7329. "type": "custom"
  7330. },
  7331. {
  7332. "url": "https://github.com/fabpot",
  7333. "type": "github"
  7334. },
  7335. {
  7336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7337. "type": "tidelift"
  7338. }
  7339. ],
  7340. "time": "2024-12-07T12:07:30+00:00"
  7341. },
  7342. {
  7343. "name": "symfony/deprecation-contracts",
  7344. "version": "v3.5.1",
  7345. "source": {
  7346. "type": "git",
  7347. "url": "https://github.com/symfony/deprecation-contracts.git",
  7348. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7349. },
  7350. "dist": {
  7351. "type": "zip",
  7352. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7353. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7354. "shasum": ""
  7355. },
  7356. "require": {
  7357. "php": ">=8.1"
  7358. },
  7359. "type": "library",
  7360. "extra": {
  7361. "thanks": {
  7362. "url": "https://github.com/symfony/contracts",
  7363. "name": "symfony/contracts"
  7364. },
  7365. "branch-alias": {
  7366. "dev-main": "3.5-dev"
  7367. }
  7368. },
  7369. "autoload": {
  7370. "files": [
  7371. "function.php"
  7372. ]
  7373. },
  7374. "notification-url": "https://packagist.org/downloads/",
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Nicolas Grekas",
  7381. "email": "p@tchwork.com"
  7382. },
  7383. {
  7384. "name": "Symfony Community",
  7385. "homepage": "https://symfony.com/contributors"
  7386. }
  7387. ],
  7388. "description": "A generic function and convention to trigger deprecation notices",
  7389. "homepage": "https://symfony.com",
  7390. "support": {
  7391. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7392. },
  7393. "funding": [
  7394. {
  7395. "url": "https://symfony.com/sponsor",
  7396. "type": "custom"
  7397. },
  7398. {
  7399. "url": "https://github.com/fabpot",
  7400. "type": "github"
  7401. },
  7402. {
  7403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7404. "type": "tidelift"
  7405. }
  7406. ],
  7407. "time": "2024-09-25T14:20:29+00:00"
  7408. },
  7409. {
  7410. "name": "symfony/finder",
  7411. "version": "v6.4.17",
  7412. "source": {
  7413. "type": "git",
  7414. "url": "https://github.com/symfony/finder.git",
  7415. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  7416. },
  7417. "dist": {
  7418. "type": "zip",
  7419. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7420. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  7421. "shasum": ""
  7422. },
  7423. "require": {
  7424. "php": ">=8.1"
  7425. },
  7426. "require-dev": {
  7427. "symfony/filesystem": "^6.0|^7.0"
  7428. },
  7429. "type": "library",
  7430. "autoload": {
  7431. "psr-4": {
  7432. "Symfony\\Component\\Finder\\": ""
  7433. },
  7434. "exclude-from-classmap": [
  7435. "/Tests/"
  7436. ]
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "MIT"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Fabien Potencier",
  7445. "email": "fabien@symfony.com"
  7446. },
  7447. {
  7448. "name": "Symfony Community",
  7449. "homepage": "https://symfony.com/contributors"
  7450. }
  7451. ],
  7452. "description": "Finds files and directories via an intuitive fluent interface",
  7453. "homepage": "https://symfony.com",
  7454. "support": {
  7455. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  7456. },
  7457. "funding": [
  7458. {
  7459. "url": "https://symfony.com/sponsor",
  7460. "type": "custom"
  7461. },
  7462. {
  7463. "url": "https://github.com/fabpot",
  7464. "type": "github"
  7465. },
  7466. {
  7467. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7468. "type": "tidelift"
  7469. }
  7470. ],
  7471. "time": "2024-12-29T13:51:37+00:00"
  7472. },
  7473. {
  7474. "name": "symfony/polyfill-ctype",
  7475. "version": "v1.31.0",
  7476. "source": {
  7477. "type": "git",
  7478. "url": "https://github.com/symfony/polyfill-ctype.git",
  7479. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7480. },
  7481. "dist": {
  7482. "type": "zip",
  7483. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7484. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7485. "shasum": ""
  7486. },
  7487. "require": {
  7488. "php": ">=7.2"
  7489. },
  7490. "provide": {
  7491. "ext-ctype": "*"
  7492. },
  7493. "suggest": {
  7494. "ext-ctype": "For best performance"
  7495. },
  7496. "type": "library",
  7497. "extra": {
  7498. "thanks": {
  7499. "url": "https://github.com/symfony/polyfill",
  7500. "name": "symfony/polyfill"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "files": [
  7505. "bootstrap.php"
  7506. ],
  7507. "psr-4": {
  7508. "Symfony\\Polyfill\\Ctype\\": ""
  7509. }
  7510. },
  7511. "notification-url": "https://packagist.org/downloads/",
  7512. "license": [
  7513. "MIT"
  7514. ],
  7515. "authors": [
  7516. {
  7517. "name": "Gert de Pagter",
  7518. "email": "BackEndTea@gmail.com"
  7519. },
  7520. {
  7521. "name": "Symfony Community",
  7522. "homepage": "https://symfony.com/contributors"
  7523. }
  7524. ],
  7525. "description": "Symfony polyfill for ctype functions",
  7526. "homepage": "https://symfony.com",
  7527. "keywords": [
  7528. "compatibility",
  7529. "ctype",
  7530. "polyfill",
  7531. "portable"
  7532. ],
  7533. "support": {
  7534. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7535. },
  7536. "funding": [
  7537. {
  7538. "url": "https://symfony.com/sponsor",
  7539. "type": "custom"
  7540. },
  7541. {
  7542. "url": "https://github.com/fabpot",
  7543. "type": "github"
  7544. },
  7545. {
  7546. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7547. "type": "tidelift"
  7548. }
  7549. ],
  7550. "time": "2024-09-09T11:45:10+00:00"
  7551. },
  7552. {
  7553. "name": "symfony/polyfill-intl-grapheme",
  7554. "version": "v1.31.0",
  7555. "source": {
  7556. "type": "git",
  7557. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7558. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7559. },
  7560. "dist": {
  7561. "type": "zip",
  7562. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7563. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7564. "shasum": ""
  7565. },
  7566. "require": {
  7567. "php": ">=7.2"
  7568. },
  7569. "suggest": {
  7570. "ext-intl": "For best performance"
  7571. },
  7572. "type": "library",
  7573. "extra": {
  7574. "thanks": {
  7575. "url": "https://github.com/symfony/polyfill",
  7576. "name": "symfony/polyfill"
  7577. }
  7578. },
  7579. "autoload": {
  7580. "files": [
  7581. "bootstrap.php"
  7582. ],
  7583. "psr-4": {
  7584. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7585. }
  7586. },
  7587. "notification-url": "https://packagist.org/downloads/",
  7588. "license": [
  7589. "MIT"
  7590. ],
  7591. "authors": [
  7592. {
  7593. "name": "Nicolas Grekas",
  7594. "email": "p@tchwork.com"
  7595. },
  7596. {
  7597. "name": "Symfony Community",
  7598. "homepage": "https://symfony.com/contributors"
  7599. }
  7600. ],
  7601. "description": "Symfony polyfill for intl's grapheme_* functions",
  7602. "homepage": "https://symfony.com",
  7603. "keywords": [
  7604. "compatibility",
  7605. "grapheme",
  7606. "intl",
  7607. "polyfill",
  7608. "portable",
  7609. "shim"
  7610. ],
  7611. "support": {
  7612. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7613. },
  7614. "funding": [
  7615. {
  7616. "url": "https://symfony.com/sponsor",
  7617. "type": "custom"
  7618. },
  7619. {
  7620. "url": "https://github.com/fabpot",
  7621. "type": "github"
  7622. },
  7623. {
  7624. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7625. "type": "tidelift"
  7626. }
  7627. ],
  7628. "time": "2024-09-09T11:45:10+00:00"
  7629. },
  7630. {
  7631. "name": "symfony/polyfill-intl-idn",
  7632. "version": "v1.31.0",
  7633. "source": {
  7634. "type": "git",
  7635. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7636. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7637. },
  7638. "dist": {
  7639. "type": "zip",
  7640. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7641. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7642. "shasum": ""
  7643. },
  7644. "require": {
  7645. "php": ">=7.2",
  7646. "symfony/polyfill-intl-normalizer": "^1.10"
  7647. },
  7648. "suggest": {
  7649. "ext-intl": "For best performance"
  7650. },
  7651. "type": "library",
  7652. "extra": {
  7653. "thanks": {
  7654. "url": "https://github.com/symfony/polyfill",
  7655. "name": "symfony/polyfill"
  7656. }
  7657. },
  7658. "autoload": {
  7659. "files": [
  7660. "bootstrap.php"
  7661. ],
  7662. "psr-4": {
  7663. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7664. }
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "MIT"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Laurent Bassin",
  7673. "email": "laurent@bassin.info"
  7674. },
  7675. {
  7676. "name": "Trevor Rowbotham",
  7677. "email": "trevor.rowbotham@pm.me"
  7678. },
  7679. {
  7680. "name": "Symfony Community",
  7681. "homepage": "https://symfony.com/contributors"
  7682. }
  7683. ],
  7684. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7685. "homepage": "https://symfony.com",
  7686. "keywords": [
  7687. "compatibility",
  7688. "idn",
  7689. "intl",
  7690. "polyfill",
  7691. "portable",
  7692. "shim"
  7693. ],
  7694. "support": {
  7695. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7696. },
  7697. "funding": [
  7698. {
  7699. "url": "https://symfony.com/sponsor",
  7700. "type": "custom"
  7701. },
  7702. {
  7703. "url": "https://github.com/fabpot",
  7704. "type": "github"
  7705. },
  7706. {
  7707. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7708. "type": "tidelift"
  7709. }
  7710. ],
  7711. "time": "2024-09-09T11:45:10+00:00"
  7712. },
  7713. {
  7714. "name": "symfony/polyfill-intl-normalizer",
  7715. "version": "v1.31.0",
  7716. "source": {
  7717. "type": "git",
  7718. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7719. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7720. },
  7721. "dist": {
  7722. "type": "zip",
  7723. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7724. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7725. "shasum": ""
  7726. },
  7727. "require": {
  7728. "php": ">=7.2"
  7729. },
  7730. "suggest": {
  7731. "ext-intl": "For best performance"
  7732. },
  7733. "type": "library",
  7734. "extra": {
  7735. "thanks": {
  7736. "url": "https://github.com/symfony/polyfill",
  7737. "name": "symfony/polyfill"
  7738. }
  7739. },
  7740. "autoload": {
  7741. "files": [
  7742. "bootstrap.php"
  7743. ],
  7744. "psr-4": {
  7745. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7746. },
  7747. "classmap": [
  7748. "Resources/stubs"
  7749. ]
  7750. },
  7751. "notification-url": "https://packagist.org/downloads/",
  7752. "license": [
  7753. "MIT"
  7754. ],
  7755. "authors": [
  7756. {
  7757. "name": "Nicolas Grekas",
  7758. "email": "p@tchwork.com"
  7759. },
  7760. {
  7761. "name": "Symfony Community",
  7762. "homepage": "https://symfony.com/contributors"
  7763. }
  7764. ],
  7765. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7766. "homepage": "https://symfony.com",
  7767. "keywords": [
  7768. "compatibility",
  7769. "intl",
  7770. "normalizer",
  7771. "polyfill",
  7772. "portable",
  7773. "shim"
  7774. ],
  7775. "support": {
  7776. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7777. },
  7778. "funding": [
  7779. {
  7780. "url": "https://symfony.com/sponsor",
  7781. "type": "custom"
  7782. },
  7783. {
  7784. "url": "https://github.com/fabpot",
  7785. "type": "github"
  7786. },
  7787. {
  7788. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7789. "type": "tidelift"
  7790. }
  7791. ],
  7792. "time": "2024-09-09T11:45:10+00:00"
  7793. },
  7794. {
  7795. "name": "symfony/polyfill-mbstring",
  7796. "version": "v1.31.0",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7800. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7805. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "php": ">=7.2"
  7810. },
  7811. "provide": {
  7812. "ext-mbstring": "*"
  7813. },
  7814. "suggest": {
  7815. "ext-mbstring": "For best performance"
  7816. },
  7817. "type": "library",
  7818. "extra": {
  7819. "thanks": {
  7820. "url": "https://github.com/symfony/polyfill",
  7821. "name": "symfony/polyfill"
  7822. }
  7823. },
  7824. "autoload": {
  7825. "files": [
  7826. "bootstrap.php"
  7827. ],
  7828. "psr-4": {
  7829. "Symfony\\Polyfill\\Mbstring\\": ""
  7830. }
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Nicolas Grekas",
  7839. "email": "p@tchwork.com"
  7840. },
  7841. {
  7842. "name": "Symfony Community",
  7843. "homepage": "https://symfony.com/contributors"
  7844. }
  7845. ],
  7846. "description": "Symfony polyfill for the Mbstring extension",
  7847. "homepage": "https://symfony.com",
  7848. "keywords": [
  7849. "compatibility",
  7850. "mbstring",
  7851. "polyfill",
  7852. "portable",
  7853. "shim"
  7854. ],
  7855. "support": {
  7856. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7857. },
  7858. "funding": [
  7859. {
  7860. "url": "https://symfony.com/sponsor",
  7861. "type": "custom"
  7862. },
  7863. {
  7864. "url": "https://github.com/fabpot",
  7865. "type": "github"
  7866. },
  7867. {
  7868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7869. "type": "tidelift"
  7870. }
  7871. ],
  7872. "time": "2024-09-09T11:45:10+00:00"
  7873. },
  7874. {
  7875. "name": "symfony/polyfill-php80",
  7876. "version": "v1.31.0",
  7877. "source": {
  7878. "type": "git",
  7879. "url": "https://github.com/symfony/polyfill-php80.git",
  7880. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7881. },
  7882. "dist": {
  7883. "type": "zip",
  7884. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7885. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7886. "shasum": ""
  7887. },
  7888. "require": {
  7889. "php": ">=7.2"
  7890. },
  7891. "type": "library",
  7892. "extra": {
  7893. "thanks": {
  7894. "url": "https://github.com/symfony/polyfill",
  7895. "name": "symfony/polyfill"
  7896. }
  7897. },
  7898. "autoload": {
  7899. "files": [
  7900. "bootstrap.php"
  7901. ],
  7902. "psr-4": {
  7903. "Symfony\\Polyfill\\Php80\\": ""
  7904. },
  7905. "classmap": [
  7906. "Resources/stubs"
  7907. ]
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Ion Bazan",
  7916. "email": "ion.bazan@gmail.com"
  7917. },
  7918. {
  7919. "name": "Nicolas Grekas",
  7920. "email": "p@tchwork.com"
  7921. },
  7922. {
  7923. "name": "Symfony Community",
  7924. "homepage": "https://symfony.com/contributors"
  7925. }
  7926. ],
  7927. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7928. "homepage": "https://symfony.com",
  7929. "keywords": [
  7930. "compatibility",
  7931. "polyfill",
  7932. "portable",
  7933. "shim"
  7934. ],
  7935. "support": {
  7936. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7937. },
  7938. "funding": [
  7939. {
  7940. "url": "https://symfony.com/sponsor",
  7941. "type": "custom"
  7942. },
  7943. {
  7944. "url": "https://github.com/fabpot",
  7945. "type": "github"
  7946. },
  7947. {
  7948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7949. "type": "tidelift"
  7950. }
  7951. ],
  7952. "time": "2024-09-09T11:45:10+00:00"
  7953. },
  7954. {
  7955. "name": "symfony/service-contracts",
  7956. "version": "v3.5.1",
  7957. "source": {
  7958. "type": "git",
  7959. "url": "https://github.com/symfony/service-contracts.git",
  7960. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7961. },
  7962. "dist": {
  7963. "type": "zip",
  7964. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7965. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7966. "shasum": ""
  7967. },
  7968. "require": {
  7969. "php": ">=8.1",
  7970. "psr/container": "^1.1|^2.0",
  7971. "symfony/deprecation-contracts": "^2.5|^3"
  7972. },
  7973. "conflict": {
  7974. "ext-psr": "<1.1|>=2"
  7975. },
  7976. "type": "library",
  7977. "extra": {
  7978. "thanks": {
  7979. "url": "https://github.com/symfony/contracts",
  7980. "name": "symfony/contracts"
  7981. },
  7982. "branch-alias": {
  7983. "dev-main": "3.5-dev"
  7984. }
  7985. },
  7986. "autoload": {
  7987. "psr-4": {
  7988. "Symfony\\Contracts\\Service\\": ""
  7989. },
  7990. "exclude-from-classmap": [
  7991. "/Test/"
  7992. ]
  7993. },
  7994. "notification-url": "https://packagist.org/downloads/",
  7995. "license": [
  7996. "MIT"
  7997. ],
  7998. "authors": [
  7999. {
  8000. "name": "Nicolas Grekas",
  8001. "email": "p@tchwork.com"
  8002. },
  8003. {
  8004. "name": "Symfony Community",
  8005. "homepage": "https://symfony.com/contributors"
  8006. }
  8007. ],
  8008. "description": "Generic abstractions related to writing services",
  8009. "homepage": "https://symfony.com",
  8010. "keywords": [
  8011. "abstractions",
  8012. "contracts",
  8013. "decoupling",
  8014. "interfaces",
  8015. "interoperability",
  8016. "standards"
  8017. ],
  8018. "support": {
  8019. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://symfony.com/sponsor",
  8024. "type": "custom"
  8025. },
  8026. {
  8027. "url": "https://github.com/fabpot",
  8028. "type": "github"
  8029. },
  8030. {
  8031. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8032. "type": "tidelift"
  8033. }
  8034. ],
  8035. "time": "2024-09-25T14:20:29+00:00"
  8036. },
  8037. {
  8038. "name": "symfony/string",
  8039. "version": "v6.4.15",
  8040. "source": {
  8041. "type": "git",
  8042. "url": "https://github.com/symfony/string.git",
  8043. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  8044. },
  8045. "dist": {
  8046. "type": "zip",
  8047. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8048. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  8049. "shasum": ""
  8050. },
  8051. "require": {
  8052. "php": ">=8.1",
  8053. "symfony/polyfill-ctype": "~1.8",
  8054. "symfony/polyfill-intl-grapheme": "~1.0",
  8055. "symfony/polyfill-intl-normalizer": "~1.0",
  8056. "symfony/polyfill-mbstring": "~1.0"
  8057. },
  8058. "conflict": {
  8059. "symfony/translation-contracts": "<2.5"
  8060. },
  8061. "require-dev": {
  8062. "symfony/error-handler": "^5.4|^6.0|^7.0",
  8063. "symfony/http-client": "^5.4|^6.0|^7.0",
  8064. "symfony/intl": "^6.2|^7.0",
  8065. "symfony/translation-contracts": "^2.5|^3.0",
  8066. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  8067. },
  8068. "type": "library",
  8069. "autoload": {
  8070. "files": [
  8071. "Resources/functions.php"
  8072. ],
  8073. "psr-4": {
  8074. "Symfony\\Component\\String\\": ""
  8075. },
  8076. "exclude-from-classmap": [
  8077. "/Tests/"
  8078. ]
  8079. },
  8080. "notification-url": "https://packagist.org/downloads/",
  8081. "license": [
  8082. "MIT"
  8083. ],
  8084. "authors": [
  8085. {
  8086. "name": "Nicolas Grekas",
  8087. "email": "p@tchwork.com"
  8088. },
  8089. {
  8090. "name": "Symfony Community",
  8091. "homepage": "https://symfony.com/contributors"
  8092. }
  8093. ],
  8094. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8095. "homepage": "https://symfony.com",
  8096. "keywords": [
  8097. "grapheme",
  8098. "i18n",
  8099. "string",
  8100. "unicode",
  8101. "utf-8",
  8102. "utf8"
  8103. ],
  8104. "support": {
  8105. "source": "https://github.com/symfony/string/tree/v6.4.15"
  8106. },
  8107. "funding": [
  8108. {
  8109. "url": "https://symfony.com/sponsor",
  8110. "type": "custom"
  8111. },
  8112. {
  8113. "url": "https://github.com/fabpot",
  8114. "type": "github"
  8115. },
  8116. {
  8117. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8118. "type": "tidelift"
  8119. }
  8120. ],
  8121. "time": "2024-11-13T13:31:12+00:00"
  8122. },
  8123. {
  8124. "name": "symfony/translation",
  8125. "version": "v6.4.13",
  8126. "source": {
  8127. "type": "git",
  8128. "url": "https://github.com/symfony/translation.git",
  8129. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  8130. },
  8131. "dist": {
  8132. "type": "zip",
  8133. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8134. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  8135. "shasum": ""
  8136. },
  8137. "require": {
  8138. "php": ">=8.1",
  8139. "symfony/deprecation-contracts": "^2.5|^3",
  8140. "symfony/polyfill-mbstring": "~1.0",
  8141. "symfony/translation-contracts": "^2.5|^3.0"
  8142. },
  8143. "conflict": {
  8144. "symfony/config": "<5.4",
  8145. "symfony/console": "<5.4",
  8146. "symfony/dependency-injection": "<5.4",
  8147. "symfony/http-client-contracts": "<2.5",
  8148. "symfony/http-kernel": "<5.4",
  8149. "symfony/service-contracts": "<2.5",
  8150. "symfony/twig-bundle": "<5.4",
  8151. "symfony/yaml": "<5.4"
  8152. },
  8153. "provide": {
  8154. "symfony/translation-implementation": "2.3|3.0"
  8155. },
  8156. "require-dev": {
  8157. "nikic/php-parser": "^4.18|^5.0",
  8158. "psr/log": "^1|^2|^3",
  8159. "symfony/config": "^5.4|^6.0|^7.0",
  8160. "symfony/console": "^5.4|^6.0|^7.0",
  8161. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8162. "symfony/finder": "^5.4|^6.0|^7.0",
  8163. "symfony/http-client-contracts": "^2.5|^3.0",
  8164. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8165. "symfony/intl": "^5.4|^6.0|^7.0",
  8166. "symfony/polyfill-intl-icu": "^1.21",
  8167. "symfony/routing": "^5.4|^6.0|^7.0",
  8168. "symfony/service-contracts": "^2.5|^3",
  8169. "symfony/yaml": "^5.4|^6.0|^7.0"
  8170. },
  8171. "type": "library",
  8172. "autoload": {
  8173. "files": [
  8174. "Resources/functions.php"
  8175. ],
  8176. "psr-4": {
  8177. "Symfony\\Component\\Translation\\": ""
  8178. },
  8179. "exclude-from-classmap": [
  8180. "/Tests/"
  8181. ]
  8182. },
  8183. "notification-url": "https://packagist.org/downloads/",
  8184. "license": [
  8185. "MIT"
  8186. ],
  8187. "authors": [
  8188. {
  8189. "name": "Fabien Potencier",
  8190. "email": "fabien@symfony.com"
  8191. },
  8192. {
  8193. "name": "Symfony Community",
  8194. "homepage": "https://symfony.com/contributors"
  8195. }
  8196. ],
  8197. "description": "Provides tools to internationalize your application",
  8198. "homepage": "https://symfony.com",
  8199. "support": {
  8200. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  8201. },
  8202. "funding": [
  8203. {
  8204. "url": "https://symfony.com/sponsor",
  8205. "type": "custom"
  8206. },
  8207. {
  8208. "url": "https://github.com/fabpot",
  8209. "type": "github"
  8210. },
  8211. {
  8212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8213. "type": "tidelift"
  8214. }
  8215. ],
  8216. "time": "2024-09-27T18:14:25+00:00"
  8217. },
  8218. {
  8219. "name": "symfony/translation-contracts",
  8220. "version": "v3.5.1",
  8221. "source": {
  8222. "type": "git",
  8223. "url": "https://github.com/symfony/translation-contracts.git",
  8224. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8225. },
  8226. "dist": {
  8227. "type": "zip",
  8228. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8229. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8230. "shasum": ""
  8231. },
  8232. "require": {
  8233. "php": ">=8.1"
  8234. },
  8235. "type": "library",
  8236. "extra": {
  8237. "thanks": {
  8238. "url": "https://github.com/symfony/contracts",
  8239. "name": "symfony/contracts"
  8240. },
  8241. "branch-alias": {
  8242. "dev-main": "3.5-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "psr-4": {
  8247. "Symfony\\Contracts\\Translation\\": ""
  8248. },
  8249. "exclude-from-classmap": [
  8250. "/Test/"
  8251. ]
  8252. },
  8253. "notification-url": "https://packagist.org/downloads/",
  8254. "license": [
  8255. "MIT"
  8256. ],
  8257. "authors": [
  8258. {
  8259. "name": "Nicolas Grekas",
  8260. "email": "p@tchwork.com"
  8261. },
  8262. {
  8263. "name": "Symfony Community",
  8264. "homepage": "https://symfony.com/contributors"
  8265. }
  8266. ],
  8267. "description": "Generic abstractions related to translation",
  8268. "homepage": "https://symfony.com",
  8269. "keywords": [
  8270. "abstractions",
  8271. "contracts",
  8272. "decoupling",
  8273. "interfaces",
  8274. "interoperability",
  8275. "standards"
  8276. ],
  8277. "support": {
  8278. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://symfony.com/sponsor",
  8283. "type": "custom"
  8284. },
  8285. {
  8286. "url": "https://github.com/fabpot",
  8287. "type": "github"
  8288. },
  8289. {
  8290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8291. "type": "tidelift"
  8292. }
  8293. ],
  8294. "time": "2024-09-25T14:20:29+00:00"
  8295. },
  8296. {
  8297. "name": "vlucas/phpdotenv",
  8298. "version": "v5.6.1",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/vlucas/phpdotenv.git",
  8302. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8307. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8308. "shasum": ""
  8309. },
  8310. "require": {
  8311. "ext-pcre": "*",
  8312. "graham-campbell/result-type": "^1.1.3",
  8313. "php": "^7.2.5 || ^8.0",
  8314. "phpoption/phpoption": "^1.9.3",
  8315. "symfony/polyfill-ctype": "^1.24",
  8316. "symfony/polyfill-mbstring": "^1.24",
  8317. "symfony/polyfill-php80": "^1.24"
  8318. },
  8319. "require-dev": {
  8320. "bamarni/composer-bin-plugin": "^1.8.2",
  8321. "ext-filter": "*",
  8322. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8323. },
  8324. "suggest": {
  8325. "ext-filter": "Required to use the boolean validator."
  8326. },
  8327. "type": "library",
  8328. "extra": {
  8329. "bamarni-bin": {
  8330. "bin-links": true,
  8331. "forward-command": false
  8332. },
  8333. "branch-alias": {
  8334. "dev-master": "5.6-dev"
  8335. }
  8336. },
  8337. "autoload": {
  8338. "psr-4": {
  8339. "Dotenv\\": "src/"
  8340. }
  8341. },
  8342. "notification-url": "https://packagist.org/downloads/",
  8343. "license": [
  8344. "BSD-3-Clause"
  8345. ],
  8346. "authors": [
  8347. {
  8348. "name": "Graham Campbell",
  8349. "email": "hello@gjcampbell.co.uk",
  8350. "homepage": "https://github.com/GrahamCampbell"
  8351. },
  8352. {
  8353. "name": "Vance Lucas",
  8354. "email": "vance@vancelucas.com",
  8355. "homepage": "https://github.com/vlucas"
  8356. }
  8357. ],
  8358. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8359. "keywords": [
  8360. "dotenv",
  8361. "env",
  8362. "environment"
  8363. ],
  8364. "support": {
  8365. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8366. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8367. },
  8368. "funding": [
  8369. {
  8370. "url": "https://github.com/GrahamCampbell",
  8371. "type": "github"
  8372. },
  8373. {
  8374. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8375. "type": "tidelift"
  8376. }
  8377. ],
  8378. "time": "2024-07-20T21:52:34+00:00"
  8379. }
  8380. ],
  8381. "packages-dev": [
  8382. {
  8383. "name": "clue/ndjson-react",
  8384. "version": "v1.3.0",
  8385. "source": {
  8386. "type": "git",
  8387. "url": "https://github.com/clue/reactphp-ndjson.git",
  8388. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8389. },
  8390. "dist": {
  8391. "type": "zip",
  8392. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8393. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8394. "shasum": ""
  8395. },
  8396. "require": {
  8397. "php": ">=5.3",
  8398. "react/stream": "^1.2"
  8399. },
  8400. "require-dev": {
  8401. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8402. "react/event-loop": "^1.2"
  8403. },
  8404. "type": "library",
  8405. "autoload": {
  8406. "psr-4": {
  8407. "Clue\\React\\NDJson\\": "src/"
  8408. }
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Christian Lück",
  8417. "email": "christian@clue.engineering"
  8418. }
  8419. ],
  8420. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8421. "homepage": "https://github.com/clue/reactphp-ndjson",
  8422. "keywords": [
  8423. "NDJSON",
  8424. "json",
  8425. "jsonlines",
  8426. "newline",
  8427. "reactphp",
  8428. "streaming"
  8429. ],
  8430. "support": {
  8431. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8432. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8433. },
  8434. "funding": [
  8435. {
  8436. "url": "https://clue.engineering/support",
  8437. "type": "custom"
  8438. },
  8439. {
  8440. "url": "https://github.com/clue",
  8441. "type": "github"
  8442. }
  8443. ],
  8444. "time": "2022-12-23T10:58:28+00:00"
  8445. },
  8446. {
  8447. "name": "composer/pcre",
  8448. "version": "3.3.2",
  8449. "source": {
  8450. "type": "git",
  8451. "url": "https://github.com/composer/pcre.git",
  8452. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8453. },
  8454. "dist": {
  8455. "type": "zip",
  8456. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8457. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8458. "shasum": ""
  8459. },
  8460. "require": {
  8461. "php": "^7.4 || ^8.0"
  8462. },
  8463. "conflict": {
  8464. "phpstan/phpstan": "<1.11.10"
  8465. },
  8466. "require-dev": {
  8467. "phpstan/phpstan": "^1.12 || ^2",
  8468. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8469. "phpunit/phpunit": "^8 || ^9"
  8470. },
  8471. "type": "library",
  8472. "extra": {
  8473. "phpstan": {
  8474. "includes": [
  8475. "extension.neon"
  8476. ]
  8477. },
  8478. "branch-alias": {
  8479. "dev-main": "3.x-dev"
  8480. }
  8481. },
  8482. "autoload": {
  8483. "psr-4": {
  8484. "Composer\\Pcre\\": "src"
  8485. }
  8486. },
  8487. "notification-url": "https://packagist.org/downloads/",
  8488. "license": [
  8489. "MIT"
  8490. ],
  8491. "authors": [
  8492. {
  8493. "name": "Jordi Boggiano",
  8494. "email": "j.boggiano@seld.be",
  8495. "homepage": "http://seld.be"
  8496. }
  8497. ],
  8498. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8499. "keywords": [
  8500. "PCRE",
  8501. "preg",
  8502. "regex",
  8503. "regular expression"
  8504. ],
  8505. "support": {
  8506. "issues": "https://github.com/composer/pcre/issues",
  8507. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8508. },
  8509. "funding": [
  8510. {
  8511. "url": "https://packagist.com",
  8512. "type": "custom"
  8513. },
  8514. {
  8515. "url": "https://github.com/composer",
  8516. "type": "github"
  8517. },
  8518. {
  8519. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8520. "type": "tidelift"
  8521. }
  8522. ],
  8523. "time": "2024-11-12T16:29:46+00:00"
  8524. },
  8525. {
  8526. "name": "composer/semver",
  8527. "version": "3.4.3",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/composer/semver.git",
  8531. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8536. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8537. "shasum": ""
  8538. },
  8539. "require": {
  8540. "php": "^5.3.2 || ^7.0 || ^8.0"
  8541. },
  8542. "require-dev": {
  8543. "phpstan/phpstan": "^1.11",
  8544. "symfony/phpunit-bridge": "^3 || ^7"
  8545. },
  8546. "type": "library",
  8547. "extra": {
  8548. "branch-alias": {
  8549. "dev-main": "3.x-dev"
  8550. }
  8551. },
  8552. "autoload": {
  8553. "psr-4": {
  8554. "Composer\\Semver\\": "src"
  8555. }
  8556. },
  8557. "notification-url": "https://packagist.org/downloads/",
  8558. "license": [
  8559. "MIT"
  8560. ],
  8561. "authors": [
  8562. {
  8563. "name": "Nils Adermann",
  8564. "email": "naderman@naderman.de",
  8565. "homepage": "http://www.naderman.de"
  8566. },
  8567. {
  8568. "name": "Jordi Boggiano",
  8569. "email": "j.boggiano@seld.be",
  8570. "homepage": "http://seld.be"
  8571. },
  8572. {
  8573. "name": "Rob Bast",
  8574. "email": "rob.bast@gmail.com",
  8575. "homepage": "http://robbast.nl"
  8576. }
  8577. ],
  8578. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8579. "keywords": [
  8580. "semantic",
  8581. "semver",
  8582. "validation",
  8583. "versioning"
  8584. ],
  8585. "support": {
  8586. "irc": "ircs://irc.libera.chat:6697/composer",
  8587. "issues": "https://github.com/composer/semver/issues",
  8588. "source": "https://github.com/composer/semver/tree/3.4.3"
  8589. },
  8590. "funding": [
  8591. {
  8592. "url": "https://packagist.com",
  8593. "type": "custom"
  8594. },
  8595. {
  8596. "url": "https://github.com/composer",
  8597. "type": "github"
  8598. },
  8599. {
  8600. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8601. "type": "tidelift"
  8602. }
  8603. ],
  8604. "time": "2024-09-19T14:15:21+00:00"
  8605. },
  8606. {
  8607. "name": "composer/xdebug-handler",
  8608. "version": "3.0.5",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/composer/xdebug-handler.git",
  8612. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8617. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "composer/pcre": "^1 || ^2 || ^3",
  8622. "php": "^7.2.5 || ^8.0",
  8623. "psr/log": "^1 || ^2 || ^3"
  8624. },
  8625. "require-dev": {
  8626. "phpstan/phpstan": "^1.0",
  8627. "phpstan/phpstan-strict-rules": "^1.1",
  8628. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8629. },
  8630. "type": "library",
  8631. "autoload": {
  8632. "psr-4": {
  8633. "Composer\\XdebugHandler\\": "src"
  8634. }
  8635. },
  8636. "notification-url": "https://packagist.org/downloads/",
  8637. "license": [
  8638. "MIT"
  8639. ],
  8640. "authors": [
  8641. {
  8642. "name": "John Stevenson",
  8643. "email": "john-stevenson@blueyonder.co.uk"
  8644. }
  8645. ],
  8646. "description": "Restarts a process without Xdebug.",
  8647. "keywords": [
  8648. "Xdebug",
  8649. "performance"
  8650. ],
  8651. "support": {
  8652. "irc": "ircs://irc.libera.chat:6697/composer",
  8653. "issues": "https://github.com/composer/xdebug-handler/issues",
  8654. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8655. },
  8656. "funding": [
  8657. {
  8658. "url": "https://packagist.com",
  8659. "type": "custom"
  8660. },
  8661. {
  8662. "url": "https://github.com/composer",
  8663. "type": "github"
  8664. },
  8665. {
  8666. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8667. "type": "tidelift"
  8668. }
  8669. ],
  8670. "time": "2024-05-06T16:37:16+00:00"
  8671. },
  8672. {
  8673. "name": "evenement/evenement",
  8674. "version": "v3.0.2",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/igorw/evenement.git",
  8678. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8683. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8684. "shasum": ""
  8685. },
  8686. "require": {
  8687. "php": ">=7.0"
  8688. },
  8689. "require-dev": {
  8690. "phpunit/phpunit": "^9 || ^6"
  8691. },
  8692. "type": "library",
  8693. "autoload": {
  8694. "psr-4": {
  8695. "Evenement\\": "src/"
  8696. }
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "license": [
  8700. "MIT"
  8701. ],
  8702. "authors": [
  8703. {
  8704. "name": "Igor Wiedler",
  8705. "email": "igor@wiedler.ch"
  8706. }
  8707. ],
  8708. "description": "Événement is a very simple event dispatching library for PHP",
  8709. "keywords": [
  8710. "event-dispatcher",
  8711. "event-emitter"
  8712. ],
  8713. "support": {
  8714. "issues": "https://github.com/igorw/evenement/issues",
  8715. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8716. },
  8717. "time": "2023-08-08T05:53:35+00:00"
  8718. },
  8719. {
  8720. "name": "fidry/cpu-core-counter",
  8721. "version": "1.2.0",
  8722. "source": {
  8723. "type": "git",
  8724. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8725. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8726. },
  8727. "dist": {
  8728. "type": "zip",
  8729. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8730. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8731. "shasum": ""
  8732. },
  8733. "require": {
  8734. "php": "^7.2 || ^8.0"
  8735. },
  8736. "require-dev": {
  8737. "fidry/makefile": "^0.2.0",
  8738. "fidry/php-cs-fixer-config": "^1.1.2",
  8739. "phpstan/extension-installer": "^1.2.0",
  8740. "phpstan/phpstan": "^1.9.2",
  8741. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8742. "phpstan/phpstan-phpunit": "^1.2.2",
  8743. "phpstan/phpstan-strict-rules": "^1.4.4",
  8744. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8745. "webmozarts/strict-phpunit": "^7.5"
  8746. },
  8747. "type": "library",
  8748. "autoload": {
  8749. "psr-4": {
  8750. "Fidry\\CpuCoreCounter\\": "src/"
  8751. }
  8752. },
  8753. "notification-url": "https://packagist.org/downloads/",
  8754. "license": [
  8755. "MIT"
  8756. ],
  8757. "authors": [
  8758. {
  8759. "name": "Théo FIDRY",
  8760. "email": "theo.fidry@gmail.com"
  8761. }
  8762. ],
  8763. "description": "Tiny utility to get the number of CPU cores.",
  8764. "keywords": [
  8765. "CPU",
  8766. "core"
  8767. ],
  8768. "support": {
  8769. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8770. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8771. },
  8772. "funding": [
  8773. {
  8774. "url": "https://github.com/theofidry",
  8775. "type": "github"
  8776. }
  8777. ],
  8778. "time": "2024-08-06T10:04:20+00:00"
  8779. },
  8780. {
  8781. "name": "friendsofphp/php-cs-fixer",
  8782. "version": "v3.68.1",
  8783. "source": {
  8784. "type": "git",
  8785. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8786. "reference": "b9db2b2ea3cdba7201067acee46f984ef2397cff"
  8787. },
  8788. "dist": {
  8789. "type": "zip",
  8790. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/b9db2b2ea3cdba7201067acee46f984ef2397cff",
  8791. "reference": "b9db2b2ea3cdba7201067acee46f984ef2397cff",
  8792. "shasum": ""
  8793. },
  8794. "require": {
  8795. "clue/ndjson-react": "^1.0",
  8796. "composer/semver": "^3.4",
  8797. "composer/xdebug-handler": "^3.0.3",
  8798. "ext-filter": "*",
  8799. "ext-json": "*",
  8800. "ext-tokenizer": "*",
  8801. "fidry/cpu-core-counter": "^1.2",
  8802. "php": "^7.4 || ^8.0",
  8803. "react/child-process": "^0.6.5",
  8804. "react/event-loop": "^1.0",
  8805. "react/promise": "^2.0 || ^3.0",
  8806. "react/socket": "^1.0",
  8807. "react/stream": "^1.0",
  8808. "sebastian/diff": "^4.0 || ^5.1 || ^6.0",
  8809. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  8810. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  8811. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  8812. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  8813. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  8814. "symfony/polyfill-mbstring": "^1.31",
  8815. "symfony/polyfill-php80": "^1.31",
  8816. "symfony/polyfill-php81": "^1.31",
  8817. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  8818. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  8819. },
  8820. "require-dev": {
  8821. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8822. "infection/infection": "^0.29.8",
  8823. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8824. "keradus/cli-executor": "^2.1",
  8825. "mikey179/vfsstream": "^1.6.12",
  8826. "php-coveralls/php-coveralls": "^2.7",
  8827. "php-cs-fixer/accessible-object": "^1.1",
  8828. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8829. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8830. "phpunit/phpunit": "^9.6.22 || ^10.5.40 || ^11.5.2",
  8831. "symfony/var-dumper": "^5.4.48 || ^6.4.15 || ^7.2.0",
  8832. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.2.0"
  8833. },
  8834. "suggest": {
  8835. "ext-dom": "For handling output formats in XML",
  8836. "ext-mbstring": "For handling non-UTF8 characters."
  8837. },
  8838. "bin": [
  8839. "php-cs-fixer"
  8840. ],
  8841. "type": "application",
  8842. "autoload": {
  8843. "psr-4": {
  8844. "PhpCsFixer\\": "src/"
  8845. },
  8846. "exclude-from-classmap": [
  8847. "src/Fixer/Internal/*"
  8848. ]
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Fabien Potencier",
  8857. "email": "fabien@symfony.com"
  8858. },
  8859. {
  8860. "name": "Dariusz Rumiński",
  8861. "email": "dariusz.ruminski@gmail.com"
  8862. }
  8863. ],
  8864. "description": "A tool to automatically fix PHP code style",
  8865. "keywords": [
  8866. "Static code analysis",
  8867. "fixer",
  8868. "standards",
  8869. "static analysis"
  8870. ],
  8871. "support": {
  8872. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8873. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.68.1"
  8874. },
  8875. "funding": [
  8876. {
  8877. "url": "https://github.com/keradus",
  8878. "type": "github"
  8879. }
  8880. ],
  8881. "time": "2025-01-17T09:20:36+00:00"
  8882. },
  8883. {
  8884. "name": "hamcrest/hamcrest-php",
  8885. "version": "v2.0.1",
  8886. "source": {
  8887. "type": "git",
  8888. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8889. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8890. },
  8891. "dist": {
  8892. "type": "zip",
  8893. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8894. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8895. "shasum": ""
  8896. },
  8897. "require": {
  8898. "php": "^5.3|^7.0|^8.0"
  8899. },
  8900. "replace": {
  8901. "cordoval/hamcrest-php": "*",
  8902. "davedevelopment/hamcrest-php": "*",
  8903. "kodova/hamcrest-php": "*"
  8904. },
  8905. "require-dev": {
  8906. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8907. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8908. },
  8909. "type": "library",
  8910. "extra": {
  8911. "branch-alias": {
  8912. "dev-master": "2.1-dev"
  8913. }
  8914. },
  8915. "autoload": {
  8916. "classmap": [
  8917. "hamcrest"
  8918. ]
  8919. },
  8920. "notification-url": "https://packagist.org/downloads/",
  8921. "license": [
  8922. "BSD-3-Clause"
  8923. ],
  8924. "description": "This is the PHP port of Hamcrest Matchers",
  8925. "keywords": [
  8926. "test"
  8927. ],
  8928. "support": {
  8929. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8930. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8931. },
  8932. "time": "2020-07-09T08:09:16+00:00"
  8933. },
  8934. {
  8935. "name": "hyperf/devtool",
  8936. "version": "v3.1.42",
  8937. "source": {
  8938. "type": "git",
  8939. "url": "https://github.com/hyperf/devtool.git",
  8940. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8941. },
  8942. "dist": {
  8943. "type": "zip",
  8944. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8945. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8946. "shasum": ""
  8947. },
  8948. "require": {
  8949. "hyperf/code-parser": "~3.1.0",
  8950. "hyperf/command": "~3.1.0",
  8951. "hyperf/contract": "~3.1.0",
  8952. "hyperf/di": "~3.1.0",
  8953. "hyperf/support": "~3.1.0",
  8954. "hyperf/utils": "~3.1.0",
  8955. "php": ">=8.1"
  8956. },
  8957. "type": "library",
  8958. "extra": {
  8959. "hyperf": {
  8960. "config": "Hyperf\\Devtool\\ConfigProvider"
  8961. },
  8962. "branch-alias": {
  8963. "dev-master": "3.1-dev"
  8964. }
  8965. },
  8966. "autoload": {
  8967. "psr-4": {
  8968. "Hyperf\\Devtool\\": "src/"
  8969. }
  8970. },
  8971. "notification-url": "https://packagist.org/downloads/",
  8972. "license": [
  8973. "MIT"
  8974. ],
  8975. "description": "A Devtool for Hyperf.",
  8976. "homepage": "https://hyperf.io",
  8977. "keywords": [
  8978. "dev",
  8979. "devtool",
  8980. "hyperf",
  8981. "php",
  8982. "swoole"
  8983. ],
  8984. "support": {
  8985. "docs": "https://hyperf.wiki",
  8986. "issues": "https://github.com/hyperf/hyperf/issues",
  8987. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8988. "source": "https://github.com/hyperf/hyperf"
  8989. },
  8990. "funding": [
  8991. {
  8992. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8993. "type": "custom"
  8994. },
  8995. {
  8996. "url": "https://opencollective.com/hyperf",
  8997. "type": "open_collective"
  8998. }
  8999. ],
  9000. "time": "2024-09-25T02:54:12+00:00"
  9001. },
  9002. {
  9003. "name": "hyperf/testing",
  9004. "version": "v3.1.48",
  9005. "source": {
  9006. "type": "git",
  9007. "url": "https://github.com/hyperf/testing.git",
  9008. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  9009. },
  9010. "dist": {
  9011. "type": "zip",
  9012. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9013. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  9014. "shasum": ""
  9015. },
  9016. "require": {
  9017. "hyperf/codec": "~3.1.0",
  9018. "hyperf/collection": "~3.1.0",
  9019. "hyperf/contract": "~3.1.0",
  9020. "hyperf/coroutine": "~3.1.0",
  9021. "hyperf/http-message": "~3.1.0",
  9022. "hyperf/http-server": "~3.1.0",
  9023. "hyperf/support": "~3.1.0",
  9024. "hyperf/utils": "~3.1.0",
  9025. "php": ">=8.1",
  9026. "phpunit/phpunit": "^10.0",
  9027. "psr/container": "^1.0 || ^2.0",
  9028. "symfony/http-foundation": "^5.4 || ^6.0"
  9029. },
  9030. "suggest": {
  9031. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  9032. },
  9033. "bin": [
  9034. "co-phpunit"
  9035. ],
  9036. "type": "library",
  9037. "extra": {
  9038. "branch-alias": {
  9039. "dev-master": "3.1-dev"
  9040. }
  9041. },
  9042. "autoload": {
  9043. "psr-4": {
  9044. "Hyperf\\Testing\\": "src/"
  9045. }
  9046. },
  9047. "notification-url": "https://packagist.org/downloads/",
  9048. "license": [
  9049. "MIT"
  9050. ],
  9051. "description": "Testing for hyperf",
  9052. "keywords": [
  9053. "dev",
  9054. "php",
  9055. "swoole",
  9056. "testing"
  9057. ],
  9058. "support": {
  9059. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  9060. },
  9061. "funding": [
  9062. {
  9063. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9064. "type": "custom"
  9065. },
  9066. {
  9067. "url": "https://opencollective.com/hyperf",
  9068. "type": "open_collective"
  9069. }
  9070. ],
  9071. "time": "2024-12-12T02:12:29+00:00"
  9072. },
  9073. {
  9074. "name": "hyperf/watcher",
  9075. "version": "v3.1.43",
  9076. "source": {
  9077. "type": "git",
  9078. "url": "https://github.com/hyperf/watcher.git",
  9079. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  9080. },
  9081. "dist": {
  9082. "type": "zip",
  9083. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9084. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  9085. "shasum": ""
  9086. },
  9087. "require": {
  9088. "ext-posix": "*",
  9089. "hyperf/codec": "~3.1.0",
  9090. "hyperf/command": "~3.1.0",
  9091. "hyperf/di": "~3.1.0",
  9092. "hyperf/framework": "~3.1.0",
  9093. "hyperf/support": "~3.1.0",
  9094. "php": ">=8.1"
  9095. },
  9096. "type": "library",
  9097. "extra": {
  9098. "hyperf": {
  9099. "config": "Hyperf\\Watcher\\ConfigProvider"
  9100. },
  9101. "branch-alias": {
  9102. "dev-master": "3.1-dev"
  9103. }
  9104. },
  9105. "autoload": {
  9106. "files": [
  9107. "src/Functions.php"
  9108. ],
  9109. "psr-4": {
  9110. "Hyperf\\Watcher\\": "src/"
  9111. }
  9112. },
  9113. "notification-url": "https://packagist.org/downloads/",
  9114. "license": [
  9115. "MIT"
  9116. ],
  9117. "description": "Hot reload watcher for Hyperf",
  9118. "keywords": [
  9119. "dev",
  9120. "hyperf",
  9121. "php"
  9122. ],
  9123. "support": {
  9124. "issues": "https://github.com/hyperf/watcher/issues",
  9125. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  9126. },
  9127. "funding": [
  9128. {
  9129. "url": "https://hyperf.wiki/#/zh-cn/donate",
  9130. "type": "custom"
  9131. },
  9132. {
  9133. "url": "https://opencollective.com/hyperf",
  9134. "type": "open_collective"
  9135. }
  9136. ],
  9137. "time": "2024-10-06T12:33:12+00:00"
  9138. },
  9139. {
  9140. "name": "mockery/mockery",
  9141. "version": "1.6.12",
  9142. "source": {
  9143. "type": "git",
  9144. "url": "https://github.com/mockery/mockery.git",
  9145. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9146. },
  9147. "dist": {
  9148. "type": "zip",
  9149. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9150. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9151. "shasum": ""
  9152. },
  9153. "require": {
  9154. "hamcrest/hamcrest-php": "^2.0.1",
  9155. "lib-pcre": ">=7.0",
  9156. "php": ">=7.3"
  9157. },
  9158. "conflict": {
  9159. "phpunit/phpunit": "<8.0"
  9160. },
  9161. "require-dev": {
  9162. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9163. "symplify/easy-coding-standard": "^12.1.14"
  9164. },
  9165. "type": "library",
  9166. "autoload": {
  9167. "files": [
  9168. "library/helpers.php",
  9169. "library/Mockery.php"
  9170. ],
  9171. "psr-4": {
  9172. "Mockery\\": "library/Mockery"
  9173. }
  9174. },
  9175. "notification-url": "https://packagist.org/downloads/",
  9176. "license": [
  9177. "BSD-3-Clause"
  9178. ],
  9179. "authors": [
  9180. {
  9181. "name": "Pádraic Brady",
  9182. "email": "padraic.brady@gmail.com",
  9183. "homepage": "https://github.com/padraic",
  9184. "role": "Author"
  9185. },
  9186. {
  9187. "name": "Dave Marshall",
  9188. "email": "dave.marshall@atstsolutions.co.uk",
  9189. "homepage": "https://davedevelopment.co.uk",
  9190. "role": "Developer"
  9191. },
  9192. {
  9193. "name": "Nathanael Esayeas",
  9194. "email": "nathanael.esayeas@protonmail.com",
  9195. "homepage": "https://github.com/ghostwriter",
  9196. "role": "Lead Developer"
  9197. }
  9198. ],
  9199. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9200. "homepage": "https://github.com/mockery/mockery",
  9201. "keywords": [
  9202. "BDD",
  9203. "TDD",
  9204. "library",
  9205. "mock",
  9206. "mock objects",
  9207. "mockery",
  9208. "stub",
  9209. "test",
  9210. "test double",
  9211. "testing"
  9212. ],
  9213. "support": {
  9214. "docs": "https://docs.mockery.io/",
  9215. "issues": "https://github.com/mockery/mockery/issues",
  9216. "rss": "https://github.com/mockery/mockery/releases.atom",
  9217. "security": "https://github.com/mockery/mockery/security/advisories",
  9218. "source": "https://github.com/mockery/mockery"
  9219. },
  9220. "time": "2024-05-16T03:13:13+00:00"
  9221. },
  9222. {
  9223. "name": "myclabs/deep-copy",
  9224. "version": "1.12.1",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/myclabs/DeepCopy.git",
  9228. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9233. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": "^7.1 || ^8.0"
  9238. },
  9239. "conflict": {
  9240. "doctrine/collections": "<1.6.8",
  9241. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9242. },
  9243. "require-dev": {
  9244. "doctrine/collections": "^1.6.8",
  9245. "doctrine/common": "^2.13.3 || ^3.2.2",
  9246. "phpspec/prophecy": "^1.10",
  9247. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9248. },
  9249. "type": "library",
  9250. "autoload": {
  9251. "files": [
  9252. "src/DeepCopy/deep_copy.php"
  9253. ],
  9254. "psr-4": {
  9255. "DeepCopy\\": "src/DeepCopy/"
  9256. }
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "MIT"
  9261. ],
  9262. "description": "Create deep copies (clones) of your objects",
  9263. "keywords": [
  9264. "clone",
  9265. "copy",
  9266. "duplicate",
  9267. "object",
  9268. "object graph"
  9269. ],
  9270. "support": {
  9271. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9272. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9277. "type": "tidelift"
  9278. }
  9279. ],
  9280. "time": "2024-11-08T17:47:46+00:00"
  9281. },
  9282. {
  9283. "name": "phar-io/manifest",
  9284. "version": "2.0.4",
  9285. "source": {
  9286. "type": "git",
  9287. "url": "https://github.com/phar-io/manifest.git",
  9288. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9289. },
  9290. "dist": {
  9291. "type": "zip",
  9292. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9293. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9294. "shasum": ""
  9295. },
  9296. "require": {
  9297. "ext-dom": "*",
  9298. "ext-libxml": "*",
  9299. "ext-phar": "*",
  9300. "ext-xmlwriter": "*",
  9301. "phar-io/version": "^3.0.1",
  9302. "php": "^7.2 || ^8.0"
  9303. },
  9304. "type": "library",
  9305. "extra": {
  9306. "branch-alias": {
  9307. "dev-master": "2.0.x-dev"
  9308. }
  9309. },
  9310. "autoload": {
  9311. "classmap": [
  9312. "src/"
  9313. ]
  9314. },
  9315. "notification-url": "https://packagist.org/downloads/",
  9316. "license": [
  9317. "BSD-3-Clause"
  9318. ],
  9319. "authors": [
  9320. {
  9321. "name": "Arne Blankerts",
  9322. "email": "arne@blankerts.de",
  9323. "role": "Developer"
  9324. },
  9325. {
  9326. "name": "Sebastian Heuer",
  9327. "email": "sebastian@phpeople.de",
  9328. "role": "Developer"
  9329. },
  9330. {
  9331. "name": "Sebastian Bergmann",
  9332. "email": "sebastian@phpunit.de",
  9333. "role": "Developer"
  9334. }
  9335. ],
  9336. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9337. "support": {
  9338. "issues": "https://github.com/phar-io/manifest/issues",
  9339. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9340. },
  9341. "funding": [
  9342. {
  9343. "url": "https://github.com/theseer",
  9344. "type": "github"
  9345. }
  9346. ],
  9347. "time": "2024-03-03T12:33:53+00:00"
  9348. },
  9349. {
  9350. "name": "phar-io/version",
  9351. "version": "3.2.1",
  9352. "source": {
  9353. "type": "git",
  9354. "url": "https://github.com/phar-io/version.git",
  9355. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9356. },
  9357. "dist": {
  9358. "type": "zip",
  9359. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9360. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9361. "shasum": ""
  9362. },
  9363. "require": {
  9364. "php": "^7.2 || ^8.0"
  9365. },
  9366. "type": "library",
  9367. "autoload": {
  9368. "classmap": [
  9369. "src/"
  9370. ]
  9371. },
  9372. "notification-url": "https://packagist.org/downloads/",
  9373. "license": [
  9374. "BSD-3-Clause"
  9375. ],
  9376. "authors": [
  9377. {
  9378. "name": "Arne Blankerts",
  9379. "email": "arne@blankerts.de",
  9380. "role": "Developer"
  9381. },
  9382. {
  9383. "name": "Sebastian Heuer",
  9384. "email": "sebastian@phpeople.de",
  9385. "role": "Developer"
  9386. },
  9387. {
  9388. "name": "Sebastian Bergmann",
  9389. "email": "sebastian@phpunit.de",
  9390. "role": "Developer"
  9391. }
  9392. ],
  9393. "description": "Library for handling version information and constraints",
  9394. "support": {
  9395. "issues": "https://github.com/phar-io/version/issues",
  9396. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9397. },
  9398. "time": "2022-02-21T01:04:05+00:00"
  9399. },
  9400. {
  9401. "name": "phpstan/phpstan",
  9402. "version": "1.12.15",
  9403. "source": {
  9404. "type": "git",
  9405. "url": "https://github.com/phpstan/phpstan.git",
  9406. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1"
  9407. },
  9408. "dist": {
  9409. "type": "zip",
  9410. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/c91d4e8bc056f46cf653656e6f71004b254574d1",
  9411. "reference": "c91d4e8bc056f46cf653656e6f71004b254574d1",
  9412. "shasum": ""
  9413. },
  9414. "require": {
  9415. "php": "^7.2|^8.0"
  9416. },
  9417. "conflict": {
  9418. "phpstan/phpstan-shim": "*"
  9419. },
  9420. "bin": [
  9421. "phpstan",
  9422. "phpstan.phar"
  9423. ],
  9424. "type": "library",
  9425. "autoload": {
  9426. "files": [
  9427. "bootstrap.php"
  9428. ]
  9429. },
  9430. "notification-url": "https://packagist.org/downloads/",
  9431. "license": [
  9432. "MIT"
  9433. ],
  9434. "description": "PHPStan - PHP Static Analysis Tool",
  9435. "keywords": [
  9436. "dev",
  9437. "static analysis"
  9438. ],
  9439. "support": {
  9440. "docs": "https://phpstan.org/user-guide/getting-started",
  9441. "forum": "https://github.com/phpstan/phpstan/discussions",
  9442. "issues": "https://github.com/phpstan/phpstan/issues",
  9443. "security": "https://github.com/phpstan/phpstan/security/policy",
  9444. "source": "https://github.com/phpstan/phpstan-src"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://github.com/ondrejmirtes",
  9449. "type": "github"
  9450. },
  9451. {
  9452. "url": "https://github.com/phpstan",
  9453. "type": "github"
  9454. }
  9455. ],
  9456. "time": "2025-01-05T16:40:22+00:00"
  9457. },
  9458. {
  9459. "name": "phpunit/php-code-coverage",
  9460. "version": "10.1.16",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9464. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9469. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9470. "shasum": ""
  9471. },
  9472. "require": {
  9473. "ext-dom": "*",
  9474. "ext-libxml": "*",
  9475. "ext-xmlwriter": "*",
  9476. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9477. "php": ">=8.1",
  9478. "phpunit/php-file-iterator": "^4.1.0",
  9479. "phpunit/php-text-template": "^3.0.1",
  9480. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9481. "sebastian/complexity": "^3.2.0",
  9482. "sebastian/environment": "^6.1.0",
  9483. "sebastian/lines-of-code": "^2.0.2",
  9484. "sebastian/version": "^4.0.1",
  9485. "theseer/tokenizer": "^1.2.3"
  9486. },
  9487. "require-dev": {
  9488. "phpunit/phpunit": "^10.1"
  9489. },
  9490. "suggest": {
  9491. "ext-pcov": "PHP extension that provides line coverage",
  9492. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9493. },
  9494. "type": "library",
  9495. "extra": {
  9496. "branch-alias": {
  9497. "dev-main": "10.1.x-dev"
  9498. }
  9499. },
  9500. "autoload": {
  9501. "classmap": [
  9502. "src/"
  9503. ]
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "BSD-3-Clause"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Sebastian Bergmann",
  9512. "email": "sebastian@phpunit.de",
  9513. "role": "lead"
  9514. }
  9515. ],
  9516. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9517. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9518. "keywords": [
  9519. "coverage",
  9520. "testing",
  9521. "xunit"
  9522. ],
  9523. "support": {
  9524. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9525. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9526. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9527. },
  9528. "funding": [
  9529. {
  9530. "url": "https://github.com/sebastianbergmann",
  9531. "type": "github"
  9532. }
  9533. ],
  9534. "time": "2024-08-22T04:31:57+00:00"
  9535. },
  9536. {
  9537. "name": "phpunit/php-file-iterator",
  9538. "version": "4.1.0",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9542. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9547. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "php": ">=8.1"
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "^10.0"
  9555. },
  9556. "type": "library",
  9557. "extra": {
  9558. "branch-alias": {
  9559. "dev-main": "4.0-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "classmap": [
  9564. "src/"
  9565. ]
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "BSD-3-Clause"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Sebastian Bergmann",
  9574. "email": "sebastian@phpunit.de",
  9575. "role": "lead"
  9576. }
  9577. ],
  9578. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9579. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9580. "keywords": [
  9581. "filesystem",
  9582. "iterator"
  9583. ],
  9584. "support": {
  9585. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9586. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9587. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9588. },
  9589. "funding": [
  9590. {
  9591. "url": "https://github.com/sebastianbergmann",
  9592. "type": "github"
  9593. }
  9594. ],
  9595. "time": "2023-08-31T06:24:48+00:00"
  9596. },
  9597. {
  9598. "name": "phpunit/php-invoker",
  9599. "version": "4.0.0",
  9600. "source": {
  9601. "type": "git",
  9602. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9603. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9604. },
  9605. "dist": {
  9606. "type": "zip",
  9607. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9608. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9609. "shasum": ""
  9610. },
  9611. "require": {
  9612. "php": ">=8.1"
  9613. },
  9614. "require-dev": {
  9615. "ext-pcntl": "*",
  9616. "phpunit/phpunit": "^10.0"
  9617. },
  9618. "suggest": {
  9619. "ext-pcntl": "*"
  9620. },
  9621. "type": "library",
  9622. "extra": {
  9623. "branch-alias": {
  9624. "dev-main": "4.0-dev"
  9625. }
  9626. },
  9627. "autoload": {
  9628. "classmap": [
  9629. "src/"
  9630. ]
  9631. },
  9632. "notification-url": "https://packagist.org/downloads/",
  9633. "license": [
  9634. "BSD-3-Clause"
  9635. ],
  9636. "authors": [
  9637. {
  9638. "name": "Sebastian Bergmann",
  9639. "email": "sebastian@phpunit.de",
  9640. "role": "lead"
  9641. }
  9642. ],
  9643. "description": "Invoke callables with a timeout",
  9644. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9645. "keywords": [
  9646. "process"
  9647. ],
  9648. "support": {
  9649. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9650. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9651. },
  9652. "funding": [
  9653. {
  9654. "url": "https://github.com/sebastianbergmann",
  9655. "type": "github"
  9656. }
  9657. ],
  9658. "time": "2023-02-03T06:56:09+00:00"
  9659. },
  9660. {
  9661. "name": "phpunit/php-text-template",
  9662. "version": "3.0.1",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9666. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9671. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9672. "shasum": ""
  9673. },
  9674. "require": {
  9675. "php": ">=8.1"
  9676. },
  9677. "require-dev": {
  9678. "phpunit/phpunit": "^10.0"
  9679. },
  9680. "type": "library",
  9681. "extra": {
  9682. "branch-alias": {
  9683. "dev-main": "3.0-dev"
  9684. }
  9685. },
  9686. "autoload": {
  9687. "classmap": [
  9688. "src/"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "BSD-3-Clause"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Sebastian Bergmann",
  9698. "email": "sebastian@phpunit.de",
  9699. "role": "lead"
  9700. }
  9701. ],
  9702. "description": "Simple template engine.",
  9703. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9704. "keywords": [
  9705. "template"
  9706. ],
  9707. "support": {
  9708. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9709. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9710. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9711. },
  9712. "funding": [
  9713. {
  9714. "url": "https://github.com/sebastianbergmann",
  9715. "type": "github"
  9716. }
  9717. ],
  9718. "time": "2023-08-31T14:07:24+00:00"
  9719. },
  9720. {
  9721. "name": "phpunit/php-timer",
  9722. "version": "6.0.0",
  9723. "source": {
  9724. "type": "git",
  9725. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9726. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9727. },
  9728. "dist": {
  9729. "type": "zip",
  9730. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9731. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9732. "shasum": ""
  9733. },
  9734. "require": {
  9735. "php": ">=8.1"
  9736. },
  9737. "require-dev": {
  9738. "phpunit/phpunit": "^10.0"
  9739. },
  9740. "type": "library",
  9741. "extra": {
  9742. "branch-alias": {
  9743. "dev-main": "6.0-dev"
  9744. }
  9745. },
  9746. "autoload": {
  9747. "classmap": [
  9748. "src/"
  9749. ]
  9750. },
  9751. "notification-url": "https://packagist.org/downloads/",
  9752. "license": [
  9753. "BSD-3-Clause"
  9754. ],
  9755. "authors": [
  9756. {
  9757. "name": "Sebastian Bergmann",
  9758. "email": "sebastian@phpunit.de",
  9759. "role": "lead"
  9760. }
  9761. ],
  9762. "description": "Utility class for timing",
  9763. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9764. "keywords": [
  9765. "timer"
  9766. ],
  9767. "support": {
  9768. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9769. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9770. },
  9771. "funding": [
  9772. {
  9773. "url": "https://github.com/sebastianbergmann",
  9774. "type": "github"
  9775. }
  9776. ],
  9777. "time": "2023-02-03T06:57:52+00:00"
  9778. },
  9779. {
  9780. "name": "phpunit/phpunit",
  9781. "version": "10.5.41",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9785. "reference": "e76586fa3d49714f230221734b44892e384109d7"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e76586fa3d49714f230221734b44892e384109d7",
  9790. "reference": "e76586fa3d49714f230221734b44892e384109d7",
  9791. "shasum": ""
  9792. },
  9793. "require": {
  9794. "ext-dom": "*",
  9795. "ext-json": "*",
  9796. "ext-libxml": "*",
  9797. "ext-mbstring": "*",
  9798. "ext-xml": "*",
  9799. "ext-xmlwriter": "*",
  9800. "myclabs/deep-copy": "^1.12.0",
  9801. "phar-io/manifest": "^2.0.4",
  9802. "phar-io/version": "^3.2.1",
  9803. "php": ">=8.1",
  9804. "phpunit/php-code-coverage": "^10.1.16",
  9805. "phpunit/php-file-iterator": "^4.1.0",
  9806. "phpunit/php-invoker": "^4.0.0",
  9807. "phpunit/php-text-template": "^3.0.1",
  9808. "phpunit/php-timer": "^6.0.0",
  9809. "sebastian/cli-parser": "^2.0.1",
  9810. "sebastian/code-unit": "^2.0.0",
  9811. "sebastian/comparator": "^5.0.3",
  9812. "sebastian/diff": "^5.1.1",
  9813. "sebastian/environment": "^6.1.0",
  9814. "sebastian/exporter": "^5.1.2",
  9815. "sebastian/global-state": "^6.0.2",
  9816. "sebastian/object-enumerator": "^5.0.0",
  9817. "sebastian/recursion-context": "^5.0.0",
  9818. "sebastian/type": "^4.0.0",
  9819. "sebastian/version": "^4.0.1"
  9820. },
  9821. "suggest": {
  9822. "ext-soap": "To be able to generate mocks based on WSDL files"
  9823. },
  9824. "bin": [
  9825. "phpunit"
  9826. ],
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-main": "10.5-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "files": [
  9835. "src/Framework/Assert/Functions.php"
  9836. ],
  9837. "classmap": [
  9838. "src/"
  9839. ]
  9840. },
  9841. "notification-url": "https://packagist.org/downloads/",
  9842. "license": [
  9843. "BSD-3-Clause"
  9844. ],
  9845. "authors": [
  9846. {
  9847. "name": "Sebastian Bergmann",
  9848. "email": "sebastian@phpunit.de",
  9849. "role": "lead"
  9850. }
  9851. ],
  9852. "description": "The PHP Unit Testing framework.",
  9853. "homepage": "https://phpunit.de/",
  9854. "keywords": [
  9855. "phpunit",
  9856. "testing",
  9857. "xunit"
  9858. ],
  9859. "support": {
  9860. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9861. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9862. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.41"
  9863. },
  9864. "funding": [
  9865. {
  9866. "url": "https://phpunit.de/sponsors.html",
  9867. "type": "custom"
  9868. },
  9869. {
  9870. "url": "https://github.com/sebastianbergmann",
  9871. "type": "github"
  9872. },
  9873. {
  9874. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9875. "type": "tidelift"
  9876. }
  9877. ],
  9878. "time": "2025-01-13T09:33:05+00:00"
  9879. },
  9880. {
  9881. "name": "react/cache",
  9882. "version": "v1.2.0",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/reactphp/cache.git",
  9886. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9891. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9892. "shasum": ""
  9893. },
  9894. "require": {
  9895. "php": ">=5.3.0",
  9896. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9897. },
  9898. "require-dev": {
  9899. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9900. },
  9901. "type": "library",
  9902. "autoload": {
  9903. "psr-4": {
  9904. "React\\Cache\\": "src/"
  9905. }
  9906. },
  9907. "notification-url": "https://packagist.org/downloads/",
  9908. "license": [
  9909. "MIT"
  9910. ],
  9911. "authors": [
  9912. {
  9913. "name": "Christian Lück",
  9914. "email": "christian@clue.engineering",
  9915. "homepage": "https://clue.engineering/"
  9916. },
  9917. {
  9918. "name": "Cees-Jan Kiewiet",
  9919. "email": "reactphp@ceesjankiewiet.nl",
  9920. "homepage": "https://wyrihaximus.net/"
  9921. },
  9922. {
  9923. "name": "Jan Sorgalla",
  9924. "email": "jsorgalla@gmail.com",
  9925. "homepage": "https://sorgalla.com/"
  9926. },
  9927. {
  9928. "name": "Chris Boden",
  9929. "email": "cboden@gmail.com",
  9930. "homepage": "https://cboden.dev/"
  9931. }
  9932. ],
  9933. "description": "Async, Promise-based cache interface for ReactPHP",
  9934. "keywords": [
  9935. "cache",
  9936. "caching",
  9937. "promise",
  9938. "reactphp"
  9939. ],
  9940. "support": {
  9941. "issues": "https://github.com/reactphp/cache/issues",
  9942. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9943. },
  9944. "funding": [
  9945. {
  9946. "url": "https://opencollective.com/reactphp",
  9947. "type": "open_collective"
  9948. }
  9949. ],
  9950. "time": "2022-11-30T15:59:55+00:00"
  9951. },
  9952. {
  9953. "name": "react/child-process",
  9954. "version": "v0.6.6",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/reactphp/child-process.git",
  9958. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9963. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  9964. "shasum": ""
  9965. },
  9966. "require": {
  9967. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9968. "php": ">=5.3.0",
  9969. "react/event-loop": "^1.2",
  9970. "react/stream": "^1.4"
  9971. },
  9972. "require-dev": {
  9973. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9974. "react/socket": "^1.16",
  9975. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9976. },
  9977. "type": "library",
  9978. "autoload": {
  9979. "psr-4": {
  9980. "React\\ChildProcess\\": "src/"
  9981. }
  9982. },
  9983. "notification-url": "https://packagist.org/downloads/",
  9984. "license": [
  9985. "MIT"
  9986. ],
  9987. "authors": [
  9988. {
  9989. "name": "Christian Lück",
  9990. "email": "christian@clue.engineering",
  9991. "homepage": "https://clue.engineering/"
  9992. },
  9993. {
  9994. "name": "Cees-Jan Kiewiet",
  9995. "email": "reactphp@ceesjankiewiet.nl",
  9996. "homepage": "https://wyrihaximus.net/"
  9997. },
  9998. {
  9999. "name": "Jan Sorgalla",
  10000. "email": "jsorgalla@gmail.com",
  10001. "homepage": "https://sorgalla.com/"
  10002. },
  10003. {
  10004. "name": "Chris Boden",
  10005. "email": "cboden@gmail.com",
  10006. "homepage": "https://cboden.dev/"
  10007. }
  10008. ],
  10009. "description": "Event-driven library for executing child processes with ReactPHP.",
  10010. "keywords": [
  10011. "event-driven",
  10012. "process",
  10013. "reactphp"
  10014. ],
  10015. "support": {
  10016. "issues": "https://github.com/reactphp/child-process/issues",
  10017. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  10018. },
  10019. "funding": [
  10020. {
  10021. "url": "https://opencollective.com/reactphp",
  10022. "type": "open_collective"
  10023. }
  10024. ],
  10025. "time": "2025-01-01T16:37:48+00:00"
  10026. },
  10027. {
  10028. "name": "react/dns",
  10029. "version": "v1.13.0",
  10030. "source": {
  10031. "type": "git",
  10032. "url": "https://github.com/reactphp/dns.git",
  10033. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  10034. },
  10035. "dist": {
  10036. "type": "zip",
  10037. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10038. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  10039. "shasum": ""
  10040. },
  10041. "require": {
  10042. "php": ">=5.3.0",
  10043. "react/cache": "^1.0 || ^0.6 || ^0.5",
  10044. "react/event-loop": "^1.2",
  10045. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  10046. },
  10047. "require-dev": {
  10048. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10049. "react/async": "^4.3 || ^3 || ^2",
  10050. "react/promise-timer": "^1.11"
  10051. },
  10052. "type": "library",
  10053. "autoload": {
  10054. "psr-4": {
  10055. "React\\Dns\\": "src/"
  10056. }
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "MIT"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Christian Lück",
  10065. "email": "christian@clue.engineering",
  10066. "homepage": "https://clue.engineering/"
  10067. },
  10068. {
  10069. "name": "Cees-Jan Kiewiet",
  10070. "email": "reactphp@ceesjankiewiet.nl",
  10071. "homepage": "https://wyrihaximus.net/"
  10072. },
  10073. {
  10074. "name": "Jan Sorgalla",
  10075. "email": "jsorgalla@gmail.com",
  10076. "homepage": "https://sorgalla.com/"
  10077. },
  10078. {
  10079. "name": "Chris Boden",
  10080. "email": "cboden@gmail.com",
  10081. "homepage": "https://cboden.dev/"
  10082. }
  10083. ],
  10084. "description": "Async DNS resolver for ReactPHP",
  10085. "keywords": [
  10086. "async",
  10087. "dns",
  10088. "dns-resolver",
  10089. "reactphp"
  10090. ],
  10091. "support": {
  10092. "issues": "https://github.com/reactphp/dns/issues",
  10093. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  10094. },
  10095. "funding": [
  10096. {
  10097. "url": "https://opencollective.com/reactphp",
  10098. "type": "open_collective"
  10099. }
  10100. ],
  10101. "time": "2024-06-13T14:18:03+00:00"
  10102. },
  10103. {
  10104. "name": "react/event-loop",
  10105. "version": "v1.5.0",
  10106. "source": {
  10107. "type": "git",
  10108. "url": "https://github.com/reactphp/event-loop.git",
  10109. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  10110. },
  10111. "dist": {
  10112. "type": "zip",
  10113. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10114. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  10115. "shasum": ""
  10116. },
  10117. "require": {
  10118. "php": ">=5.3.0"
  10119. },
  10120. "require-dev": {
  10121. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10122. },
  10123. "suggest": {
  10124. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  10125. },
  10126. "type": "library",
  10127. "autoload": {
  10128. "psr-4": {
  10129. "React\\EventLoop\\": "src/"
  10130. }
  10131. },
  10132. "notification-url": "https://packagist.org/downloads/",
  10133. "license": [
  10134. "MIT"
  10135. ],
  10136. "authors": [
  10137. {
  10138. "name": "Christian Lück",
  10139. "email": "christian@clue.engineering",
  10140. "homepage": "https://clue.engineering/"
  10141. },
  10142. {
  10143. "name": "Cees-Jan Kiewiet",
  10144. "email": "reactphp@ceesjankiewiet.nl",
  10145. "homepage": "https://wyrihaximus.net/"
  10146. },
  10147. {
  10148. "name": "Jan Sorgalla",
  10149. "email": "jsorgalla@gmail.com",
  10150. "homepage": "https://sorgalla.com/"
  10151. },
  10152. {
  10153. "name": "Chris Boden",
  10154. "email": "cboden@gmail.com",
  10155. "homepage": "https://cboden.dev/"
  10156. }
  10157. ],
  10158. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  10159. "keywords": [
  10160. "asynchronous",
  10161. "event-loop"
  10162. ],
  10163. "support": {
  10164. "issues": "https://github.com/reactphp/event-loop/issues",
  10165. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  10166. },
  10167. "funding": [
  10168. {
  10169. "url": "https://opencollective.com/reactphp",
  10170. "type": "open_collective"
  10171. }
  10172. ],
  10173. "time": "2023-11-13T13:48:05+00:00"
  10174. },
  10175. {
  10176. "name": "react/promise",
  10177. "version": "v3.2.0",
  10178. "source": {
  10179. "type": "git",
  10180. "url": "https://github.com/reactphp/promise.git",
  10181. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  10182. },
  10183. "dist": {
  10184. "type": "zip",
  10185. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  10186. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  10187. "shasum": ""
  10188. },
  10189. "require": {
  10190. "php": ">=7.1.0"
  10191. },
  10192. "require-dev": {
  10193. "phpstan/phpstan": "1.10.39 || 1.4.10",
  10194. "phpunit/phpunit": "^9.6 || ^7.5"
  10195. },
  10196. "type": "library",
  10197. "autoload": {
  10198. "files": [
  10199. "src/functions_include.php"
  10200. ],
  10201. "psr-4": {
  10202. "React\\Promise\\": "src/"
  10203. }
  10204. },
  10205. "notification-url": "https://packagist.org/downloads/",
  10206. "license": [
  10207. "MIT"
  10208. ],
  10209. "authors": [
  10210. {
  10211. "name": "Jan Sorgalla",
  10212. "email": "jsorgalla@gmail.com",
  10213. "homepage": "https://sorgalla.com/"
  10214. },
  10215. {
  10216. "name": "Christian Lück",
  10217. "email": "christian@clue.engineering",
  10218. "homepage": "https://clue.engineering/"
  10219. },
  10220. {
  10221. "name": "Cees-Jan Kiewiet",
  10222. "email": "reactphp@ceesjankiewiet.nl",
  10223. "homepage": "https://wyrihaximus.net/"
  10224. },
  10225. {
  10226. "name": "Chris Boden",
  10227. "email": "cboden@gmail.com",
  10228. "homepage": "https://cboden.dev/"
  10229. }
  10230. ],
  10231. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  10232. "keywords": [
  10233. "promise",
  10234. "promises"
  10235. ],
  10236. "support": {
  10237. "issues": "https://github.com/reactphp/promise/issues",
  10238. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  10239. },
  10240. "funding": [
  10241. {
  10242. "url": "https://opencollective.com/reactphp",
  10243. "type": "open_collective"
  10244. }
  10245. ],
  10246. "time": "2024-05-24T10:39:05+00:00"
  10247. },
  10248. {
  10249. "name": "react/socket",
  10250. "version": "v1.16.0",
  10251. "source": {
  10252. "type": "git",
  10253. "url": "https://github.com/reactphp/socket.git",
  10254. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  10255. },
  10256. "dist": {
  10257. "type": "zip",
  10258. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10259. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  10260. "shasum": ""
  10261. },
  10262. "require": {
  10263. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10264. "php": ">=5.3.0",
  10265. "react/dns": "^1.13",
  10266. "react/event-loop": "^1.2",
  10267. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  10268. "react/stream": "^1.4"
  10269. },
  10270. "require-dev": {
  10271. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10272. "react/async": "^4.3 || ^3.3 || ^2",
  10273. "react/promise-stream": "^1.4",
  10274. "react/promise-timer": "^1.11"
  10275. },
  10276. "type": "library",
  10277. "autoload": {
  10278. "psr-4": {
  10279. "React\\Socket\\": "src/"
  10280. }
  10281. },
  10282. "notification-url": "https://packagist.org/downloads/",
  10283. "license": [
  10284. "MIT"
  10285. ],
  10286. "authors": [
  10287. {
  10288. "name": "Christian Lück",
  10289. "email": "christian@clue.engineering",
  10290. "homepage": "https://clue.engineering/"
  10291. },
  10292. {
  10293. "name": "Cees-Jan Kiewiet",
  10294. "email": "reactphp@ceesjankiewiet.nl",
  10295. "homepage": "https://wyrihaximus.net/"
  10296. },
  10297. {
  10298. "name": "Jan Sorgalla",
  10299. "email": "jsorgalla@gmail.com",
  10300. "homepage": "https://sorgalla.com/"
  10301. },
  10302. {
  10303. "name": "Chris Boden",
  10304. "email": "cboden@gmail.com",
  10305. "homepage": "https://cboden.dev/"
  10306. }
  10307. ],
  10308. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10309. "keywords": [
  10310. "Connection",
  10311. "Socket",
  10312. "async",
  10313. "reactphp",
  10314. "stream"
  10315. ],
  10316. "support": {
  10317. "issues": "https://github.com/reactphp/socket/issues",
  10318. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10319. },
  10320. "funding": [
  10321. {
  10322. "url": "https://opencollective.com/reactphp",
  10323. "type": "open_collective"
  10324. }
  10325. ],
  10326. "time": "2024-07-26T10:38:09+00:00"
  10327. },
  10328. {
  10329. "name": "react/stream",
  10330. "version": "v1.4.0",
  10331. "source": {
  10332. "type": "git",
  10333. "url": "https://github.com/reactphp/stream.git",
  10334. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10335. },
  10336. "dist": {
  10337. "type": "zip",
  10338. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10339. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10340. "shasum": ""
  10341. },
  10342. "require": {
  10343. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10344. "php": ">=5.3.8",
  10345. "react/event-loop": "^1.2"
  10346. },
  10347. "require-dev": {
  10348. "clue/stream-filter": "~1.2",
  10349. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10350. },
  10351. "type": "library",
  10352. "autoload": {
  10353. "psr-4": {
  10354. "React\\Stream\\": "src/"
  10355. }
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "MIT"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Christian Lück",
  10364. "email": "christian@clue.engineering",
  10365. "homepage": "https://clue.engineering/"
  10366. },
  10367. {
  10368. "name": "Cees-Jan Kiewiet",
  10369. "email": "reactphp@ceesjankiewiet.nl",
  10370. "homepage": "https://wyrihaximus.net/"
  10371. },
  10372. {
  10373. "name": "Jan Sorgalla",
  10374. "email": "jsorgalla@gmail.com",
  10375. "homepage": "https://sorgalla.com/"
  10376. },
  10377. {
  10378. "name": "Chris Boden",
  10379. "email": "cboden@gmail.com",
  10380. "homepage": "https://cboden.dev/"
  10381. }
  10382. ],
  10383. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10384. "keywords": [
  10385. "event-driven",
  10386. "io",
  10387. "non-blocking",
  10388. "pipe",
  10389. "reactphp",
  10390. "readable",
  10391. "stream",
  10392. "writable"
  10393. ],
  10394. "support": {
  10395. "issues": "https://github.com/reactphp/stream/issues",
  10396. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10397. },
  10398. "funding": [
  10399. {
  10400. "url": "https://opencollective.com/reactphp",
  10401. "type": "open_collective"
  10402. }
  10403. ],
  10404. "time": "2024-06-11T12:45:25+00:00"
  10405. },
  10406. {
  10407. "name": "sebastian/cli-parser",
  10408. "version": "2.0.1",
  10409. "source": {
  10410. "type": "git",
  10411. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10412. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10413. },
  10414. "dist": {
  10415. "type": "zip",
  10416. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10417. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10418. "shasum": ""
  10419. },
  10420. "require": {
  10421. "php": ">=8.1"
  10422. },
  10423. "require-dev": {
  10424. "phpunit/phpunit": "^10.0"
  10425. },
  10426. "type": "library",
  10427. "extra": {
  10428. "branch-alias": {
  10429. "dev-main": "2.0-dev"
  10430. }
  10431. },
  10432. "autoload": {
  10433. "classmap": [
  10434. "src/"
  10435. ]
  10436. },
  10437. "notification-url": "https://packagist.org/downloads/",
  10438. "license": [
  10439. "BSD-3-Clause"
  10440. ],
  10441. "authors": [
  10442. {
  10443. "name": "Sebastian Bergmann",
  10444. "email": "sebastian@phpunit.de",
  10445. "role": "lead"
  10446. }
  10447. ],
  10448. "description": "Library for parsing CLI options",
  10449. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10450. "support": {
  10451. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10452. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10453. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10454. },
  10455. "funding": [
  10456. {
  10457. "url": "https://github.com/sebastianbergmann",
  10458. "type": "github"
  10459. }
  10460. ],
  10461. "time": "2024-03-02T07:12:49+00:00"
  10462. },
  10463. {
  10464. "name": "sebastian/code-unit",
  10465. "version": "2.0.0",
  10466. "source": {
  10467. "type": "git",
  10468. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10469. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10470. },
  10471. "dist": {
  10472. "type": "zip",
  10473. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10474. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10475. "shasum": ""
  10476. },
  10477. "require": {
  10478. "php": ">=8.1"
  10479. },
  10480. "require-dev": {
  10481. "phpunit/phpunit": "^10.0"
  10482. },
  10483. "type": "library",
  10484. "extra": {
  10485. "branch-alias": {
  10486. "dev-main": "2.0-dev"
  10487. }
  10488. },
  10489. "autoload": {
  10490. "classmap": [
  10491. "src/"
  10492. ]
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "BSD-3-Clause"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Sebastian Bergmann",
  10501. "email": "sebastian@phpunit.de",
  10502. "role": "lead"
  10503. }
  10504. ],
  10505. "description": "Collection of value objects that represent the PHP code units",
  10506. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10507. "support": {
  10508. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10509. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10510. },
  10511. "funding": [
  10512. {
  10513. "url": "https://github.com/sebastianbergmann",
  10514. "type": "github"
  10515. }
  10516. ],
  10517. "time": "2023-02-03T06:58:43+00:00"
  10518. },
  10519. {
  10520. "name": "sebastian/code-unit-reverse-lookup",
  10521. "version": "3.0.0",
  10522. "source": {
  10523. "type": "git",
  10524. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10525. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10526. },
  10527. "dist": {
  10528. "type": "zip",
  10529. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10530. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10531. "shasum": ""
  10532. },
  10533. "require": {
  10534. "php": ">=8.1"
  10535. },
  10536. "require-dev": {
  10537. "phpunit/phpunit": "^10.0"
  10538. },
  10539. "type": "library",
  10540. "extra": {
  10541. "branch-alias": {
  10542. "dev-main": "3.0-dev"
  10543. }
  10544. },
  10545. "autoload": {
  10546. "classmap": [
  10547. "src/"
  10548. ]
  10549. },
  10550. "notification-url": "https://packagist.org/downloads/",
  10551. "license": [
  10552. "BSD-3-Clause"
  10553. ],
  10554. "authors": [
  10555. {
  10556. "name": "Sebastian Bergmann",
  10557. "email": "sebastian@phpunit.de"
  10558. }
  10559. ],
  10560. "description": "Looks up which function or method a line of code belongs to",
  10561. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10562. "support": {
  10563. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10564. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10565. },
  10566. "funding": [
  10567. {
  10568. "url": "https://github.com/sebastianbergmann",
  10569. "type": "github"
  10570. }
  10571. ],
  10572. "time": "2023-02-03T06:59:15+00:00"
  10573. },
  10574. {
  10575. "name": "sebastian/comparator",
  10576. "version": "5.0.3",
  10577. "source": {
  10578. "type": "git",
  10579. "url": "https://github.com/sebastianbergmann/comparator.git",
  10580. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10581. },
  10582. "dist": {
  10583. "type": "zip",
  10584. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10585. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10586. "shasum": ""
  10587. },
  10588. "require": {
  10589. "ext-dom": "*",
  10590. "ext-mbstring": "*",
  10591. "php": ">=8.1",
  10592. "sebastian/diff": "^5.0",
  10593. "sebastian/exporter": "^5.0"
  10594. },
  10595. "require-dev": {
  10596. "phpunit/phpunit": "^10.5"
  10597. },
  10598. "type": "library",
  10599. "extra": {
  10600. "branch-alias": {
  10601. "dev-main": "5.0-dev"
  10602. }
  10603. },
  10604. "autoload": {
  10605. "classmap": [
  10606. "src/"
  10607. ]
  10608. },
  10609. "notification-url": "https://packagist.org/downloads/",
  10610. "license": [
  10611. "BSD-3-Clause"
  10612. ],
  10613. "authors": [
  10614. {
  10615. "name": "Sebastian Bergmann",
  10616. "email": "sebastian@phpunit.de"
  10617. },
  10618. {
  10619. "name": "Jeff Welch",
  10620. "email": "whatthejeff@gmail.com"
  10621. },
  10622. {
  10623. "name": "Volker Dusch",
  10624. "email": "github@wallbash.com"
  10625. },
  10626. {
  10627. "name": "Bernhard Schussek",
  10628. "email": "bschussek@2bepublished.at"
  10629. }
  10630. ],
  10631. "description": "Provides the functionality to compare PHP values for equality",
  10632. "homepage": "https://github.com/sebastianbergmann/comparator",
  10633. "keywords": [
  10634. "comparator",
  10635. "compare",
  10636. "equality"
  10637. ],
  10638. "support": {
  10639. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10640. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10641. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10642. },
  10643. "funding": [
  10644. {
  10645. "url": "https://github.com/sebastianbergmann",
  10646. "type": "github"
  10647. }
  10648. ],
  10649. "time": "2024-10-18T14:56:07+00:00"
  10650. },
  10651. {
  10652. "name": "sebastian/complexity",
  10653. "version": "3.2.0",
  10654. "source": {
  10655. "type": "git",
  10656. "url": "https://github.com/sebastianbergmann/complexity.git",
  10657. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10658. },
  10659. "dist": {
  10660. "type": "zip",
  10661. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10662. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10663. "shasum": ""
  10664. },
  10665. "require": {
  10666. "nikic/php-parser": "^4.18 || ^5.0",
  10667. "php": ">=8.1"
  10668. },
  10669. "require-dev": {
  10670. "phpunit/phpunit": "^10.0"
  10671. },
  10672. "type": "library",
  10673. "extra": {
  10674. "branch-alias": {
  10675. "dev-main": "3.2-dev"
  10676. }
  10677. },
  10678. "autoload": {
  10679. "classmap": [
  10680. "src/"
  10681. ]
  10682. },
  10683. "notification-url": "https://packagist.org/downloads/",
  10684. "license": [
  10685. "BSD-3-Clause"
  10686. ],
  10687. "authors": [
  10688. {
  10689. "name": "Sebastian Bergmann",
  10690. "email": "sebastian@phpunit.de",
  10691. "role": "lead"
  10692. }
  10693. ],
  10694. "description": "Library for calculating the complexity of PHP code units",
  10695. "homepage": "https://github.com/sebastianbergmann/complexity",
  10696. "support": {
  10697. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10698. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10699. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10700. },
  10701. "funding": [
  10702. {
  10703. "url": "https://github.com/sebastianbergmann",
  10704. "type": "github"
  10705. }
  10706. ],
  10707. "time": "2023-12-21T08:37:17+00:00"
  10708. },
  10709. {
  10710. "name": "sebastian/diff",
  10711. "version": "5.1.1",
  10712. "source": {
  10713. "type": "git",
  10714. "url": "https://github.com/sebastianbergmann/diff.git",
  10715. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10716. },
  10717. "dist": {
  10718. "type": "zip",
  10719. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10720. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10721. "shasum": ""
  10722. },
  10723. "require": {
  10724. "php": ">=8.1"
  10725. },
  10726. "require-dev": {
  10727. "phpunit/phpunit": "^10.0",
  10728. "symfony/process": "^6.4"
  10729. },
  10730. "type": "library",
  10731. "extra": {
  10732. "branch-alias": {
  10733. "dev-main": "5.1-dev"
  10734. }
  10735. },
  10736. "autoload": {
  10737. "classmap": [
  10738. "src/"
  10739. ]
  10740. },
  10741. "notification-url": "https://packagist.org/downloads/",
  10742. "license": [
  10743. "BSD-3-Clause"
  10744. ],
  10745. "authors": [
  10746. {
  10747. "name": "Sebastian Bergmann",
  10748. "email": "sebastian@phpunit.de"
  10749. },
  10750. {
  10751. "name": "Kore Nordmann",
  10752. "email": "mail@kore-nordmann.de"
  10753. }
  10754. ],
  10755. "description": "Diff implementation",
  10756. "homepage": "https://github.com/sebastianbergmann/diff",
  10757. "keywords": [
  10758. "diff",
  10759. "udiff",
  10760. "unidiff",
  10761. "unified diff"
  10762. ],
  10763. "support": {
  10764. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10765. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10766. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10767. },
  10768. "funding": [
  10769. {
  10770. "url": "https://github.com/sebastianbergmann",
  10771. "type": "github"
  10772. }
  10773. ],
  10774. "time": "2024-03-02T07:15:17+00:00"
  10775. },
  10776. {
  10777. "name": "sebastian/environment",
  10778. "version": "6.1.0",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/sebastianbergmann/environment.git",
  10782. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10787. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "php": ">=8.1"
  10792. },
  10793. "require-dev": {
  10794. "phpunit/phpunit": "^10.0"
  10795. },
  10796. "suggest": {
  10797. "ext-posix": "*"
  10798. },
  10799. "type": "library",
  10800. "extra": {
  10801. "branch-alias": {
  10802. "dev-main": "6.1-dev"
  10803. }
  10804. },
  10805. "autoload": {
  10806. "classmap": [
  10807. "src/"
  10808. ]
  10809. },
  10810. "notification-url": "https://packagist.org/downloads/",
  10811. "license": [
  10812. "BSD-3-Clause"
  10813. ],
  10814. "authors": [
  10815. {
  10816. "name": "Sebastian Bergmann",
  10817. "email": "sebastian@phpunit.de"
  10818. }
  10819. ],
  10820. "description": "Provides functionality to handle HHVM/PHP environments",
  10821. "homepage": "https://github.com/sebastianbergmann/environment",
  10822. "keywords": [
  10823. "Xdebug",
  10824. "environment",
  10825. "hhvm"
  10826. ],
  10827. "support": {
  10828. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10829. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10830. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10831. },
  10832. "funding": [
  10833. {
  10834. "url": "https://github.com/sebastianbergmann",
  10835. "type": "github"
  10836. }
  10837. ],
  10838. "time": "2024-03-23T08:47:14+00:00"
  10839. },
  10840. {
  10841. "name": "sebastian/exporter",
  10842. "version": "5.1.2",
  10843. "source": {
  10844. "type": "git",
  10845. "url": "https://github.com/sebastianbergmann/exporter.git",
  10846. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10847. },
  10848. "dist": {
  10849. "type": "zip",
  10850. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10851. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10852. "shasum": ""
  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. },
  10932. "require": {
  10933. "php": ">=8.1",
  10934. "sebastian/object-reflector": "^3.0",
  10935. "sebastian/recursion-context": "^5.0"
  10936. },
  10937. "require-dev": {
  10938. "ext-dom": "*",
  10939. "phpunit/phpunit": "^10.0"
  10940. },
  10941. "type": "library",
  10942. "extra": {
  10943. "branch-alias": {
  10944. "dev-main": "6.0-dev"
  10945. }
  10946. },
  10947. "autoload": {
  10948. "classmap": [
  10949. "src/"
  10950. ]
  10951. },
  10952. "notification-url": "https://packagist.org/downloads/",
  10953. "license": [
  10954. "BSD-3-Clause"
  10955. ],
  10956. "authors": [
  10957. {
  10958. "name": "Sebastian Bergmann",
  10959. "email": "sebastian@phpunit.de"
  10960. }
  10961. ],
  10962. "description": "Snapshotting of global state",
  10963. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10964. "keywords": [
  10965. "global state"
  10966. ],
  10967. "support": {
  10968. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10969. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10970. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10971. },
  10972. "funding": [
  10973. {
  10974. "url": "https://github.com/sebastianbergmann",
  10975. "type": "github"
  10976. }
  10977. ],
  10978. "time": "2024-03-02T07:19:19+00:00"
  10979. },
  10980. {
  10981. "name": "sebastian/lines-of-code",
  10982. "version": "2.0.2",
  10983. "source": {
  10984. "type": "git",
  10985. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10986. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10987. },
  10988. "dist": {
  10989. "type": "zip",
  10990. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10991. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10992. "shasum": ""
  10993. },
  10994. "require": {
  10995. "nikic/php-parser": "^4.18 || ^5.0",
  10996. "php": ">=8.1"
  10997. },
  10998. "require-dev": {
  10999. "phpunit/phpunit": "^10.0"
  11000. },
  11001. "type": "library",
  11002. "extra": {
  11003. "branch-alias": {
  11004. "dev-main": "2.0-dev"
  11005. }
  11006. },
  11007. "autoload": {
  11008. "classmap": [
  11009. "src/"
  11010. ]
  11011. },
  11012. "notification-url": "https://packagist.org/downloads/",
  11013. "license": [
  11014. "BSD-3-Clause"
  11015. ],
  11016. "authors": [
  11017. {
  11018. "name": "Sebastian Bergmann",
  11019. "email": "sebastian@phpunit.de",
  11020. "role": "lead"
  11021. }
  11022. ],
  11023. "description": "Library for counting the lines of code in PHP source code",
  11024. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11025. "support": {
  11026. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11027. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11028. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11029. },
  11030. "funding": [
  11031. {
  11032. "url": "https://github.com/sebastianbergmann",
  11033. "type": "github"
  11034. }
  11035. ],
  11036. "time": "2023-12-21T08:38:20+00:00"
  11037. },
  11038. {
  11039. "name": "sebastian/object-enumerator",
  11040. "version": "5.0.0",
  11041. "source": {
  11042. "type": "git",
  11043. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11044. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11045. },
  11046. "dist": {
  11047. "type": "zip",
  11048. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11049. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11050. "shasum": ""
  11051. },
  11052. "require": {
  11053. "php": ">=8.1",
  11054. "sebastian/object-reflector": "^3.0",
  11055. "sebastian/recursion-context": "^5.0"
  11056. },
  11057. "require-dev": {
  11058. "phpunit/phpunit": "^10.0"
  11059. },
  11060. "type": "library",
  11061. "extra": {
  11062. "branch-alias": {
  11063. "dev-main": "5.0-dev"
  11064. }
  11065. },
  11066. "autoload": {
  11067. "classmap": [
  11068. "src/"
  11069. ]
  11070. },
  11071. "notification-url": "https://packagist.org/downloads/",
  11072. "license": [
  11073. "BSD-3-Clause"
  11074. ],
  11075. "authors": [
  11076. {
  11077. "name": "Sebastian Bergmann",
  11078. "email": "sebastian@phpunit.de"
  11079. }
  11080. ],
  11081. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11082. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11083. "support": {
  11084. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11085. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11086. },
  11087. "funding": [
  11088. {
  11089. "url": "https://github.com/sebastianbergmann",
  11090. "type": "github"
  11091. }
  11092. ],
  11093. "time": "2023-02-03T07:08:32+00:00"
  11094. },
  11095. {
  11096. "name": "sebastian/object-reflector",
  11097. "version": "3.0.0",
  11098. "source": {
  11099. "type": "git",
  11100. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11101. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11102. },
  11103. "dist": {
  11104. "type": "zip",
  11105. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11106. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11107. "shasum": ""
  11108. },
  11109. "require": {
  11110. "php": ">=8.1"
  11111. },
  11112. "require-dev": {
  11113. "phpunit/phpunit": "^10.0"
  11114. },
  11115. "type": "library",
  11116. "extra": {
  11117. "branch-alias": {
  11118. "dev-main": "3.0-dev"
  11119. }
  11120. },
  11121. "autoload": {
  11122. "classmap": [
  11123. "src/"
  11124. ]
  11125. },
  11126. "notification-url": "https://packagist.org/downloads/",
  11127. "license": [
  11128. "BSD-3-Clause"
  11129. ],
  11130. "authors": [
  11131. {
  11132. "name": "Sebastian Bergmann",
  11133. "email": "sebastian@phpunit.de"
  11134. }
  11135. ],
  11136. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11137. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11138. "support": {
  11139. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11140. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11141. },
  11142. "funding": [
  11143. {
  11144. "url": "https://github.com/sebastianbergmann",
  11145. "type": "github"
  11146. }
  11147. ],
  11148. "time": "2023-02-03T07:06:18+00:00"
  11149. },
  11150. {
  11151. "name": "sebastian/recursion-context",
  11152. "version": "5.0.0",
  11153. "source": {
  11154. "type": "git",
  11155. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11156. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11157. },
  11158. "dist": {
  11159. "type": "zip",
  11160. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11161. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11162. "shasum": ""
  11163. },
  11164. "require": {
  11165. "php": ">=8.1"
  11166. },
  11167. "require-dev": {
  11168. "phpunit/phpunit": "^10.0"
  11169. },
  11170. "type": "library",
  11171. "extra": {
  11172. "branch-alias": {
  11173. "dev-main": "5.0-dev"
  11174. }
  11175. },
  11176. "autoload": {
  11177. "classmap": [
  11178. "src/"
  11179. ]
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "BSD-3-Clause"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Sebastian Bergmann",
  11188. "email": "sebastian@phpunit.de"
  11189. },
  11190. {
  11191. "name": "Jeff Welch",
  11192. "email": "whatthejeff@gmail.com"
  11193. },
  11194. {
  11195. "name": "Adam Harvey",
  11196. "email": "aharvey@php.net"
  11197. }
  11198. ],
  11199. "description": "Provides functionality to recursively process PHP variables",
  11200. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11201. "support": {
  11202. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11203. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11204. },
  11205. "funding": [
  11206. {
  11207. "url": "https://github.com/sebastianbergmann",
  11208. "type": "github"
  11209. }
  11210. ],
  11211. "time": "2023-02-03T07:05:40+00:00"
  11212. },
  11213. {
  11214. "name": "sebastian/type",
  11215. "version": "4.0.0",
  11216. "source": {
  11217. "type": "git",
  11218. "url": "https://github.com/sebastianbergmann/type.git",
  11219. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11220. },
  11221. "dist": {
  11222. "type": "zip",
  11223. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11224. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11225. "shasum": ""
  11226. },
  11227. "require": {
  11228. "php": ">=8.1"
  11229. },
  11230. "require-dev": {
  11231. "phpunit/phpunit": "^10.0"
  11232. },
  11233. "type": "library",
  11234. "extra": {
  11235. "branch-alias": {
  11236. "dev-main": "4.0-dev"
  11237. }
  11238. },
  11239. "autoload": {
  11240. "classmap": [
  11241. "src/"
  11242. ]
  11243. },
  11244. "notification-url": "https://packagist.org/downloads/",
  11245. "license": [
  11246. "BSD-3-Clause"
  11247. ],
  11248. "authors": [
  11249. {
  11250. "name": "Sebastian Bergmann",
  11251. "email": "sebastian@phpunit.de",
  11252. "role": "lead"
  11253. }
  11254. ],
  11255. "description": "Collection of value objects that represent the types of the PHP type system",
  11256. "homepage": "https://github.com/sebastianbergmann/type",
  11257. "support": {
  11258. "issues": "https://github.com/sebastianbergmann/type/issues",
  11259. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11260. },
  11261. "funding": [
  11262. {
  11263. "url": "https://github.com/sebastianbergmann",
  11264. "type": "github"
  11265. }
  11266. ],
  11267. "time": "2023-02-03T07:10:45+00:00"
  11268. },
  11269. {
  11270. "name": "sebastian/version",
  11271. "version": "4.0.1",
  11272. "source": {
  11273. "type": "git",
  11274. "url": "https://github.com/sebastianbergmann/version.git",
  11275. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11276. },
  11277. "dist": {
  11278. "type": "zip",
  11279. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11280. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11281. "shasum": ""
  11282. },
  11283. "require": {
  11284. "php": ">=8.1"
  11285. },
  11286. "type": "library",
  11287. "extra": {
  11288. "branch-alias": {
  11289. "dev-main": "4.0-dev"
  11290. }
  11291. },
  11292. "autoload": {
  11293. "classmap": [
  11294. "src/"
  11295. ]
  11296. },
  11297. "notification-url": "https://packagist.org/downloads/",
  11298. "license": [
  11299. "BSD-3-Clause"
  11300. ],
  11301. "authors": [
  11302. {
  11303. "name": "Sebastian Bergmann",
  11304. "email": "sebastian@phpunit.de",
  11305. "role": "lead"
  11306. }
  11307. ],
  11308. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11309. "homepage": "https://github.com/sebastianbergmann/version",
  11310. "support": {
  11311. "issues": "https://github.com/sebastianbergmann/version/issues",
  11312. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11313. },
  11314. "funding": [
  11315. {
  11316. "url": "https://github.com/sebastianbergmann",
  11317. "type": "github"
  11318. }
  11319. ],
  11320. "time": "2023-02-07T11:34:05+00:00"
  11321. },
  11322. {
  11323. "name": "swoole/ide-helper",
  11324. "version": "5.1.6",
  11325. "source": {
  11326. "type": "git",
  11327. "url": "https://github.com/swoole/ide-helper.git",
  11328. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  11329. },
  11330. "dist": {
  11331. "type": "zip",
  11332. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11333. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  11334. "shasum": ""
  11335. },
  11336. "type": "library",
  11337. "notification-url": "https://packagist.org/downloads/",
  11338. "license": [
  11339. "Apache-2.0"
  11340. ],
  11341. "authors": [
  11342. {
  11343. "name": "Team Swoole",
  11344. "email": "team@swoole.com"
  11345. }
  11346. ],
  11347. "description": "IDE help files for Swoole.",
  11348. "support": {
  11349. "issues": "https://github.com/swoole/ide-helper/issues",
  11350. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  11351. },
  11352. "time": "2024-11-29T07:21:36+00:00"
  11353. },
  11354. {
  11355. "name": "symfony/event-dispatcher",
  11356. "version": "v6.4.13",
  11357. "source": {
  11358. "type": "git",
  11359. "url": "https://github.com/symfony/event-dispatcher.git",
  11360. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11361. },
  11362. "dist": {
  11363. "type": "zip",
  11364. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11365. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11366. "shasum": ""
  11367. },
  11368. "require": {
  11369. "php": ">=8.1",
  11370. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11371. },
  11372. "conflict": {
  11373. "symfony/dependency-injection": "<5.4",
  11374. "symfony/service-contracts": "<2.5"
  11375. },
  11376. "provide": {
  11377. "psr/event-dispatcher-implementation": "1.0",
  11378. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11379. },
  11380. "require-dev": {
  11381. "psr/log": "^1|^2|^3",
  11382. "symfony/config": "^5.4|^6.0|^7.0",
  11383. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11384. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11385. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11386. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11387. "symfony/service-contracts": "^2.5|^3",
  11388. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11389. },
  11390. "type": "library",
  11391. "autoload": {
  11392. "psr-4": {
  11393. "Symfony\\Component\\EventDispatcher\\": ""
  11394. },
  11395. "exclude-from-classmap": [
  11396. "/Tests/"
  11397. ]
  11398. },
  11399. "notification-url": "https://packagist.org/downloads/",
  11400. "license": [
  11401. "MIT"
  11402. ],
  11403. "authors": [
  11404. {
  11405. "name": "Fabien Potencier",
  11406. "email": "fabien@symfony.com"
  11407. },
  11408. {
  11409. "name": "Symfony Community",
  11410. "homepage": "https://symfony.com/contributors"
  11411. }
  11412. ],
  11413. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11414. "homepage": "https://symfony.com",
  11415. "support": {
  11416. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11417. },
  11418. "funding": [
  11419. {
  11420. "url": "https://symfony.com/sponsor",
  11421. "type": "custom"
  11422. },
  11423. {
  11424. "url": "https://github.com/fabpot",
  11425. "type": "github"
  11426. },
  11427. {
  11428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11429. "type": "tidelift"
  11430. }
  11431. ],
  11432. "time": "2024-09-25T14:18:03+00:00"
  11433. },
  11434. {
  11435. "name": "symfony/event-dispatcher-contracts",
  11436. "version": "v3.5.1",
  11437. "source": {
  11438. "type": "git",
  11439. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11440. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11441. },
  11442. "dist": {
  11443. "type": "zip",
  11444. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11445. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11446. "shasum": ""
  11447. },
  11448. "require": {
  11449. "php": ">=8.1",
  11450. "psr/event-dispatcher": "^1"
  11451. },
  11452. "type": "library",
  11453. "extra": {
  11454. "thanks": {
  11455. "url": "https://github.com/symfony/contracts",
  11456. "name": "symfony/contracts"
  11457. },
  11458. "branch-alias": {
  11459. "dev-main": "3.5-dev"
  11460. }
  11461. },
  11462. "autoload": {
  11463. "psr-4": {
  11464. "Symfony\\Contracts\\EventDispatcher\\": ""
  11465. }
  11466. },
  11467. "notification-url": "https://packagist.org/downloads/",
  11468. "license": [
  11469. "MIT"
  11470. ],
  11471. "authors": [
  11472. {
  11473. "name": "Nicolas Grekas",
  11474. "email": "p@tchwork.com"
  11475. },
  11476. {
  11477. "name": "Symfony Community",
  11478. "homepage": "https://symfony.com/contributors"
  11479. }
  11480. ],
  11481. "description": "Generic abstractions related to dispatching event",
  11482. "homepage": "https://symfony.com",
  11483. "keywords": [
  11484. "abstractions",
  11485. "contracts",
  11486. "decoupling",
  11487. "interfaces",
  11488. "interoperability",
  11489. "standards"
  11490. ],
  11491. "support": {
  11492. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11493. },
  11494. "funding": [
  11495. {
  11496. "url": "https://symfony.com/sponsor",
  11497. "type": "custom"
  11498. },
  11499. {
  11500. "url": "https://github.com/fabpot",
  11501. "type": "github"
  11502. },
  11503. {
  11504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11505. "type": "tidelift"
  11506. }
  11507. ],
  11508. "time": "2024-09-25T14:20:29+00:00"
  11509. },
  11510. {
  11511. "name": "symfony/filesystem",
  11512. "version": "v6.4.13",
  11513. "source": {
  11514. "type": "git",
  11515. "url": "https://github.com/symfony/filesystem.git",
  11516. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11517. },
  11518. "dist": {
  11519. "type": "zip",
  11520. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11521. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11522. "shasum": ""
  11523. },
  11524. "require": {
  11525. "php": ">=8.1",
  11526. "symfony/polyfill-ctype": "~1.8",
  11527. "symfony/polyfill-mbstring": "~1.8"
  11528. },
  11529. "require-dev": {
  11530. "symfony/process": "^5.4|^6.4|^7.0"
  11531. },
  11532. "type": "library",
  11533. "autoload": {
  11534. "psr-4": {
  11535. "Symfony\\Component\\Filesystem\\": ""
  11536. },
  11537. "exclude-from-classmap": [
  11538. "/Tests/"
  11539. ]
  11540. },
  11541. "notification-url": "https://packagist.org/downloads/",
  11542. "license": [
  11543. "MIT"
  11544. ],
  11545. "authors": [
  11546. {
  11547. "name": "Fabien Potencier",
  11548. "email": "fabien@symfony.com"
  11549. },
  11550. {
  11551. "name": "Symfony Community",
  11552. "homepage": "https://symfony.com/contributors"
  11553. }
  11554. ],
  11555. "description": "Provides basic utilities for the filesystem",
  11556. "homepage": "https://symfony.com",
  11557. "support": {
  11558. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11559. },
  11560. "funding": [
  11561. {
  11562. "url": "https://symfony.com/sponsor",
  11563. "type": "custom"
  11564. },
  11565. {
  11566. "url": "https://github.com/fabpot",
  11567. "type": "github"
  11568. },
  11569. {
  11570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11571. "type": "tidelift"
  11572. }
  11573. ],
  11574. "time": "2024-10-25T15:07:50+00:00"
  11575. },
  11576. {
  11577. "name": "symfony/http-foundation",
  11578. "version": "v6.4.16",
  11579. "source": {
  11580. "type": "git",
  11581. "url": "https://github.com/symfony/http-foundation.git",
  11582. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11583. },
  11584. "dist": {
  11585. "type": "zip",
  11586. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11587. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11588. "shasum": ""
  11589. },
  11590. "require": {
  11591. "php": ">=8.1",
  11592. "symfony/deprecation-contracts": "^2.5|^3",
  11593. "symfony/polyfill-mbstring": "~1.1",
  11594. "symfony/polyfill-php83": "^1.27"
  11595. },
  11596. "conflict": {
  11597. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11598. },
  11599. "require-dev": {
  11600. "doctrine/dbal": "^2.13.1|^3|^4",
  11601. "predis/predis": "^1.1|^2.0",
  11602. "symfony/cache": "^6.4.12|^7.1.5",
  11603. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11604. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11605. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11606. "symfony/mime": "^5.4|^6.0|^7.0",
  11607. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11608. },
  11609. "type": "library",
  11610. "autoload": {
  11611. "psr-4": {
  11612. "Symfony\\Component\\HttpFoundation\\": ""
  11613. },
  11614. "exclude-from-classmap": [
  11615. "/Tests/"
  11616. ]
  11617. },
  11618. "notification-url": "https://packagist.org/downloads/",
  11619. "license": [
  11620. "MIT"
  11621. ],
  11622. "authors": [
  11623. {
  11624. "name": "Fabien Potencier",
  11625. "email": "fabien@symfony.com"
  11626. },
  11627. {
  11628. "name": "Symfony Community",
  11629. "homepage": "https://symfony.com/contributors"
  11630. }
  11631. ],
  11632. "description": "Defines an object-oriented layer for the HTTP specification",
  11633. "homepage": "https://symfony.com",
  11634. "support": {
  11635. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11636. },
  11637. "funding": [
  11638. {
  11639. "url": "https://symfony.com/sponsor",
  11640. "type": "custom"
  11641. },
  11642. {
  11643. "url": "https://github.com/fabpot",
  11644. "type": "github"
  11645. },
  11646. {
  11647. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11648. "type": "tidelift"
  11649. }
  11650. ],
  11651. "time": "2024-11-13T18:58:10+00:00"
  11652. },
  11653. {
  11654. "name": "symfony/options-resolver",
  11655. "version": "v6.4.16",
  11656. "source": {
  11657. "type": "git",
  11658. "url": "https://github.com/symfony/options-resolver.git",
  11659. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11660. },
  11661. "dist": {
  11662. "type": "zip",
  11663. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11664. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11665. "shasum": ""
  11666. },
  11667. "require": {
  11668. "php": ">=8.1",
  11669. "symfony/deprecation-contracts": "^2.5|^3"
  11670. },
  11671. "type": "library",
  11672. "autoload": {
  11673. "psr-4": {
  11674. "Symfony\\Component\\OptionsResolver\\": ""
  11675. },
  11676. "exclude-from-classmap": [
  11677. "/Tests/"
  11678. ]
  11679. },
  11680. "notification-url": "https://packagist.org/downloads/",
  11681. "license": [
  11682. "MIT"
  11683. ],
  11684. "authors": [
  11685. {
  11686. "name": "Fabien Potencier",
  11687. "email": "fabien@symfony.com"
  11688. },
  11689. {
  11690. "name": "Symfony Community",
  11691. "homepage": "https://symfony.com/contributors"
  11692. }
  11693. ],
  11694. "description": "Provides an improved replacement for the array_replace PHP function",
  11695. "homepage": "https://symfony.com",
  11696. "keywords": [
  11697. "config",
  11698. "configuration",
  11699. "options"
  11700. ],
  11701. "support": {
  11702. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11703. },
  11704. "funding": [
  11705. {
  11706. "url": "https://symfony.com/sponsor",
  11707. "type": "custom"
  11708. },
  11709. {
  11710. "url": "https://github.com/fabpot",
  11711. "type": "github"
  11712. },
  11713. {
  11714. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11715. "type": "tidelift"
  11716. }
  11717. ],
  11718. "time": "2024-11-20T10:57:02+00:00"
  11719. },
  11720. {
  11721. "name": "symfony/polyfill-php81",
  11722. "version": "v1.31.0",
  11723. "source": {
  11724. "type": "git",
  11725. "url": "https://github.com/symfony/polyfill-php81.git",
  11726. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11727. },
  11728. "dist": {
  11729. "type": "zip",
  11730. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11731. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11732. "shasum": ""
  11733. },
  11734. "require": {
  11735. "php": ">=7.2"
  11736. },
  11737. "type": "library",
  11738. "extra": {
  11739. "thanks": {
  11740. "url": "https://github.com/symfony/polyfill",
  11741. "name": "symfony/polyfill"
  11742. }
  11743. },
  11744. "autoload": {
  11745. "files": [
  11746. "bootstrap.php"
  11747. ],
  11748. "psr-4": {
  11749. "Symfony\\Polyfill\\Php81\\": ""
  11750. },
  11751. "classmap": [
  11752. "Resources/stubs"
  11753. ]
  11754. },
  11755. "notification-url": "https://packagist.org/downloads/",
  11756. "license": [
  11757. "MIT"
  11758. ],
  11759. "authors": [
  11760. {
  11761. "name": "Nicolas Grekas",
  11762. "email": "p@tchwork.com"
  11763. },
  11764. {
  11765. "name": "Symfony Community",
  11766. "homepage": "https://symfony.com/contributors"
  11767. }
  11768. ],
  11769. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11770. "homepage": "https://symfony.com",
  11771. "keywords": [
  11772. "compatibility",
  11773. "polyfill",
  11774. "portable",
  11775. "shim"
  11776. ],
  11777. "support": {
  11778. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11779. },
  11780. "funding": [
  11781. {
  11782. "url": "https://symfony.com/sponsor",
  11783. "type": "custom"
  11784. },
  11785. {
  11786. "url": "https://github.com/fabpot",
  11787. "type": "github"
  11788. },
  11789. {
  11790. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11791. "type": "tidelift"
  11792. }
  11793. ],
  11794. "time": "2024-09-09T11:45:10+00:00"
  11795. },
  11796. {
  11797. "name": "symfony/polyfill-php83",
  11798. "version": "v1.31.0",
  11799. "source": {
  11800. "type": "git",
  11801. "url": "https://github.com/symfony/polyfill-php83.git",
  11802. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11803. },
  11804. "dist": {
  11805. "type": "zip",
  11806. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11807. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11808. "shasum": ""
  11809. },
  11810. "require": {
  11811. "php": ">=7.2"
  11812. },
  11813. "type": "library",
  11814. "extra": {
  11815. "thanks": {
  11816. "url": "https://github.com/symfony/polyfill",
  11817. "name": "symfony/polyfill"
  11818. }
  11819. },
  11820. "autoload": {
  11821. "files": [
  11822. "bootstrap.php"
  11823. ],
  11824. "psr-4": {
  11825. "Symfony\\Polyfill\\Php83\\": ""
  11826. },
  11827. "classmap": [
  11828. "Resources/stubs"
  11829. ]
  11830. },
  11831. "notification-url": "https://packagist.org/downloads/",
  11832. "license": [
  11833. "MIT"
  11834. ],
  11835. "authors": [
  11836. {
  11837. "name": "Nicolas Grekas",
  11838. "email": "p@tchwork.com"
  11839. },
  11840. {
  11841. "name": "Symfony Community",
  11842. "homepage": "https://symfony.com/contributors"
  11843. }
  11844. ],
  11845. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11846. "homepage": "https://symfony.com",
  11847. "keywords": [
  11848. "compatibility",
  11849. "polyfill",
  11850. "portable",
  11851. "shim"
  11852. ],
  11853. "support": {
  11854. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11855. },
  11856. "funding": [
  11857. {
  11858. "url": "https://symfony.com/sponsor",
  11859. "type": "custom"
  11860. },
  11861. {
  11862. "url": "https://github.com/fabpot",
  11863. "type": "github"
  11864. },
  11865. {
  11866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11867. "type": "tidelift"
  11868. }
  11869. ],
  11870. "time": "2024-09-09T11:45:10+00:00"
  11871. },
  11872. {
  11873. "name": "symfony/process",
  11874. "version": "v6.4.15",
  11875. "source": {
  11876. "type": "git",
  11877. "url": "https://github.com/symfony/process.git",
  11878. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11879. },
  11880. "dist": {
  11881. "type": "zip",
  11882. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11883. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11884. "shasum": ""
  11885. },
  11886. "require": {
  11887. "php": ">=8.1"
  11888. },
  11889. "type": "library",
  11890. "autoload": {
  11891. "psr-4": {
  11892. "Symfony\\Component\\Process\\": ""
  11893. },
  11894. "exclude-from-classmap": [
  11895. "/Tests/"
  11896. ]
  11897. },
  11898. "notification-url": "https://packagist.org/downloads/",
  11899. "license": [
  11900. "MIT"
  11901. ],
  11902. "authors": [
  11903. {
  11904. "name": "Fabien Potencier",
  11905. "email": "fabien@symfony.com"
  11906. },
  11907. {
  11908. "name": "Symfony Community",
  11909. "homepage": "https://symfony.com/contributors"
  11910. }
  11911. ],
  11912. "description": "Executes commands in sub-processes",
  11913. "homepage": "https://symfony.com",
  11914. "support": {
  11915. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11916. },
  11917. "funding": [
  11918. {
  11919. "url": "https://symfony.com/sponsor",
  11920. "type": "custom"
  11921. },
  11922. {
  11923. "url": "https://github.com/fabpot",
  11924. "type": "github"
  11925. },
  11926. {
  11927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11928. "type": "tidelift"
  11929. }
  11930. ],
  11931. "time": "2024-11-06T14:19:14+00:00"
  11932. },
  11933. {
  11934. "name": "symfony/stopwatch",
  11935. "version": "v6.4.13",
  11936. "source": {
  11937. "type": "git",
  11938. "url": "https://github.com/symfony/stopwatch.git",
  11939. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11940. },
  11941. "dist": {
  11942. "type": "zip",
  11943. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11944. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11945. "shasum": ""
  11946. },
  11947. "require": {
  11948. "php": ">=8.1",
  11949. "symfony/service-contracts": "^2.5|^3"
  11950. },
  11951. "type": "library",
  11952. "autoload": {
  11953. "psr-4": {
  11954. "Symfony\\Component\\Stopwatch\\": ""
  11955. },
  11956. "exclude-from-classmap": [
  11957. "/Tests/"
  11958. ]
  11959. },
  11960. "notification-url": "https://packagist.org/downloads/",
  11961. "license": [
  11962. "MIT"
  11963. ],
  11964. "authors": [
  11965. {
  11966. "name": "Fabien Potencier",
  11967. "email": "fabien@symfony.com"
  11968. },
  11969. {
  11970. "name": "Symfony Community",
  11971. "homepage": "https://symfony.com/contributors"
  11972. }
  11973. ],
  11974. "description": "Provides a way to profile code",
  11975. "homepage": "https://symfony.com",
  11976. "support": {
  11977. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11978. },
  11979. "funding": [
  11980. {
  11981. "url": "https://symfony.com/sponsor",
  11982. "type": "custom"
  11983. },
  11984. {
  11985. "url": "https://github.com/fabpot",
  11986. "type": "github"
  11987. },
  11988. {
  11989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11990. "type": "tidelift"
  11991. }
  11992. ],
  11993. "time": "2024-09-25T14:18:03+00:00"
  11994. },
  11995. {
  11996. "name": "theseer/tokenizer",
  11997. "version": "1.2.3",
  11998. "source": {
  11999. "type": "git",
  12000. "url": "https://github.com/theseer/tokenizer.git",
  12001. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12002. },
  12003. "dist": {
  12004. "type": "zip",
  12005. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12006. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12007. "shasum": ""
  12008. },
  12009. "require": {
  12010. "ext-dom": "*",
  12011. "ext-tokenizer": "*",
  12012. "ext-xmlwriter": "*",
  12013. "php": "^7.2 || ^8.0"
  12014. },
  12015. "type": "library",
  12016. "autoload": {
  12017. "classmap": [
  12018. "src/"
  12019. ]
  12020. },
  12021. "notification-url": "https://packagist.org/downloads/",
  12022. "license": [
  12023. "BSD-3-Clause"
  12024. ],
  12025. "authors": [
  12026. {
  12027. "name": "Arne Blankerts",
  12028. "email": "arne@blankerts.de",
  12029. "role": "Developer"
  12030. }
  12031. ],
  12032. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12033. "support": {
  12034. "issues": "https://github.com/theseer/tokenizer/issues",
  12035. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12036. },
  12037. "funding": [
  12038. {
  12039. "url": "https://github.com/theseer",
  12040. "type": "github"
  12041. }
  12042. ],
  12043. "time": "2024-03-03T12:36:25+00:00"
  12044. },
  12045. {
  12046. "name": "zx/php-tools",
  12047. "version": "v0.0.1",
  12048. "source": {
  12049. "type": "git",
  12050. "url": "https://gitee.com/open-php/php-tools.git",
  12051. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  12052. },
  12053. "require": {
  12054. "php": ">=7.0"
  12055. },
  12056. "type": "library",
  12057. "autoload": {
  12058. "psr-4": {
  12059. "ZX\\": "src/"
  12060. }
  12061. },
  12062. "notification-url": "https://packagist.org/downloads/",
  12063. "license": [
  12064. "mit"
  12065. ],
  12066. "authors": [
  12067. {
  12068. "name": "zx",
  12069. "email": "903464207@qq.com"
  12070. }
  12071. ],
  12072. "description": "php-tools",
  12073. "time": "2023-06-25T06:24:10+00:00"
  12074. }
  12075. ],
  12076. "aliases": [],
  12077. "minimum-stability": "dev",
  12078. "stability-flags": [],
  12079. "prefer-stable": true,
  12080. "prefer-lowest": false,
  12081. "platform": {
  12082. "php": ">=8.1"
  12083. },
  12084. "platform-dev": [],
  12085. "plugin-api-version": "2.6.0"
  12086. }