composer.lock 416 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729
  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": "408b8e53c4a0d313ed75355b91296895",
  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": "graham-campbell/result-type",
  722. "version": "v1.1.3",
  723. "source": {
  724. "type": "git",
  725. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  726. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  727. },
  728. "dist": {
  729. "type": "zip",
  730. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  731. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  732. "shasum": ""
  733. },
  734. "require": {
  735. "php": "^7.2.5 || ^8.0",
  736. "phpoption/phpoption": "^1.9.3"
  737. },
  738. "require-dev": {
  739. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  740. },
  741. "type": "library",
  742. "autoload": {
  743. "psr-4": {
  744. "GrahamCampbell\\ResultType\\": "src/"
  745. }
  746. },
  747. "notification-url": "https://packagist.org/downloads/",
  748. "license": [
  749. "MIT"
  750. ],
  751. "authors": [
  752. {
  753. "name": "Graham Campbell",
  754. "email": "hello@gjcampbell.co.uk",
  755. "homepage": "https://github.com/GrahamCampbell"
  756. }
  757. ],
  758. "description": "An Implementation Of The Result Type",
  759. "keywords": [
  760. "Graham Campbell",
  761. "GrahamCampbell",
  762. "Result Type",
  763. "Result-Type",
  764. "result"
  765. ],
  766. "support": {
  767. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  768. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  769. },
  770. "funding": [
  771. {
  772. "url": "https://github.com/GrahamCampbell",
  773. "type": "github"
  774. },
  775. {
  776. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  777. "type": "tidelift"
  778. }
  779. ],
  780. "time": "2024-07-20T21:45:45+00:00"
  781. },
  782. {
  783. "name": "guzzlehttp/guzzle",
  784. "version": "7.9.2",
  785. "source": {
  786. "type": "git",
  787. "url": "https://github.com/guzzle/guzzle.git",
  788. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  789. },
  790. "dist": {
  791. "type": "zip",
  792. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  793. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  794. "shasum": ""
  795. },
  796. "require": {
  797. "ext-json": "*",
  798. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  799. "guzzlehttp/psr7": "^2.7.0",
  800. "php": "^7.2.5 || ^8.0",
  801. "psr/http-client": "^1.0",
  802. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  803. },
  804. "provide": {
  805. "psr/http-client-implementation": "1.0"
  806. },
  807. "require-dev": {
  808. "bamarni/composer-bin-plugin": "^1.8.2",
  809. "ext-curl": "*",
  810. "guzzle/client-integration-tests": "3.0.2",
  811. "php-http/message-factory": "^1.1",
  812. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  813. "psr/log": "^1.1 || ^2.0 || ^3.0"
  814. },
  815. "suggest": {
  816. "ext-curl": "Required for CURL handler support",
  817. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  818. "psr/log": "Required for using the Log middleware"
  819. },
  820. "type": "library",
  821. "extra": {
  822. "bamarni-bin": {
  823. "bin-links": true,
  824. "forward-command": false
  825. }
  826. },
  827. "autoload": {
  828. "files": [
  829. "src/functions_include.php"
  830. ],
  831. "psr-4": {
  832. "GuzzleHttp\\": "src/"
  833. }
  834. },
  835. "notification-url": "https://packagist.org/downloads/",
  836. "license": [
  837. "MIT"
  838. ],
  839. "authors": [
  840. {
  841. "name": "Graham Campbell",
  842. "email": "hello@gjcampbell.co.uk",
  843. "homepage": "https://github.com/GrahamCampbell"
  844. },
  845. {
  846. "name": "Michael Dowling",
  847. "email": "mtdowling@gmail.com",
  848. "homepage": "https://github.com/mtdowling"
  849. },
  850. {
  851. "name": "Jeremy Lindblom",
  852. "email": "jeremeamia@gmail.com",
  853. "homepage": "https://github.com/jeremeamia"
  854. },
  855. {
  856. "name": "George Mponos",
  857. "email": "gmponos@gmail.com",
  858. "homepage": "https://github.com/gmponos"
  859. },
  860. {
  861. "name": "Tobias Nyholm",
  862. "email": "tobias.nyholm@gmail.com",
  863. "homepage": "https://github.com/Nyholm"
  864. },
  865. {
  866. "name": "Márk Sági-Kazár",
  867. "email": "mark.sagikazar@gmail.com",
  868. "homepage": "https://github.com/sagikazarmark"
  869. },
  870. {
  871. "name": "Tobias Schultze",
  872. "email": "webmaster@tubo-world.de",
  873. "homepage": "https://github.com/Tobion"
  874. }
  875. ],
  876. "description": "Guzzle is a PHP HTTP client library",
  877. "keywords": [
  878. "client",
  879. "curl",
  880. "framework",
  881. "http",
  882. "http client",
  883. "psr-18",
  884. "psr-7",
  885. "rest",
  886. "web service"
  887. ],
  888. "support": {
  889. "issues": "https://github.com/guzzle/guzzle/issues",
  890. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  891. },
  892. "funding": [
  893. {
  894. "url": "https://github.com/GrahamCampbell",
  895. "type": "github"
  896. },
  897. {
  898. "url": "https://github.com/Nyholm",
  899. "type": "github"
  900. },
  901. {
  902. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  903. "type": "tidelift"
  904. }
  905. ],
  906. "time": "2024-07-24T11:22:20+00:00"
  907. },
  908. {
  909. "name": "guzzlehttp/promises",
  910. "version": "2.0.4",
  911. "source": {
  912. "type": "git",
  913. "url": "https://github.com/guzzle/promises.git",
  914. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  915. },
  916. "dist": {
  917. "type": "zip",
  918. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  919. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  920. "shasum": ""
  921. },
  922. "require": {
  923. "php": "^7.2.5 || ^8.0"
  924. },
  925. "require-dev": {
  926. "bamarni/composer-bin-plugin": "^1.8.2",
  927. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  928. },
  929. "type": "library",
  930. "extra": {
  931. "bamarni-bin": {
  932. "bin-links": true,
  933. "forward-command": false
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "GuzzleHttp\\Promise\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "authors": [
  946. {
  947. "name": "Graham Campbell",
  948. "email": "hello@gjcampbell.co.uk",
  949. "homepage": "https://github.com/GrahamCampbell"
  950. },
  951. {
  952. "name": "Michael Dowling",
  953. "email": "mtdowling@gmail.com",
  954. "homepage": "https://github.com/mtdowling"
  955. },
  956. {
  957. "name": "Tobias Nyholm",
  958. "email": "tobias.nyholm@gmail.com",
  959. "homepage": "https://github.com/Nyholm"
  960. },
  961. {
  962. "name": "Tobias Schultze",
  963. "email": "webmaster@tubo-world.de",
  964. "homepage": "https://github.com/Tobion"
  965. }
  966. ],
  967. "description": "Guzzle promises library",
  968. "keywords": [
  969. "promise"
  970. ],
  971. "support": {
  972. "issues": "https://github.com/guzzle/promises/issues",
  973. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  974. },
  975. "funding": [
  976. {
  977. "url": "https://github.com/GrahamCampbell",
  978. "type": "github"
  979. },
  980. {
  981. "url": "https://github.com/Nyholm",
  982. "type": "github"
  983. },
  984. {
  985. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  986. "type": "tidelift"
  987. }
  988. ],
  989. "time": "2024-10-17T10:06:22+00:00"
  990. },
  991. {
  992. "name": "guzzlehttp/psr7",
  993. "version": "2.7.0",
  994. "source": {
  995. "type": "git",
  996. "url": "https://github.com/guzzle/psr7.git",
  997. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  998. },
  999. "dist": {
  1000. "type": "zip",
  1001. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1002. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1003. "shasum": ""
  1004. },
  1005. "require": {
  1006. "php": "^7.2.5 || ^8.0",
  1007. "psr/http-factory": "^1.0",
  1008. "psr/http-message": "^1.1 || ^2.0",
  1009. "ralouphie/getallheaders": "^3.0"
  1010. },
  1011. "provide": {
  1012. "psr/http-factory-implementation": "1.0",
  1013. "psr/http-message-implementation": "1.0"
  1014. },
  1015. "require-dev": {
  1016. "bamarni/composer-bin-plugin": "^1.8.2",
  1017. "http-interop/http-factory-tests": "0.9.0",
  1018. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1019. },
  1020. "suggest": {
  1021. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1022. },
  1023. "type": "library",
  1024. "extra": {
  1025. "bamarni-bin": {
  1026. "bin-links": true,
  1027. "forward-command": false
  1028. }
  1029. },
  1030. "autoload": {
  1031. "psr-4": {
  1032. "GuzzleHttp\\Psr7\\": "src/"
  1033. }
  1034. },
  1035. "notification-url": "https://packagist.org/downloads/",
  1036. "license": [
  1037. "MIT"
  1038. ],
  1039. "authors": [
  1040. {
  1041. "name": "Graham Campbell",
  1042. "email": "hello@gjcampbell.co.uk",
  1043. "homepage": "https://github.com/GrahamCampbell"
  1044. },
  1045. {
  1046. "name": "Michael Dowling",
  1047. "email": "mtdowling@gmail.com",
  1048. "homepage": "https://github.com/mtdowling"
  1049. },
  1050. {
  1051. "name": "George Mponos",
  1052. "email": "gmponos@gmail.com",
  1053. "homepage": "https://github.com/gmponos"
  1054. },
  1055. {
  1056. "name": "Tobias Nyholm",
  1057. "email": "tobias.nyholm@gmail.com",
  1058. "homepage": "https://github.com/Nyholm"
  1059. },
  1060. {
  1061. "name": "Márk Sági-Kazár",
  1062. "email": "mark.sagikazar@gmail.com",
  1063. "homepage": "https://github.com/sagikazarmark"
  1064. },
  1065. {
  1066. "name": "Tobias Schultze",
  1067. "email": "webmaster@tubo-world.de",
  1068. "homepage": "https://github.com/Tobion"
  1069. },
  1070. {
  1071. "name": "Márk Sági-Kazár",
  1072. "email": "mark.sagikazar@gmail.com",
  1073. "homepage": "https://sagikazarmark.hu"
  1074. }
  1075. ],
  1076. "description": "PSR-7 message implementation that also provides common utility methods",
  1077. "keywords": [
  1078. "http",
  1079. "message",
  1080. "psr-7",
  1081. "request",
  1082. "response",
  1083. "stream",
  1084. "uri",
  1085. "url"
  1086. ],
  1087. "support": {
  1088. "issues": "https://github.com/guzzle/psr7/issues",
  1089. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1090. },
  1091. "funding": [
  1092. {
  1093. "url": "https://github.com/GrahamCampbell",
  1094. "type": "github"
  1095. },
  1096. {
  1097. "url": "https://github.com/Nyholm",
  1098. "type": "github"
  1099. },
  1100. {
  1101. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1102. "type": "tidelift"
  1103. }
  1104. ],
  1105. "time": "2024-07-18T11:15:46+00:00"
  1106. },
  1107. {
  1108. "name": "hyperf/amqp",
  1109. "version": "v3.1.42",
  1110. "source": {
  1111. "type": "git",
  1112. "url": "https://github.com/hyperf/amqp.git",
  1113. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1114. },
  1115. "dist": {
  1116. "type": "zip",
  1117. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1118. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1119. "shasum": ""
  1120. },
  1121. "require": {
  1122. "doctrine/instantiator": "^1.2.0",
  1123. "hyperf/codec": "~3.1.0",
  1124. "hyperf/contract": "~3.1.0",
  1125. "hyperf/coroutine": "~3.1.0",
  1126. "hyperf/pool": "~3.1.0",
  1127. "hyperf/process": "~3.1.0",
  1128. "hyperf/support": "~3.1.0",
  1129. "hyperf/utils": "~3.1.0",
  1130. "php": ">=8.1",
  1131. "php-amqplib/php-amqplib": "^3.5",
  1132. "psr/container": "^1.0 || ^2.0",
  1133. "psr/event-dispatcher": "^1.0",
  1134. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1135. },
  1136. "suggest": {
  1137. "hyperf/di": "Required to use annotations.",
  1138. "hyperf/event": "Declare queue and start consumers automatically."
  1139. },
  1140. "type": "library",
  1141. "extra": {
  1142. "branch-alias": {
  1143. "dev-master": "3.1-dev"
  1144. },
  1145. "hyperf": {
  1146. "config": "Hyperf\\Amqp\\ConfigProvider"
  1147. }
  1148. },
  1149. "autoload": {
  1150. "psr-4": {
  1151. "Hyperf\\Amqp\\": "src/"
  1152. }
  1153. },
  1154. "notification-url": "https://packagist.org/downloads/",
  1155. "license": [
  1156. "MIT"
  1157. ],
  1158. "description": "A amqplib for hyperf.",
  1159. "homepage": "https://hyperf.io",
  1160. "keywords": [
  1161. "AMQP",
  1162. "hyperf",
  1163. "php"
  1164. ],
  1165. "support": {
  1166. "docs": "https://hyperf.wiki",
  1167. "issues": "https://github.com/hyperf/hyperf/issues",
  1168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1169. "source": "https://github.com/hyperf/hyperf"
  1170. },
  1171. "funding": [
  1172. {
  1173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1174. "type": "custom"
  1175. },
  1176. {
  1177. "url": "https://opencollective.com/hyperf",
  1178. "type": "open_collective"
  1179. }
  1180. ],
  1181. "time": "2024-09-25T02:54:12+00:00"
  1182. },
  1183. {
  1184. "name": "hyperf/async-queue",
  1185. "version": "v3.1.42",
  1186. "source": {
  1187. "type": "git",
  1188. "url": "https://github.com/hyperf/async-queue.git",
  1189. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1190. },
  1191. "dist": {
  1192. "type": "zip",
  1193. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1194. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1195. "shasum": ""
  1196. },
  1197. "require": {
  1198. "hyperf/codec": "~3.1.0",
  1199. "hyperf/collection": "~3.1.0",
  1200. "hyperf/command": "~3.1.0",
  1201. "hyperf/contract": "~3.1.0",
  1202. "hyperf/support": "~3.1.0",
  1203. "hyperf/utils": "~3.1.0",
  1204. "php": ">=8.1",
  1205. "psr/container": "^1.0 || ^2.0",
  1206. "psr/event-dispatcher": "^1.0"
  1207. },
  1208. "suggest": {
  1209. "hyperf/di": "Required to use annotations.",
  1210. "hyperf/event": "Required to dispatch a event.",
  1211. "hyperf/logger": "Required to use QueueHandleListener.",
  1212. "hyperf/process": "Auto register the consumer process for server."
  1213. },
  1214. "type": "library",
  1215. "extra": {
  1216. "branch-alias": {
  1217. "dev-master": "3.1-dev"
  1218. },
  1219. "hyperf": {
  1220. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1221. }
  1222. },
  1223. "autoload": {
  1224. "files": [
  1225. "src/Functions.php"
  1226. ],
  1227. "psr-4": {
  1228. "Hyperf\\AsyncQueue\\": "src/"
  1229. }
  1230. },
  1231. "notification-url": "https://packagist.org/downloads/",
  1232. "license": [
  1233. "MIT"
  1234. ],
  1235. "description": "A async queue component for hyperf.",
  1236. "homepage": "https://hyperf.io",
  1237. "keywords": [
  1238. "async-queue",
  1239. "hyperf",
  1240. "php"
  1241. ],
  1242. "support": {
  1243. "docs": "https://hyperf.wiki",
  1244. "issues": "https://github.com/hyperf/hyperf/issues",
  1245. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1246. "source": "https://github.com/hyperf/hyperf"
  1247. },
  1248. "funding": [
  1249. {
  1250. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1251. "type": "custom"
  1252. },
  1253. {
  1254. "url": "https://opencollective.com/hyperf",
  1255. "type": "open_collective"
  1256. }
  1257. ],
  1258. "time": "2024-09-25T02:54:12+00:00"
  1259. },
  1260. {
  1261. "name": "hyperf/cache",
  1262. "version": "v3.1.43",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/hyperf/cache.git",
  1266. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1271. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "hyperf/codec": "~3.1.0",
  1276. "hyperf/collection": "~3.1.0",
  1277. "hyperf/contract": "~3.1.0",
  1278. "hyperf/support": "~3.1.0",
  1279. "hyperf/utils": "~3.1.0",
  1280. "php": ">=8.1",
  1281. "psr/container": "^1.0 || ^2.0",
  1282. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1283. },
  1284. "suggest": {
  1285. "hyperf/di": "Use cache annotations.",
  1286. "hyperf/event": "Use listener to delete annotation cache."
  1287. },
  1288. "type": "library",
  1289. "extra": {
  1290. "branch-alias": {
  1291. "dev-master": "3.1-dev"
  1292. },
  1293. "hyperf": {
  1294. "config": "Hyperf\\Cache\\ConfigProvider"
  1295. }
  1296. },
  1297. "autoload": {
  1298. "psr-4": {
  1299. "Hyperf\\Cache\\": "src/"
  1300. }
  1301. },
  1302. "notification-url": "https://packagist.org/downloads/",
  1303. "license": [
  1304. "MIT"
  1305. ],
  1306. "description": "A cache component for hyperf.",
  1307. "homepage": "https://hyperf.io",
  1308. "keywords": [
  1309. "cache",
  1310. "hyperf",
  1311. "php"
  1312. ],
  1313. "support": {
  1314. "docs": "https://hyperf.wiki",
  1315. "issues": "https://github.com/hyperf/hyperf/issues",
  1316. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1317. "source": "https://github.com/hyperf/hyperf"
  1318. },
  1319. "funding": [
  1320. {
  1321. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1322. "type": "custom"
  1323. },
  1324. {
  1325. "url": "https://opencollective.com/hyperf",
  1326. "type": "open_collective"
  1327. }
  1328. ],
  1329. "time": "2024-10-09T10:22:39+00:00"
  1330. },
  1331. {
  1332. "name": "hyperf/code-parser",
  1333. "version": "v3.1.42",
  1334. "source": {
  1335. "type": "git",
  1336. "url": "https://github.com/hyperf/code-parser.git",
  1337. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1338. },
  1339. "dist": {
  1340. "type": "zip",
  1341. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1342. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1343. "shasum": ""
  1344. },
  1345. "require": {
  1346. "hyperf/collection": "~3.1.0",
  1347. "hyperf/stringable": "~3.1.0",
  1348. "hyperf/support": "~3.1.0",
  1349. "php": ">=8.1"
  1350. },
  1351. "suggest": {
  1352. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1353. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1354. },
  1355. "type": "library",
  1356. "extra": {
  1357. "branch-alias": {
  1358. "dev-master": "3.1-dev"
  1359. }
  1360. },
  1361. "autoload": {
  1362. "psr-4": {
  1363. "Hyperf\\CodeParser\\": "src/"
  1364. }
  1365. },
  1366. "notification-url": "https://packagist.org/downloads/",
  1367. "license": [
  1368. "MIT"
  1369. ],
  1370. "description": "A code parser component for Hyperf.",
  1371. "homepage": "https://hyperf.io",
  1372. "keywords": [
  1373. "code-parser",
  1374. "hyperf",
  1375. "php",
  1376. "swoole"
  1377. ],
  1378. "support": {
  1379. "docs": "https://hyperf.wiki",
  1380. "issues": "https://github.com/hyperf/hyperf/issues",
  1381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1382. "source": "https://github.com/hyperf/hyperf"
  1383. },
  1384. "funding": [
  1385. {
  1386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1387. "type": "custom"
  1388. },
  1389. {
  1390. "url": "https://opencollective.com/hyperf",
  1391. "type": "open_collective"
  1392. }
  1393. ],
  1394. "time": "2024-09-25T02:54:12+00:00"
  1395. },
  1396. {
  1397. "name": "hyperf/codec",
  1398. "version": "v3.1.42",
  1399. "source": {
  1400. "type": "git",
  1401. "url": "https://github.com/hyperf/codec.git",
  1402. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1403. },
  1404. "dist": {
  1405. "type": "zip",
  1406. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1407. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1408. "shasum": ""
  1409. },
  1410. "require": {
  1411. "ext-json": "*",
  1412. "ext-xml": "*",
  1413. "hyperf/contract": "~3.1.0",
  1414. "php": ">=8.1"
  1415. },
  1416. "suggest": {
  1417. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1418. },
  1419. "type": "library",
  1420. "extra": {
  1421. "branch-alias": {
  1422. "dev-master": "3.1-dev"
  1423. }
  1424. },
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Hyperf\\Codec\\": "src/"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "description": "A codec component for Hyperf.",
  1435. "homepage": "https://hyperf.io",
  1436. "keywords": [
  1437. "codec",
  1438. "hyperf",
  1439. "php",
  1440. "swoole"
  1441. ],
  1442. "support": {
  1443. "docs": "https://hyperf.wiki",
  1444. "issues": "https://github.com/hyperf/hyperf/issues",
  1445. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1446. "source": "https://github.com/hyperf/hyperf"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://opencollective.com/hyperf",
  1455. "type": "open_collective"
  1456. }
  1457. ],
  1458. "time": "2024-09-25T02:54:12+00:00"
  1459. },
  1460. {
  1461. "name": "hyperf/collection",
  1462. "version": "v3.1.47",
  1463. "source": {
  1464. "type": "git",
  1465. "url": "https://github.com/hyperf/collection.git",
  1466. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73"
  1467. },
  1468. "dist": {
  1469. "type": "zip",
  1470. "url": "https://api.github.com/repos/hyperf/collection/zipball/9e4845ece7b38676b4818152f472717ec0daaf73",
  1471. "reference": "9e4845ece7b38676b4818152f472717ec0daaf73",
  1472. "shasum": ""
  1473. },
  1474. "require": {
  1475. "hyperf/conditionable": "~3.1.0",
  1476. "hyperf/contract": "~3.1.0",
  1477. "hyperf/macroable": "~3.1.0",
  1478. "hyperf/stringable": "~3.1.0",
  1479. "php": ">=8.1"
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "3.1-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "files": [
  1489. "src/Functions.php"
  1490. ],
  1491. "psr-4": {
  1492. "Hyperf\\Collection\\": "src/"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "description": "Hyperf Collection package which come from illuminate/collections",
  1500. "homepage": "https://hyperf.io",
  1501. "keywords": [
  1502. "collection",
  1503. "hyperf",
  1504. "php",
  1505. "swoole"
  1506. ],
  1507. "support": {
  1508. "docs": "https://hyperf.wiki",
  1509. "issues": "https://github.com/hyperf/hyperf/issues",
  1510. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1511. "source": "https://github.com/hyperf/hyperf"
  1512. },
  1513. "funding": [
  1514. {
  1515. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1516. "type": "custom"
  1517. },
  1518. {
  1519. "url": "https://opencollective.com/hyperf",
  1520. "type": "open_collective"
  1521. }
  1522. ],
  1523. "time": "2024-11-28T01:51:55+00:00"
  1524. },
  1525. {
  1526. "name": "hyperf/command",
  1527. "version": "v3.1.42",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/hyperf/command.git",
  1531. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1536. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "hyperf/collection": "~3.1.0",
  1541. "hyperf/context": "~3.1.0",
  1542. "hyperf/contract": "~3.1.0",
  1543. "hyperf/coroutine": "~3.1.0",
  1544. "hyperf/di": "~3.1.0",
  1545. "hyperf/stringable": "~3.1.0",
  1546. "hyperf/support": "~3.1.0",
  1547. "hyperf/tappable": "~3.1.0",
  1548. "php": ">=8.1",
  1549. "psr/event-dispatcher": "^1.0",
  1550. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1551. },
  1552. "suggest": {
  1553. "hyperf/di": "Required to use annotations.",
  1554. "hyperf/event": "Required to use listeners."
  1555. },
  1556. "type": "library",
  1557. "extra": {
  1558. "branch-alias": {
  1559. "dev-master": "3.1-dev"
  1560. },
  1561. "hyperf": {
  1562. "config": "Hyperf\\Command\\ConfigProvider"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Hyperf\\Command\\": "src/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "description": "Command for hyperf",
  1575. "keywords": [
  1576. "command",
  1577. "php",
  1578. "swoole"
  1579. ],
  1580. "support": {
  1581. "issues": "https://github.com/hyperf/command/issues",
  1582. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1583. },
  1584. "funding": [
  1585. {
  1586. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1587. "type": "custom"
  1588. },
  1589. {
  1590. "url": "https://opencollective.com/hyperf",
  1591. "type": "open_collective"
  1592. }
  1593. ],
  1594. "time": "2024-09-25T02:54:12+00:00"
  1595. },
  1596. {
  1597. "name": "hyperf/conditionable",
  1598. "version": "v3.1.42",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/hyperf/conditionable.git",
  1602. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1607. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "php": ">=8.1"
  1612. },
  1613. "type": "library",
  1614. "extra": {
  1615. "branch-alias": {
  1616. "dev-master": "3.1-dev"
  1617. }
  1618. },
  1619. "autoload": {
  1620. "psr-4": {
  1621. "Hyperf\\Conditionable\\": "src/"
  1622. }
  1623. },
  1624. "notification-url": "https://packagist.org/downloads/",
  1625. "license": [
  1626. "MIT"
  1627. ],
  1628. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1629. "homepage": "https://hyperf.io",
  1630. "keywords": [
  1631. "conditionable",
  1632. "hyperf",
  1633. "php",
  1634. "swoole"
  1635. ],
  1636. "support": {
  1637. "docs": "https://hyperf.wiki",
  1638. "issues": "https://github.com/hyperf/hyperf/issues",
  1639. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1640. "source": "https://github.com/hyperf/hyperf"
  1641. },
  1642. "funding": [
  1643. {
  1644. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1645. "type": "custom"
  1646. },
  1647. {
  1648. "url": "https://opencollective.com/hyperf",
  1649. "type": "open_collective"
  1650. }
  1651. ],
  1652. "time": "2024-09-25T02:54:12+00:00"
  1653. },
  1654. {
  1655. "name": "hyperf/config",
  1656. "version": "v3.1.42",
  1657. "source": {
  1658. "type": "git",
  1659. "url": "https://github.com/hyperf/config.git",
  1660. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1661. },
  1662. "dist": {
  1663. "type": "zip",
  1664. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1665. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1666. "shasum": ""
  1667. },
  1668. "require": {
  1669. "hyperf/collection": "~3.1.0",
  1670. "hyperf/contract": "~3.1.0",
  1671. "hyperf/support": "~3.1.0",
  1672. "php": ">=8.1",
  1673. "psr/container": "^1.0 || ^2.0",
  1674. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1675. },
  1676. "suggest": {
  1677. "hyperf/context": "Required to use config()",
  1678. "hyperf/di": "Allows using @Value annotation",
  1679. "hyperf/event": "Allows using @Value annotation",
  1680. "hyperf/framework": "Allows using @Value annotation",
  1681. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. },
  1688. "hyperf": {
  1689. "config": "Hyperf\\Config\\ConfigProvider"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "files": [
  1694. "./src/Functions.php"
  1695. ],
  1696. "psr-4": {
  1697. "Hyperf\\Config\\": "src/"
  1698. }
  1699. },
  1700. "notification-url": "https://packagist.org/downloads/",
  1701. "license": [
  1702. "MIT"
  1703. ],
  1704. "description": "An independent component that provides configuration container.",
  1705. "homepage": "https://hyperf.io",
  1706. "keywords": [
  1707. "config",
  1708. "configuration",
  1709. "hyperf",
  1710. "php",
  1711. "swoole"
  1712. ],
  1713. "support": {
  1714. "docs": "https://hyperf.wiki",
  1715. "issues": "https://github.com/hyperf/hyperf/issues",
  1716. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1717. "source": "https://github.com/hyperf/hyperf"
  1718. },
  1719. "funding": [
  1720. {
  1721. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1722. "type": "custom"
  1723. },
  1724. {
  1725. "url": "https://opencollective.com/hyperf",
  1726. "type": "open_collective"
  1727. }
  1728. ],
  1729. "time": "2024-09-25T02:54:12+00:00"
  1730. },
  1731. {
  1732. "name": "hyperf/config-center",
  1733. "version": "v3.1.42",
  1734. "source": {
  1735. "type": "git",
  1736. "url": "https://github.com/hyperf/config-center.git",
  1737. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1738. },
  1739. "dist": {
  1740. "type": "zip",
  1741. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1742. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1743. "shasum": ""
  1744. },
  1745. "require": {
  1746. "hyperf/support": "~3.1.0",
  1747. "php": ">=8.1"
  1748. },
  1749. "suggest": {
  1750. "hyperf/process": "^2.1"
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "branch-alias": {
  1755. "dev-master": "3.1-dev"
  1756. },
  1757. "hyperf": {
  1758. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1759. }
  1760. },
  1761. "autoload": {
  1762. "psr-4": {
  1763. "Hyperf\\ConfigCenter\\": "src/"
  1764. }
  1765. },
  1766. "notification-url": "https://packagist.org/downloads/",
  1767. "license": [
  1768. "MIT"
  1769. ],
  1770. "description": "The abstraction component of config center",
  1771. "homepage": "https://hyperf.io",
  1772. "keywords": [
  1773. "config-center",
  1774. "hyperf",
  1775. "php"
  1776. ],
  1777. "support": {
  1778. "docs": "https://hyperf.wiki",
  1779. "issues": "https://github.com/hyperf/hyperf/issues",
  1780. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1781. "source": "https://github.com/hyperf/hyperf"
  1782. },
  1783. "funding": [
  1784. {
  1785. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1786. "type": "custom"
  1787. },
  1788. {
  1789. "url": "https://opencollective.com/hyperf",
  1790. "type": "open_collective"
  1791. }
  1792. ],
  1793. "time": "2024-09-25T02:54:12+00:00"
  1794. },
  1795. {
  1796. "name": "hyperf/config-nacos",
  1797. "version": "v3.1.42",
  1798. "source": {
  1799. "type": "git",
  1800. "url": "https://github.com/hyperf/config-nacos.git",
  1801. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1802. },
  1803. "dist": {
  1804. "type": "zip",
  1805. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1806. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1807. "shasum": ""
  1808. },
  1809. "require": {
  1810. "hyperf/codec": "~3.1.0",
  1811. "hyperf/config-center": "~3.1.0",
  1812. "hyperf/contract": "~3.1.0",
  1813. "hyperf/guzzle": "~3.1.0",
  1814. "hyperf/nacos": "~3.1.0",
  1815. "hyperf/support": "~3.1.0",
  1816. "hyperf/utils": "~3.1.0",
  1817. "jetbrains/phpstorm-attributes": "^1.0",
  1818. "php": ">=8.1"
  1819. },
  1820. "suggest": {
  1821. "ext-json": "*",
  1822. "ext-simplexml": "*",
  1823. "ext-yaml": "*",
  1824. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1825. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1826. "hyperf/process": "Required to use processes. (~2.2.0)"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "branch-alias": {
  1831. "dev-master": "3.1-dev"
  1832. },
  1833. "hyperf": {
  1834. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1835. }
  1836. },
  1837. "autoload": {
  1838. "psr-4": {
  1839. "Hyperf\\ConfigNacos\\": "src/"
  1840. }
  1841. },
  1842. "notification-url": "https://packagist.org/downloads/",
  1843. "license": [
  1844. "MIT"
  1845. ],
  1846. "description": "A nacos adapter for config center component.",
  1847. "homepage": "https://hyperf.io",
  1848. "keywords": [
  1849. "hyperf",
  1850. "nacos",
  1851. "php",
  1852. "swoole"
  1853. ],
  1854. "support": {
  1855. "docs": "https://hyperf.wiki",
  1856. "issues": "https://github.com/hyperf/hyperf/issues",
  1857. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1858. "source": "https://github.com/hyperf/hyperf"
  1859. },
  1860. "funding": [
  1861. {
  1862. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1863. "type": "custom"
  1864. },
  1865. {
  1866. "url": "https://opencollective.com/hyperf",
  1867. "type": "open_collective"
  1868. }
  1869. ],
  1870. "time": "2024-09-25T02:54:12+00:00"
  1871. },
  1872. {
  1873. "name": "hyperf/constants",
  1874. "version": "v3.1.42",
  1875. "source": {
  1876. "type": "git",
  1877. "url": "https://github.com/hyperf/constants.git",
  1878. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1879. },
  1880. "dist": {
  1881. "type": "zip",
  1882. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1883. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1884. "shasum": ""
  1885. },
  1886. "require": {
  1887. "hyperf/di": "~3.1.0",
  1888. "hyperf/support": "~3.1.0",
  1889. "hyperf/utils": "~3.1.0",
  1890. "php": ">=8.1"
  1891. },
  1892. "suggest": {
  1893. "hyperf/translation": "Required to use translation."
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "3.1-dev"
  1899. },
  1900. "hyperf": {
  1901. "config": "Hyperf\\Constants\\ConfigProvider"
  1902. }
  1903. },
  1904. "autoload": {
  1905. "psr-4": {
  1906. "Hyperf\\Constants\\": "src/"
  1907. }
  1908. },
  1909. "notification-url": "https://packagist.org/downloads/",
  1910. "license": [
  1911. "MIT"
  1912. ],
  1913. "description": "A constants component for hyperf.",
  1914. "homepage": "https://hyperf.io",
  1915. "keywords": [
  1916. "constants",
  1917. "hyperf",
  1918. "php"
  1919. ],
  1920. "support": {
  1921. "docs": "https://hyperf.wiki",
  1922. "issues": "https://github.com/hyperf/hyperf/issues",
  1923. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1924. "source": "https://github.com/hyperf/hyperf"
  1925. },
  1926. "funding": [
  1927. {
  1928. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1929. "type": "custom"
  1930. },
  1931. {
  1932. "url": "https://opencollective.com/hyperf",
  1933. "type": "open_collective"
  1934. }
  1935. ],
  1936. "time": "2024-09-25T02:54:12+00:00"
  1937. },
  1938. {
  1939. "name": "hyperf/consul",
  1940. "version": "v3.1.42",
  1941. "source": {
  1942. "type": "git",
  1943. "url": "https://github.com/hyperf/consul.git",
  1944. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1945. },
  1946. "dist": {
  1947. "type": "zip",
  1948. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1949. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1950. "shasum": ""
  1951. },
  1952. "require": {
  1953. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1954. "php": ">=8.1"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "3.1-dev"
  1960. },
  1961. "hyperf": {
  1962. "config": "Hyperf\\Consul\\ConfigProvider"
  1963. }
  1964. },
  1965. "autoload": {
  1966. "psr-4": {
  1967. "Hyperf\\Consul\\": "src/"
  1968. }
  1969. },
  1970. "notification-url": "https://packagist.org/downloads/",
  1971. "license": [
  1972. "MIT"
  1973. ],
  1974. "description": "A Consul Client for Hyperf.",
  1975. "homepage": "https://hyperf.io",
  1976. "keywords": [
  1977. "consul",
  1978. "consul-client",
  1979. "hyperf",
  1980. "php",
  1981. "swoole"
  1982. ],
  1983. "support": {
  1984. "docs": "https://hyperf.wiki",
  1985. "issues": "https://github.com/hyperf/hyperf/issues",
  1986. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1987. "source": "https://github.com/hyperf/hyperf"
  1988. },
  1989. "funding": [
  1990. {
  1991. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1992. "type": "custom"
  1993. },
  1994. {
  1995. "url": "https://opencollective.com/hyperf",
  1996. "type": "open_collective"
  1997. }
  1998. ],
  1999. "time": "2024-09-25T02:54:12+00:00"
  2000. },
  2001. {
  2002. "name": "hyperf/context",
  2003. "version": "v3.1.42",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/hyperf/context.git",
  2007. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2012. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "hyperf/engine": "^2.0",
  2017. "php": ">=8.1"
  2018. },
  2019. "suggest": {
  2020. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2021. },
  2022. "type": "library",
  2023. "extra": {
  2024. "branch-alias": {
  2025. "dev-master": "3.1-dev"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "psr-4": {
  2030. "Hyperf\\Context\\": "src/"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "MIT"
  2036. ],
  2037. "description": "A coroutine/application context library.",
  2038. "homepage": "https://hyperf.io",
  2039. "keywords": [
  2040. "Context",
  2041. "hyperf",
  2042. "php",
  2043. "swoole"
  2044. ],
  2045. "support": {
  2046. "docs": "https://hyperf.wiki",
  2047. "issues": "https://github.com/hyperf/hyperf/issues",
  2048. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2049. "source": "https://github.com/hyperf/hyperf"
  2050. },
  2051. "funding": [
  2052. {
  2053. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2054. "type": "custom"
  2055. },
  2056. {
  2057. "url": "https://opencollective.com/hyperf",
  2058. "type": "open_collective"
  2059. }
  2060. ],
  2061. "time": "2024-09-25T02:54:12+00:00"
  2062. },
  2063. {
  2064. "name": "hyperf/contract",
  2065. "version": "v3.1.42",
  2066. "source": {
  2067. "type": "git",
  2068. "url": "https://github.com/hyperf/contract.git",
  2069. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2070. },
  2071. "dist": {
  2072. "type": "zip",
  2073. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2074. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2075. "shasum": ""
  2076. },
  2077. "require": {
  2078. "php": ">=8.1"
  2079. },
  2080. "type": "library",
  2081. "extra": {
  2082. "branch-alias": {
  2083. "dev-master": "3.1-dev"
  2084. }
  2085. },
  2086. "autoload": {
  2087. "psr-4": {
  2088. "Hyperf\\Contract\\": "src/"
  2089. }
  2090. },
  2091. "notification-url": "https://packagist.org/downloads/",
  2092. "license": [
  2093. "MIT"
  2094. ],
  2095. "description": "The contracts of Hyperf.",
  2096. "homepage": "https://hyperf.io",
  2097. "keywords": [
  2098. "hyperf",
  2099. "php",
  2100. "swoole"
  2101. ],
  2102. "support": {
  2103. "docs": "https://hyperf.wiki",
  2104. "issues": "https://github.com/hyperf/hyperf/issues",
  2105. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2106. "source": "https://github.com/hyperf/hyperf"
  2107. },
  2108. "funding": [
  2109. {
  2110. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2111. "type": "custom"
  2112. },
  2113. {
  2114. "url": "https://opencollective.com/hyperf",
  2115. "type": "open_collective"
  2116. }
  2117. ],
  2118. "time": "2024-09-25T02:54:12+00:00"
  2119. },
  2120. {
  2121. "name": "hyperf/coordinator",
  2122. "version": "v3.1.42",
  2123. "source": {
  2124. "type": "git",
  2125. "url": "https://github.com/hyperf/coordinator.git",
  2126. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2127. },
  2128. "dist": {
  2129. "type": "zip",
  2130. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2131. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2132. "shasum": ""
  2133. },
  2134. "require": {
  2135. "hyperf/engine": "^2.0",
  2136. "php": ">=8.1"
  2137. },
  2138. "type": "library",
  2139. "extra": {
  2140. "branch-alias": {
  2141. "dev-master": "3.1-dev"
  2142. }
  2143. },
  2144. "autoload": {
  2145. "files": [
  2146. "src/Functions.php"
  2147. ],
  2148. "psr-4": {
  2149. "Hyperf\\Coordinator\\": "src/"
  2150. }
  2151. },
  2152. "notification-url": "https://packagist.org/downloads/",
  2153. "license": [
  2154. "MIT"
  2155. ],
  2156. "description": "Hyperf Coordinator",
  2157. "homepage": "https://hyperf.io",
  2158. "keywords": [
  2159. "Coordinator",
  2160. "hyperf",
  2161. "php",
  2162. "swoole"
  2163. ],
  2164. "support": {
  2165. "docs": "https://hyperf.wiki",
  2166. "issues": "https://github.com/hyperf/hyperf/issues",
  2167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2168. "source": "https://github.com/hyperf/hyperf"
  2169. },
  2170. "funding": [
  2171. {
  2172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2173. "type": "custom"
  2174. },
  2175. {
  2176. "url": "https://opencollective.com/hyperf",
  2177. "type": "open_collective"
  2178. }
  2179. ],
  2180. "time": "2024-09-25T02:54:12+00:00"
  2181. },
  2182. {
  2183. "name": "hyperf/coroutine",
  2184. "version": "v3.1.42",
  2185. "source": {
  2186. "type": "git",
  2187. "url": "https://github.com/hyperf/coroutine.git",
  2188. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2189. },
  2190. "dist": {
  2191. "type": "zip",
  2192. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2193. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2194. "shasum": ""
  2195. },
  2196. "require": {
  2197. "hyperf/context": "~3.1.0",
  2198. "hyperf/contract": "~3.1.0",
  2199. "hyperf/engine": "^2.0",
  2200. "php": ">=8.1"
  2201. },
  2202. "type": "library",
  2203. "extra": {
  2204. "branch-alias": {
  2205. "dev-master": "3.1-dev"
  2206. }
  2207. },
  2208. "autoload": {
  2209. "files": [
  2210. "src/Functions.php"
  2211. ],
  2212. "psr-4": {
  2213. "Hyperf\\Coroutine\\": "src/"
  2214. }
  2215. },
  2216. "notification-url": "https://packagist.org/downloads/",
  2217. "license": [
  2218. "MIT"
  2219. ],
  2220. "description": "Hyperf Coroutine",
  2221. "homepage": "https://hyperf.io",
  2222. "keywords": [
  2223. "coroutine",
  2224. "hyperf",
  2225. "php",
  2226. "swoole"
  2227. ],
  2228. "support": {
  2229. "docs": "https://hyperf.wiki",
  2230. "issues": "https://github.com/hyperf/hyperf/issues",
  2231. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2232. "source": "https://github.com/hyperf/hyperf"
  2233. },
  2234. "funding": [
  2235. {
  2236. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2237. "type": "custom"
  2238. },
  2239. {
  2240. "url": "https://opencollective.com/hyperf",
  2241. "type": "open_collective"
  2242. }
  2243. ],
  2244. "time": "2024-09-25T02:54:12+00:00"
  2245. },
  2246. {
  2247. "name": "hyperf/database",
  2248. "version": "v3.1.48",
  2249. "source": {
  2250. "type": "git",
  2251. "url": "https://github.com/hyperf/database.git",
  2252. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6"
  2253. },
  2254. "dist": {
  2255. "type": "zip",
  2256. "url": "https://api.github.com/repos/hyperf/database/zipball/a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2257. "reference": "a16b070ee2ac2ec580a4c6f5bb6243350bed69e6",
  2258. "shasum": ""
  2259. },
  2260. "require": {
  2261. "hyperf/code-parser": "~3.1.0",
  2262. "hyperf/collection": "~3.1.23",
  2263. "hyperf/conditionable": "~3.1.0",
  2264. "hyperf/macroable": "~3.1.0",
  2265. "hyperf/support": "~3.1.0",
  2266. "hyperf/tappable": "~3.1.0",
  2267. "hyperf/utils": "~3.1.0",
  2268. "nesbot/carbon": "^2.0",
  2269. "php": ">=8.1",
  2270. "psr/container": "^1.0 || ^2.0",
  2271. "psr/event-dispatcher": "^1.0"
  2272. },
  2273. "suggest": {
  2274. "doctrine/dbal": "Required to rename columns (^3.0).",
  2275. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2276. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2277. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2278. },
  2279. "type": "library",
  2280. "extra": {
  2281. "branch-alias": {
  2282. "dev-master": "3.1-dev"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\Database\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "A flexible database library.",
  2295. "homepage": "https://hyperf.io",
  2296. "keywords": [
  2297. "database",
  2298. "hyperf",
  2299. "php"
  2300. ],
  2301. "support": {
  2302. "docs": "https://hyperf.wiki",
  2303. "issues": "https://github.com/hyperf/hyperf/issues",
  2304. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2305. "source": "https://github.com/hyperf/hyperf"
  2306. },
  2307. "funding": [
  2308. {
  2309. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2310. "type": "custom"
  2311. },
  2312. {
  2313. "url": "https://opencollective.com/hyperf",
  2314. "type": "open_collective"
  2315. }
  2316. ],
  2317. "time": "2024-12-12T01:58:16+00:00"
  2318. },
  2319. {
  2320. "name": "hyperf/db-connection",
  2321. "version": "v3.1.44",
  2322. "source": {
  2323. "type": "git",
  2324. "url": "https://github.com/hyperf/db-connection.git",
  2325. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2326. },
  2327. "dist": {
  2328. "type": "zip",
  2329. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2330. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2331. "shasum": ""
  2332. },
  2333. "require": {
  2334. "hyperf/database": "~3.1.0",
  2335. "hyperf/di": "~3.1.0",
  2336. "hyperf/framework": "~3.1.0",
  2337. "hyperf/model-listener": "~3.1.0",
  2338. "hyperf/pool": "~3.1.0",
  2339. "hyperf/support": "~3.1.0",
  2340. "hyperf/utils": "~3.1.0",
  2341. "php": ">=8.1",
  2342. "psr/container": "^1.0 || ^2.0"
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-master": "3.1-dev"
  2348. },
  2349. "hyperf": {
  2350. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2351. }
  2352. },
  2353. "autoload": {
  2354. "psr-4": {
  2355. "Hyperf\\DbConnection\\": "src/"
  2356. }
  2357. },
  2358. "notification-url": "https://packagist.org/downloads/",
  2359. "license": [
  2360. "MIT"
  2361. ],
  2362. "description": "A hyperf db connection handler for hyperf/database.",
  2363. "homepage": "https://hyperf.io",
  2364. "keywords": [
  2365. "Connection",
  2366. "database",
  2367. "hyperf",
  2368. "php"
  2369. ],
  2370. "support": {
  2371. "docs": "https://hyperf.wiki",
  2372. "issues": "https://github.com/hyperf/hyperf/issues",
  2373. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2374. "source": "https://github.com/hyperf/hyperf"
  2375. },
  2376. "funding": [
  2377. {
  2378. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2379. "type": "custom"
  2380. },
  2381. {
  2382. "url": "https://opencollective.com/hyperf",
  2383. "type": "open_collective"
  2384. }
  2385. ],
  2386. "time": "2024-10-11T08:58:16+00:00"
  2387. },
  2388. {
  2389. "name": "hyperf/di",
  2390. "version": "v3.1.42",
  2391. "source": {
  2392. "type": "git",
  2393. "url": "https://github.com/hyperf/di.git",
  2394. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2395. },
  2396. "dist": {
  2397. "type": "zip",
  2398. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2399. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2400. "shasum": ""
  2401. },
  2402. "require": {
  2403. "doctrine/instantiator": "^1.0",
  2404. "hyperf/code-parser": "~3.1.0",
  2405. "hyperf/pipeline": "~3.1.0",
  2406. "hyperf/stdlib": "~3.1.0",
  2407. "hyperf/support": "~3.1.0",
  2408. "nikic/php-parser": "^4.1",
  2409. "php": ">=8.1",
  2410. "php-di/phpdoc-reader": "^2.2",
  2411. "psr/container": "^1.0 || ^2.0",
  2412. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2413. "vlucas/phpdotenv": "^5.0"
  2414. },
  2415. "suggest": {
  2416. "ext-pcntl": "Required to scan annotations.",
  2417. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2418. },
  2419. "type": "library",
  2420. "extra": {
  2421. "branch-alias": {
  2422. "dev-master": "3.1-dev"
  2423. },
  2424. "hyperf": {
  2425. "config": "Hyperf\\Di\\ConfigProvider"
  2426. }
  2427. },
  2428. "autoload": {
  2429. "psr-4": {
  2430. "Hyperf\\Di\\": "src/"
  2431. }
  2432. },
  2433. "notification-url": "https://packagist.org/downloads/",
  2434. "license": [
  2435. "MIT"
  2436. ],
  2437. "description": "A DI for Hyperf.",
  2438. "homepage": "https://hyperf.io",
  2439. "keywords": [
  2440. "annotation",
  2441. "di",
  2442. "hyperf",
  2443. "php",
  2444. "swoole"
  2445. ],
  2446. "support": {
  2447. "docs": "https://hyperf.wiki",
  2448. "issues": "https://github.com/hyperf/hyperf/issues",
  2449. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2450. "source": "https://github.com/hyperf/hyperf"
  2451. },
  2452. "funding": [
  2453. {
  2454. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2455. "type": "custom"
  2456. },
  2457. {
  2458. "url": "https://opencollective.com/hyperf",
  2459. "type": "open_collective"
  2460. }
  2461. ],
  2462. "time": "2024-09-25T02:54:12+00:00"
  2463. },
  2464. {
  2465. "name": "hyperf/dispatcher",
  2466. "version": "v3.1.42",
  2467. "source": {
  2468. "type": "git",
  2469. "url": "https://github.com/hyperf/dispatcher.git",
  2470. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2471. },
  2472. "dist": {
  2473. "type": "zip",
  2474. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2475. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2476. "shasum": ""
  2477. },
  2478. "require": {
  2479. "hyperf/contract": "~3.1.0",
  2480. "php": ">=8.1",
  2481. "psr/container": "^1.0 || ^2.0",
  2482. "psr/http-message": "^1.0 || ^2.0",
  2483. "psr/http-server-middleware": "^1.0"
  2484. },
  2485. "type": "library",
  2486. "extra": {
  2487. "branch-alias": {
  2488. "dev-master": "3.1-dev"
  2489. },
  2490. "hyperf": {
  2491. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2492. }
  2493. },
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Hyperf\\Dispatcher\\": "src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "description": "A HTTP Server for Hyperf.",
  2504. "homepage": "https://hyperf.io",
  2505. "keywords": [
  2506. "dispatcher",
  2507. "filter",
  2508. "hyperf",
  2509. "middleware",
  2510. "php",
  2511. "swoole"
  2512. ],
  2513. "support": {
  2514. "docs": "https://hyperf.wiki",
  2515. "issues": "https://github.com/hyperf/hyperf/issues",
  2516. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2517. "source": "https://github.com/hyperf/hyperf"
  2518. },
  2519. "funding": [
  2520. {
  2521. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2522. "type": "custom"
  2523. },
  2524. {
  2525. "url": "https://opencollective.com/hyperf",
  2526. "type": "open_collective"
  2527. }
  2528. ],
  2529. "time": "2024-09-25T02:54:12+00:00"
  2530. },
  2531. {
  2532. "name": "hyperf/engine",
  2533. "version": "v2.12.0",
  2534. "source": {
  2535. "type": "git",
  2536. "url": "https://github.com/hyperf/engine.git",
  2537. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a"
  2538. },
  2539. "dist": {
  2540. "type": "zip",
  2541. "url": "https://api.github.com/repos/hyperf/engine/zipball/f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2542. "reference": "f04115044ba0f483889b5849c5bc8045d3ab5b8a",
  2543. "shasum": ""
  2544. },
  2545. "require": {
  2546. "hyperf/engine-contract": "~1.11.0",
  2547. "php": ">=8.0"
  2548. },
  2549. "conflict": {
  2550. "ext-swoole": "<5.0"
  2551. },
  2552. "require-dev": {
  2553. "friendsofphp/php-cs-fixer": "^3.0",
  2554. "hyperf/guzzle": "^3.0",
  2555. "hyperf/http-message": "^3.0",
  2556. "mockery/mockery": "^1.5",
  2557. "phpstan/phpstan": "^1.0",
  2558. "phpunit/phpunit": "^9.4",
  2559. "swoole/ide-helper": "5.*"
  2560. },
  2561. "suggest": {
  2562. "ext-sockets": "*",
  2563. "ext-swoole": ">=5.0",
  2564. "hyperf/http-message": "Required to use ResponseEmitter.",
  2565. "psr/http-message": "Required to use WebSocket Frame."
  2566. },
  2567. "type": "library",
  2568. "extra": {
  2569. "branch-alias": {
  2570. "dev-master": "2.12-dev"
  2571. },
  2572. "hyperf": {
  2573. "config": "Hyperf\\Engine\\ConfigProvider"
  2574. }
  2575. },
  2576. "autoload": {
  2577. "files": [
  2578. "src/Functions.php"
  2579. ],
  2580. "psr-4": {
  2581. "Hyperf\\Engine\\": "src/"
  2582. }
  2583. },
  2584. "notification-url": "https://packagist.org/downloads/",
  2585. "license": [
  2586. "MIT"
  2587. ],
  2588. "description": "Coroutine engine provided by swoole.",
  2589. "keywords": [
  2590. "engine",
  2591. "hyperf",
  2592. "php",
  2593. "swoole"
  2594. ],
  2595. "support": {
  2596. "issues": "https://github.com/hyperf/engine/issues",
  2597. "source": "https://github.com/hyperf/engine/tree/v2.12.0"
  2598. },
  2599. "funding": [
  2600. {
  2601. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2602. "type": "custom"
  2603. },
  2604. {
  2605. "url": "https://opencollective.com/hyperf",
  2606. "type": "open_collective"
  2607. }
  2608. ],
  2609. "time": "2024-11-19T04:32:29+00:00"
  2610. },
  2611. {
  2612. "name": "hyperf/engine-contract",
  2613. "version": "v1.11.0",
  2614. "source": {
  2615. "type": "git",
  2616. "url": "https://github.com/hyperf/engine-contract.git",
  2617. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15"
  2618. },
  2619. "dist": {
  2620. "type": "zip",
  2621. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/d478052ed1c5304eef7be68aae6cf42392611a15",
  2622. "reference": "d478052ed1c5304eef7be68aae6cf42392611a15",
  2623. "shasum": ""
  2624. },
  2625. "require": {
  2626. "php": ">=8.0"
  2627. },
  2628. "require-dev": {
  2629. "friendsofphp/php-cs-fixer": "^3.0",
  2630. "mockery/mockery": "^1.0",
  2631. "phpstan/phpstan": "^1.0",
  2632. "phpunit/phpunit": ">=7.0",
  2633. "psr/http-message": "^1.0",
  2634. "swoole/ide-helper": "^4.5"
  2635. },
  2636. "suggest": {
  2637. "psr/http-message": "Required to use WebSocket Frame."
  2638. },
  2639. "type": "library",
  2640. "extra": {
  2641. "branch-alias": {
  2642. "dev-master": "1.9-dev"
  2643. }
  2644. },
  2645. "autoload": {
  2646. "psr-4": {
  2647. "Hyperf\\Engine\\Contract\\": "src/"
  2648. }
  2649. },
  2650. "notification-url": "https://packagist.org/downloads/",
  2651. "license": [
  2652. "MIT"
  2653. ],
  2654. "description": "Contract for Coroutine Engine",
  2655. "keywords": [
  2656. "contract",
  2657. "coroutine",
  2658. "engine",
  2659. "hyperf",
  2660. "php"
  2661. ],
  2662. "support": {
  2663. "issues": "https://github.com/hyperf/engine-contract/issues",
  2664. "source": "https://github.com/hyperf/engine-contract/tree/v1.11.0"
  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-11-19T04:15:31+00:00"
  2677. },
  2678. {
  2679. "name": "hyperf/event",
  2680. "version": "v3.1.42",
  2681. "source": {
  2682. "type": "git",
  2683. "url": "https://github.com/hyperf/event.git",
  2684. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2685. },
  2686. "dist": {
  2687. "type": "zip",
  2688. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2689. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2690. "shasum": ""
  2691. },
  2692. "require": {
  2693. "hyperf/contract": "~3.1.0",
  2694. "hyperf/stdlib": "~3.1.0",
  2695. "php": ">=8.1",
  2696. "psr/event-dispatcher": "^1.0"
  2697. },
  2698. "suggest": {
  2699. "hyperf/di": "Required to use annotatioins."
  2700. },
  2701. "type": "library",
  2702. "extra": {
  2703. "branch-alias": {
  2704. "dev-master": "3.1-dev"
  2705. },
  2706. "hyperf": {
  2707. "config": "Hyperf\\Event\\ConfigProvider"
  2708. }
  2709. },
  2710. "autoload": {
  2711. "psr-4": {
  2712. "Hyperf\\Event\\": "src/"
  2713. }
  2714. },
  2715. "notification-url": "https://packagist.org/downloads/",
  2716. "license": [
  2717. "MIT"
  2718. ],
  2719. "description": "an event manager that implements PSR-14.",
  2720. "homepage": "https://hyperf.io",
  2721. "keywords": [
  2722. "event",
  2723. "hyperf",
  2724. "php",
  2725. "swoole"
  2726. ],
  2727. "support": {
  2728. "docs": "https://hyperf.wiki",
  2729. "issues": "https://github.com/hyperf/hyperf/issues",
  2730. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2731. "source": "https://github.com/hyperf/hyperf"
  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-09-25T02:54:12+00:00"
  2744. },
  2745. {
  2746. "name": "hyperf/exception-handler",
  2747. "version": "v3.1.42",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/hyperf/exception-handler.git",
  2751. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2756. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "hyperf/context": "~3.1.0",
  2761. "hyperf/contract": "~3.1.0",
  2762. "hyperf/dispatcher": "~3.1.0",
  2763. "hyperf/http-message": "~3.1.0",
  2764. "hyperf/stdlib": "~3.1.0",
  2765. "hyperf/support": "~3.1.0",
  2766. "php": ">=8.1",
  2767. "psr/container": "^1.0 || ^2.0",
  2768. "psr/http-message": "^1.0 || ^2.0",
  2769. "swow/psr7-plus": "^1.0"
  2770. },
  2771. "suggest": {
  2772. "hyperf/di": "Required to use #[ExceptionHandler]",
  2773. "hyperf/event": "Required to use listeners",
  2774. "hyperf/framework": "Required to use listeners",
  2775. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2776. },
  2777. "type": "library",
  2778. "extra": {
  2779. "branch-alias": {
  2780. "dev-master": "3.1-dev"
  2781. },
  2782. "hyperf": {
  2783. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2784. }
  2785. },
  2786. "autoload": {
  2787. "psr-4": {
  2788. "Hyperf\\ExceptionHandler\\": "src/"
  2789. }
  2790. },
  2791. "notification-url": "https://packagist.org/downloads/",
  2792. "license": [
  2793. "MIT"
  2794. ],
  2795. "description": "Exception handler for hyperf",
  2796. "homepage": "https://hyperf.io",
  2797. "keywords": [
  2798. "exception-handler",
  2799. "php",
  2800. "swoole"
  2801. ],
  2802. "support": {
  2803. "docs": "https://hyperf.wiki",
  2804. "issues": "https://github.com/hyperf/hyperf/issues",
  2805. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2806. "source": "https://github.com/hyperf/hyperf"
  2807. },
  2808. "funding": [
  2809. {
  2810. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2811. "type": "custom"
  2812. },
  2813. {
  2814. "url": "https://opencollective.com/hyperf",
  2815. "type": "open_collective"
  2816. }
  2817. ],
  2818. "time": "2024-09-25T02:54:12+00:00"
  2819. },
  2820. {
  2821. "name": "hyperf/framework",
  2822. "version": "v3.1.42",
  2823. "source": {
  2824. "type": "git",
  2825. "url": "https://github.com/hyperf/framework.git",
  2826. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2827. },
  2828. "dist": {
  2829. "type": "zip",
  2830. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2831. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2832. "shasum": ""
  2833. },
  2834. "require": {
  2835. "fig/http-message-util": "^1.1.2",
  2836. "hyperf/contract": "~3.1.0",
  2837. "hyperf/coordinator": "~3.1.0",
  2838. "hyperf/coroutine": "~3.1.0",
  2839. "php": ">=8.1",
  2840. "psr/container": "^1.0 || ^2.0",
  2841. "psr/event-dispatcher": "^1.0",
  2842. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2843. },
  2844. "suggest": {
  2845. "ext-swoole": "Required to use swoole engine.",
  2846. "hyperf/command": "Required to use Command annotation.",
  2847. "hyperf/di": "Required to use Command annotation.",
  2848. "hyperf/dispatcher": "Required to use BootApplication event.",
  2849. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "branch-alias": {
  2854. "dev-master": "3.1-dev"
  2855. },
  2856. "hyperf": {
  2857. "config": "Hyperf\\Framework\\ConfigProvider"
  2858. }
  2859. },
  2860. "autoload": {
  2861. "psr-4": {
  2862. "Hyperf\\Framework\\": "src/"
  2863. }
  2864. },
  2865. "notification-url": "https://packagist.org/downloads/",
  2866. "license": [
  2867. "MIT"
  2868. ],
  2869. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2870. "homepage": "https://hyperf.io",
  2871. "keywords": [
  2872. "Microservice",
  2873. "framework",
  2874. "hyperf",
  2875. "middleware",
  2876. "php",
  2877. "swoole"
  2878. ],
  2879. "support": {
  2880. "docs": "https://hyperf.wiki",
  2881. "issues": "https://github.com/hyperf/hyperf/issues",
  2882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2883. "source": "https://github.com/hyperf/hyperf"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2888. "type": "custom"
  2889. },
  2890. {
  2891. "url": "https://opencollective.com/hyperf",
  2892. "type": "open_collective"
  2893. }
  2894. ],
  2895. "time": "2024-09-25T02:54:12+00:00"
  2896. },
  2897. {
  2898. "name": "hyperf/guzzle",
  2899. "version": "v3.1.42",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/hyperf/guzzle.git",
  2903. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2908. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2913. "php": ">=8.1",
  2914. "psr/container": "^1.0 || ^2.0",
  2915. "psr/http-message": "^1.0 || ^2.0"
  2916. },
  2917. "suggest": {
  2918. "ext-curl": "Required for CURL handler support",
  2919. "hyperf/pool": "Required to use pool handler."
  2920. },
  2921. "type": "library",
  2922. "extra": {
  2923. "branch-alias": {
  2924. "dev-master": "3.1-dev"
  2925. },
  2926. "hyperf": {
  2927. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2928. }
  2929. },
  2930. "autoload": {
  2931. "psr-4": {
  2932. "Hyperf\\Guzzle\\": "src/"
  2933. }
  2934. },
  2935. "notification-url": "https://packagist.org/downloads/",
  2936. "license": [
  2937. "MIT"
  2938. ],
  2939. "description": "Swoole coroutine handler for guzzle",
  2940. "keywords": [
  2941. "Guzzle",
  2942. "handler",
  2943. "php",
  2944. "swoole"
  2945. ],
  2946. "support": {
  2947. "issues": "https://github.com/hyperf/guzzle/issues",
  2948. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2949. },
  2950. "funding": [
  2951. {
  2952. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2953. "type": "custom"
  2954. },
  2955. {
  2956. "url": "https://opencollective.com/hyperf",
  2957. "type": "open_collective"
  2958. }
  2959. ],
  2960. "time": "2024-09-25T02:54:12+00:00"
  2961. },
  2962. {
  2963. "name": "hyperf/http-message",
  2964. "version": "v3.1.48",
  2965. "source": {
  2966. "type": "git",
  2967. "url": "https://github.com/hyperf/http-message.git",
  2968. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2969. },
  2970. "dist": {
  2971. "type": "zip",
  2972. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2973. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2974. "shasum": ""
  2975. },
  2976. "require": {
  2977. "hyperf/codec": "~3.1.0",
  2978. "hyperf/engine": "^2.11",
  2979. "hyperf/support": "~3.1.0",
  2980. "laminas/laminas-mime": "^2.7",
  2981. "php": ">=8.1",
  2982. "psr/http-message": "^1.0 || ^2.0",
  2983. "swow/psr7-plus": "^1.0"
  2984. },
  2985. "suggest": {
  2986. "psr/container": "Required to replace RequestParserInterface."
  2987. },
  2988. "type": "library",
  2989. "extra": {
  2990. "hyperf": {
  2991. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2992. },
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. }
  2996. },
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Hyperf\\HttpMessage\\": "src/"
  3000. }
  3001. },
  3002. "notification-url": "https://packagist.org/downloads/",
  3003. "license": [
  3004. "MIT"
  3005. ],
  3006. "description": "microservice framework base on swoole",
  3007. "keywords": [
  3008. "http-message",
  3009. "hyperf",
  3010. "php",
  3011. "swoole"
  3012. ],
  3013. "support": {
  3014. "issues": "https://github.com/hyperf/http-message/issues",
  3015. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  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-12-05T02:41:08+00:00"
  3028. },
  3029. {
  3030. "name": "hyperf/http-server",
  3031. "version": "v3.1.42",
  3032. "source": {
  3033. "type": "git",
  3034. "url": "https://github.com/hyperf/http-server.git",
  3035. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3036. },
  3037. "dist": {
  3038. "type": "zip",
  3039. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3040. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3041. "shasum": ""
  3042. },
  3043. "require": {
  3044. "hyperf/codec": "~3.1.0",
  3045. "hyperf/collection": "~3.1.0",
  3046. "hyperf/context": "~3.1.0",
  3047. "hyperf/contract": "~3.1.0",
  3048. "hyperf/coroutine": "~3.1.0",
  3049. "hyperf/dispatcher": "~3.1.0",
  3050. "hyperf/event": "~3.1.0",
  3051. "hyperf/exception-handler": "~3.1.0",
  3052. "hyperf/http-message": "~3.1.0",
  3053. "hyperf/macroable": "~3.1.0",
  3054. "hyperf/serializer": "~3.1.0",
  3055. "hyperf/server": "~3.1.0",
  3056. "hyperf/stdlib": "~3.1.0",
  3057. "hyperf/support": "~3.1.0",
  3058. "nikic/fast-route": "^1.3",
  3059. "php": ">=8.1",
  3060. "psr/container": "^1.0 || ^2.0",
  3061. "swow/psr7-plus": "^1.0"
  3062. },
  3063. "suggest": {
  3064. "hyperf/di": "Required to use annotations."
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "branch-alias": {
  3069. "dev-master": "3.1-dev"
  3070. },
  3071. "hyperf": {
  3072. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3073. }
  3074. },
  3075. "autoload": {
  3076. "psr-4": {
  3077. "Hyperf\\HttpServer\\": "src/"
  3078. }
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "description": "A HTTP Server for Hyperf.",
  3085. "homepage": "https://hyperf.io",
  3086. "keywords": [
  3087. "http",
  3088. "http-server",
  3089. "hyperf",
  3090. "php",
  3091. "swoole"
  3092. ],
  3093. "support": {
  3094. "docs": "https://hyperf.wiki",
  3095. "issues": "https://github.com/hyperf/hyperf/issues",
  3096. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3097. "source": "https://github.com/hyperf/hyperf"
  3098. },
  3099. "funding": [
  3100. {
  3101. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3102. "type": "custom"
  3103. },
  3104. {
  3105. "url": "https://opencollective.com/hyperf",
  3106. "type": "open_collective"
  3107. }
  3108. ],
  3109. "time": "2024-09-25T02:54:12+00:00"
  3110. },
  3111. {
  3112. "name": "hyperf/json-rpc",
  3113. "version": "v3.1.47",
  3114. "source": {
  3115. "type": "git",
  3116. "url": "https://github.com/hyperf/json-rpc.git",
  3117. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  3118. },
  3119. "dist": {
  3120. "type": "zip",
  3121. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3122. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  3123. "shasum": ""
  3124. },
  3125. "require": {
  3126. "hyperf/codec": "~3.1.0",
  3127. "hyperf/context": "~3.1.0",
  3128. "hyperf/contract": "~3.1.0",
  3129. "hyperf/engine": "^2.0",
  3130. "hyperf/http-message": "~3.1.0",
  3131. "hyperf/load-balancer": "~3.1.0",
  3132. "hyperf/rpc": "~3.1.0",
  3133. "hyperf/serializer": "~3.1.0",
  3134. "hyperf/support": "~3.1.0",
  3135. "hyperf/utils": "~3.1.0",
  3136. "php": ">=8.1",
  3137. "psr/container": "^1.0 || ^2.0",
  3138. "swow/psr7-plus": "^1.0"
  3139. },
  3140. "suggest": {
  3141. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3142. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3143. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3144. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3145. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3146. },
  3147. "type": "library",
  3148. "extra": {
  3149. "hyperf": {
  3150. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3151. },
  3152. "branch-alias": {
  3153. "dev-master": "3.1-dev"
  3154. }
  3155. },
  3156. "autoload": {
  3157. "psr-4": {
  3158. "Hyperf\\JsonRpc\\": "src/"
  3159. }
  3160. },
  3161. "notification-url": "https://packagist.org/downloads/",
  3162. "license": [
  3163. "MIT"
  3164. ],
  3165. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3166. "homepage": "https://hyperf.io",
  3167. "keywords": [
  3168. "hyperf",
  3169. "json-rpc",
  3170. "php",
  3171. "swoole"
  3172. ],
  3173. "support": {
  3174. "docs": "https://hyperf.wiki",
  3175. "issues": "https://github.com/hyperf/hyperf/issues",
  3176. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3177. "source": "https://github.com/hyperf/hyperf"
  3178. },
  3179. "funding": [
  3180. {
  3181. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3182. "type": "custom"
  3183. },
  3184. {
  3185. "url": "https://opencollective.com/hyperf",
  3186. "type": "open_collective"
  3187. }
  3188. ],
  3189. "time": "2024-11-28T01:51:55+00:00"
  3190. },
  3191. {
  3192. "name": "hyperf/load-balancer",
  3193. "version": "v3.1.42",
  3194. "source": {
  3195. "type": "git",
  3196. "url": "https://github.com/hyperf/load-balancer.git",
  3197. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3198. },
  3199. "dist": {
  3200. "type": "zip",
  3201. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3202. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3203. "shasum": ""
  3204. },
  3205. "require": {
  3206. "hyperf/coordinator": "~3.1.0",
  3207. "hyperf/coroutine": "~3.1.0",
  3208. "markrogoyski/math-php": "^2.0",
  3209. "php": ">=8.1",
  3210. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3211. },
  3212. "type": "library",
  3213. "extra": {
  3214. "branch-alias": {
  3215. "dev-master": "3.1-dev"
  3216. },
  3217. "hyperf": {
  3218. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3219. }
  3220. },
  3221. "autoload": {
  3222. "psr-4": {
  3223. "Hyperf\\LoadBalancer\\": "src/"
  3224. }
  3225. },
  3226. "notification-url": "https://packagist.org/downloads/",
  3227. "license": [
  3228. "MIT"
  3229. ],
  3230. "description": "A load balancer library for Hyperf.",
  3231. "homepage": "https://hyperf.io",
  3232. "keywords": [
  3233. "hyperf",
  3234. "load-balancer",
  3235. "php",
  3236. "swoole"
  3237. ],
  3238. "support": {
  3239. "docs": "https://hyperf.wiki",
  3240. "issues": "https://github.com/hyperf/hyperf/issues",
  3241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3242. "source": "https://github.com/hyperf/hyperf"
  3243. },
  3244. "funding": [
  3245. {
  3246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3247. "type": "custom"
  3248. },
  3249. {
  3250. "url": "https://opencollective.com/hyperf",
  3251. "type": "open_collective"
  3252. }
  3253. ],
  3254. "time": "2024-09-25T02:54:12+00:00"
  3255. },
  3256. {
  3257. "name": "hyperf/logger",
  3258. "version": "v3.1.42",
  3259. "source": {
  3260. "type": "git",
  3261. "url": "https://github.com/hyperf/logger.git",
  3262. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3263. },
  3264. "dist": {
  3265. "type": "zip",
  3266. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3267. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3268. "shasum": ""
  3269. },
  3270. "require": {
  3271. "hyperf/contract": "~3.1.0",
  3272. "hyperf/support": "~3.1.0",
  3273. "hyperf/utils": "~3.1.0",
  3274. "monolog/monolog": "^2.7 || ^3.1",
  3275. "php": ">=8.1",
  3276. "psr/container": "^1.0 || ^2.0",
  3277. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3278. },
  3279. "type": "library",
  3280. "extra": {
  3281. "branch-alias": {
  3282. "dev-master": "3.1-dev"
  3283. },
  3284. "hyperf": {
  3285. "config": "Hyperf\\Logger\\ConfigProvider"
  3286. }
  3287. },
  3288. "autoload": {
  3289. "psr-4": {
  3290. "Hyperf\\Logger\\": "src/"
  3291. }
  3292. },
  3293. "notification-url": "https://packagist.org/downloads/",
  3294. "license": [
  3295. "MIT"
  3296. ],
  3297. "description": "A logger component for hyperf.",
  3298. "homepage": "https://hyperf.io",
  3299. "keywords": [
  3300. "hyperf",
  3301. "logger",
  3302. "php"
  3303. ],
  3304. "support": {
  3305. "docs": "https://hyperf.wiki",
  3306. "issues": "https://github.com/hyperf/hyperf/issues",
  3307. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3308. "source": "https://github.com/hyperf/hyperf"
  3309. },
  3310. "funding": [
  3311. {
  3312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3313. "type": "custom"
  3314. },
  3315. {
  3316. "url": "https://opencollective.com/hyperf",
  3317. "type": "open_collective"
  3318. }
  3319. ],
  3320. "time": "2024-09-25T02:54:12+00:00"
  3321. },
  3322. {
  3323. "name": "hyperf/macroable",
  3324. "version": "v3.1.42",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/hyperf/macroable.git",
  3328. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3333. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "php": ">=8.1"
  3338. },
  3339. "type": "library",
  3340. "extra": {
  3341. "branch-alias": {
  3342. "dev-master": "3.1-dev"
  3343. }
  3344. },
  3345. "autoload": {
  3346. "psr-4": {
  3347. "Hyperf\\Macroable\\": "src/"
  3348. }
  3349. },
  3350. "notification-url": "https://packagist.org/downloads/",
  3351. "license": [
  3352. "MIT"
  3353. ],
  3354. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3355. "homepage": "https://hyperf.io",
  3356. "keywords": [
  3357. "hyperf",
  3358. "macroable",
  3359. "php",
  3360. "swoole"
  3361. ],
  3362. "support": {
  3363. "docs": "https://hyperf.wiki",
  3364. "issues": "https://github.com/hyperf/hyperf/issues",
  3365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3366. "source": "https://github.com/hyperf/hyperf"
  3367. },
  3368. "funding": [
  3369. {
  3370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3371. "type": "custom"
  3372. },
  3373. {
  3374. "url": "https://opencollective.com/hyperf",
  3375. "type": "open_collective"
  3376. }
  3377. ],
  3378. "time": "2024-09-25T02:54:12+00:00"
  3379. },
  3380. {
  3381. "name": "hyperf/memory",
  3382. "version": "v3.1.42",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/hyperf/memory.git",
  3386. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3391. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "php": ">=8.1"
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "branch-alias": {
  3400. "dev-master": "3.1-dev"
  3401. },
  3402. "hyperf": {
  3403. "config": "Hyperf\\Memory\\ConfigProvider"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "Hyperf\\Memory\\": "src/"
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "description": "An independent component that use to operate and manage memory.",
  3416. "homepage": "https://hyperf.io",
  3417. "keywords": [
  3418. "hyperf",
  3419. "memory",
  3420. "php",
  3421. "swoole"
  3422. ],
  3423. "support": {
  3424. "docs": "https://hyperf.wiki",
  3425. "issues": "https://github.com/hyperf/hyperf/issues",
  3426. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3427. "source": "https://github.com/hyperf/hyperf"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3432. "type": "custom"
  3433. },
  3434. {
  3435. "url": "https://opencollective.com/hyperf",
  3436. "type": "open_collective"
  3437. }
  3438. ],
  3439. "time": "2024-09-25T02:54:12+00:00"
  3440. },
  3441. {
  3442. "name": "hyperf/model-listener",
  3443. "version": "v3.1.42",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/hyperf/model-listener.git",
  3447. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3452. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "hyperf/contract": "~3.1.0",
  3457. "hyperf/database": "~3.1.0",
  3458. "hyperf/di": "~3.1.0",
  3459. "hyperf/event": "~3.1.0",
  3460. "hyperf/support": "~3.1.0",
  3461. "hyperf/utils": "~3.1.0",
  3462. "php": ">=8.1",
  3463. "psr/container": "^1.0 || ^2.0"
  3464. },
  3465. "type": "library",
  3466. "extra": {
  3467. "branch-alias": {
  3468. "dev-master": "3.1-dev"
  3469. },
  3470. "hyperf": {
  3471. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3472. }
  3473. },
  3474. "autoload": {
  3475. "psr-4": {
  3476. "Hyperf\\ModelListener\\": "src/"
  3477. }
  3478. },
  3479. "notification-url": "https://packagist.org/downloads/",
  3480. "license": [
  3481. "MIT"
  3482. ],
  3483. "description": "A model listener for Hyperf.",
  3484. "homepage": "https://hyperf.io",
  3485. "keywords": [
  3486. "hyperf",
  3487. "model-listener",
  3488. "php",
  3489. "swoole"
  3490. ],
  3491. "support": {
  3492. "docs": "https://hyperf.wiki",
  3493. "issues": "https://github.com/hyperf/hyperf/issues",
  3494. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3495. "source": "https://github.com/hyperf/hyperf"
  3496. },
  3497. "funding": [
  3498. {
  3499. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3500. "type": "custom"
  3501. },
  3502. {
  3503. "url": "https://opencollective.com/hyperf",
  3504. "type": "open_collective"
  3505. }
  3506. ],
  3507. "time": "2024-09-25T02:54:12+00:00"
  3508. },
  3509. {
  3510. "name": "hyperf/nacos",
  3511. "version": "v3.1.42",
  3512. "source": {
  3513. "type": "git",
  3514. "url": "https://github.com/hyperf/nacos.git",
  3515. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3516. },
  3517. "dist": {
  3518. "type": "zip",
  3519. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3520. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3521. "shasum": ""
  3522. },
  3523. "require": {
  3524. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3525. "hyperf/codec": "~3.1.0",
  3526. "hyperf/contract": "~3.1.0",
  3527. "hyperf/support": "~3.1.0",
  3528. "hyperf/utils": "~3.1.0",
  3529. "jetbrains/phpstorm-attributes": "^1.0",
  3530. "php": ">=8.1"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "branch-alias": {
  3535. "dev-master": "3.1-dev"
  3536. },
  3537. "hyperf": {
  3538. "config": "Hyperf\\Nacos\\ConfigProvider"
  3539. }
  3540. },
  3541. "autoload": {
  3542. "psr-4": {
  3543. "Hyperf\\Nacos\\": "src/"
  3544. }
  3545. },
  3546. "notification-url": "https://packagist.org/downloads/",
  3547. "license": [
  3548. "MIT"
  3549. ],
  3550. "description": "Nacos SDK",
  3551. "keywords": [
  3552. "hyperf",
  3553. "nacos",
  3554. "php"
  3555. ],
  3556. "support": {
  3557. "issues": "https://github.com/hyperf/nacos/issues",
  3558. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3559. },
  3560. "funding": [
  3561. {
  3562. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3563. "type": "custom"
  3564. },
  3565. {
  3566. "url": "https://opencollective.com/hyperf",
  3567. "type": "open_collective"
  3568. }
  3569. ],
  3570. "time": "2024-09-25T02:54:12+00:00"
  3571. },
  3572. {
  3573. "name": "hyperf/pipeline",
  3574. "version": "v3.1.42",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/hyperf/pipeline.git",
  3578. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3583. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3584. "shasum": ""
  3585. },
  3586. "require": {
  3587. "php": ">=8.1",
  3588. "psr/container": "^1.0 || ^2.0"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "branch-alias": {
  3593. "dev-master": "3.1-dev"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "psr-4": {
  3598. "Hyperf\\Pipeline\\": "src/"
  3599. }
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3606. "homepage": "https://hyperf.io",
  3607. "keywords": [
  3608. "hyperf",
  3609. "php",
  3610. "pipeline",
  3611. "swoole"
  3612. ],
  3613. "support": {
  3614. "docs": "https://hyperf.wiki",
  3615. "issues": "https://github.com/hyperf/hyperf/issues",
  3616. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3617. "source": "https://github.com/hyperf/hyperf"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://opencollective.com/hyperf",
  3626. "type": "open_collective"
  3627. }
  3628. ],
  3629. "time": "2024-09-25T02:54:12+00:00"
  3630. },
  3631. {
  3632. "name": "hyperf/pool",
  3633. "version": "v3.1.42",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/hyperf/pool.git",
  3637. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3642. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "hyperf/contract": "~3.1.0",
  3647. "hyperf/support": "~3.1.0",
  3648. "hyperf/utils": "~3.1.0",
  3649. "php": ">=8.1",
  3650. "psr/container": "^1.0 || ^2.0"
  3651. },
  3652. "suggest": {
  3653. "psr/event-dispatcher": "Required to use events."
  3654. },
  3655. "type": "library",
  3656. "extra": {
  3657. "branch-alias": {
  3658. "dev-master": "3.1-dev"
  3659. },
  3660. "hyperf": {
  3661. "config": "Hyperf\\Pool\\ConfigProvider"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Hyperf\\Pool\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "description": "An independent universal connection pool component.",
  3674. "homepage": "https://hyperf.io",
  3675. "keywords": [
  3676. "connection-pool",
  3677. "hyperf",
  3678. "php",
  3679. "swoole"
  3680. ],
  3681. "support": {
  3682. "docs": "https://hyperf.wiki",
  3683. "issues": "https://github.com/hyperf/hyperf/issues",
  3684. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3685. "source": "https://github.com/hyperf/hyperf"
  3686. },
  3687. "funding": [
  3688. {
  3689. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3690. "type": "custom"
  3691. },
  3692. {
  3693. "url": "https://opencollective.com/hyperf",
  3694. "type": "open_collective"
  3695. }
  3696. ],
  3697. "time": "2024-09-25T02:54:12+00:00"
  3698. },
  3699. {
  3700. "name": "hyperf/process",
  3701. "version": "v3.1.48",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/hyperf/process.git",
  3705. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3710. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "hyperf/contract": "~3.1.0",
  3715. "hyperf/support": "~3.1.0",
  3716. "hyperf/utils": "~3.1.0",
  3717. "php": ">=8.1",
  3718. "psr/container": "^1.0 || ^2.0",
  3719. "psr/event-dispatcher": "^1.0"
  3720. },
  3721. "suggest": {
  3722. "hyperf/di": "Required to use annotations.",
  3723. "hyperf/event": "Required to dump the message before and after process.",
  3724. "hyperf/framework": "Required to use BootProcessListener."
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "hyperf": {
  3729. "config": "Hyperf\\Process\\ConfigProvider"
  3730. },
  3731. "branch-alias": {
  3732. "dev-master": "3.1-dev"
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Hyperf\\Process\\": "src/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "description": "A process component for hyperf.",
  3745. "homepage": "https://hyperf.io",
  3746. "keywords": [
  3747. "hyperf",
  3748. "php",
  3749. "process"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-12-02T10:54:30+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/redis",
  3771. "version": "v3.1.42",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/redis.git",
  3775. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3780. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "ext-redis": "^5.0 || ^6.0",
  3785. "hyperf/contract": "~3.1.0",
  3786. "hyperf/pool": "~3.1.0",
  3787. "hyperf/support": "~3.1.0",
  3788. "hyperf/tappable": "~3.1.0",
  3789. "hyperf/utils": "~3.1.0",
  3790. "php": ">=8.1",
  3791. "psr/container": "^1.0 || ^2.0"
  3792. },
  3793. "suggest": {
  3794. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3795. "hyperf/di": "Create the RedisPool via dependency injection."
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "3.1-dev"
  3801. },
  3802. "hyperf": {
  3803. "config": "Hyperf\\Redis\\ConfigProvider"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Hyperf\\Redis\\": "src/"
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "description": "A redis component for hyperf.",
  3816. "homepage": "https://hyperf.io",
  3817. "keywords": [
  3818. "hyperf",
  3819. "php",
  3820. "pool",
  3821. "redis"
  3822. ],
  3823. "support": {
  3824. "docs": "https://hyperf.wiki",
  3825. "issues": "https://github.com/hyperf/hyperf/issues",
  3826. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3827. "source": "https://github.com/hyperf/hyperf"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://opencollective.com/hyperf",
  3836. "type": "open_collective"
  3837. }
  3838. ],
  3839. "time": "2024-09-25T02:54:12+00:00"
  3840. },
  3841. {
  3842. "name": "hyperf/rpc",
  3843. "version": "v3.1.42",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/hyperf/rpc.git",
  3847. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3852. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "hyperf/codec": "~3.1.0",
  3857. "hyperf/contract": "~3.1.0",
  3858. "hyperf/support": "~3.1.0",
  3859. "jetbrains/phpstorm-attributes": "^1.0",
  3860. "php": ">=8.1"
  3861. },
  3862. "type": "library",
  3863. "extra": {
  3864. "branch-alias": {
  3865. "dev-master": "3.1-dev"
  3866. },
  3867. "hyperf": []
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\Rpc\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A rpc basic library for Hyperf.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "php",
  3883. "rpc",
  3884. "swoole"
  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/rpc-client",
  3906. "version": "v3.1.42",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/rpc-client.git",
  3910. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3915. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "hyperf/code-parser": "~3.1.0",
  3920. "hyperf/load-balancer": "~3.1.0",
  3921. "hyperf/rpc": "~3.1.0",
  3922. "hyperf/support": "~3.1.0",
  3923. "hyperf/utils": "~3.1.0",
  3924. "jetbrains/phpstorm-attributes": "^1.0",
  3925. "php": ">=8.1",
  3926. "psr/container": "^1.0 || ^2.0"
  3927. },
  3928. "suggest": {
  3929. "hyperf/di": "For better container experience.",
  3930. "hyperf/pool": "Required to use connection pool.",
  3931. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "branch-alias": {
  3936. "dev-master": "3.1-dev"
  3937. },
  3938. "hyperf": {
  3939. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3940. }
  3941. },
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Hyperf\\RpcClient\\": "src/"
  3945. }
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "description": "An abstract rpc server component for Hyperf.",
  3952. "homepage": "https://hyperf.io",
  3953. "keywords": [
  3954. "hyperf",
  3955. "json-rpc",
  3956. "php",
  3957. "rpc",
  3958. "rpc-client",
  3959. "swoole"
  3960. ],
  3961. "support": {
  3962. "docs": "https://hyperf.wiki",
  3963. "issues": "https://github.com/hyperf/hyperf/issues",
  3964. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3965. "source": "https://github.com/hyperf/hyperf"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3970. "type": "custom"
  3971. },
  3972. {
  3973. "url": "https://opencollective.com/hyperf",
  3974. "type": "open_collective"
  3975. }
  3976. ],
  3977. "time": "2024-09-25T02:54:12+00:00"
  3978. },
  3979. {
  3980. "name": "hyperf/rpc-server",
  3981. "version": "v3.1.42",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/hyperf/rpc-server.git",
  3985. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3990. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "hyperf/http-server": "~3.1.0",
  3995. "hyperf/rpc": "~3.1.0",
  3996. "php": ">=8.1"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "Required to use annotations."
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "3.1-dev"
  4005. },
  4006. "hyperf": {
  4007. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Hyperf\\RpcServer\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "description": "An abstract rpc server component for Hyperf.",
  4020. "homepage": "https://hyperf.io",
  4021. "keywords": [
  4022. "hyperf",
  4023. "php",
  4024. "rpc",
  4025. "rpc-server",
  4026. "swoole"
  4027. ],
  4028. "support": {
  4029. "docs": "https://hyperf.wiki",
  4030. "issues": "https://github.com/hyperf/hyperf/issues",
  4031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4032. "source": "https://github.com/hyperf/hyperf"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4037. "type": "custom"
  4038. },
  4039. {
  4040. "url": "https://opencollective.com/hyperf",
  4041. "type": "open_collective"
  4042. }
  4043. ],
  4044. "time": "2024-09-25T02:54:12+00:00"
  4045. },
  4046. {
  4047. "name": "hyperf/serializer",
  4048. "version": "v3.1.42",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/hyperf/serializer.git",
  4052. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4057. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "hyperf/contract": "~3.1.0",
  4062. "php": ">=8.1"
  4063. },
  4064. "suggest": {
  4065. "hyperf/di": "Required to use ExceptionNormalizer",
  4066. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4067. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4068. },
  4069. "type": "library",
  4070. "extra": {
  4071. "branch-alias": {
  4072. "dev-master": "3.1-dev"
  4073. },
  4074. "hyperf": {
  4075. "config": "Hyperf\\Serializer\\ConfigProvider"
  4076. }
  4077. },
  4078. "autoload": {
  4079. "psr-4": {
  4080. "Hyperf\\Serializer\\": "src/"
  4081. }
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "description": "A serializer component for Hyperf.",
  4088. "homepage": "https://hyperf.io",
  4089. "keywords": [
  4090. "hyperf",
  4091. "php",
  4092. "swoole",
  4093. "tappable"
  4094. ],
  4095. "support": {
  4096. "docs": "https://hyperf.wiki",
  4097. "issues": "https://github.com/hyperf/hyperf/issues",
  4098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4099. "source": "https://github.com/hyperf/hyperf"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4104. "type": "custom"
  4105. },
  4106. {
  4107. "url": "https://opencollective.com/hyperf",
  4108. "type": "open_collective"
  4109. }
  4110. ],
  4111. "time": "2024-09-25T02:54:12+00:00"
  4112. },
  4113. {
  4114. "name": "hyperf/server",
  4115. "version": "v3.1.42",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/hyperf/server.git",
  4119. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4124. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "hyperf/contract": "~3.1.0",
  4129. "hyperf/coordinator": "~3.1.0",
  4130. "hyperf/engine": "^2.8",
  4131. "hyperf/support": "~3.1.0",
  4132. "hyperf/tappable": "~3.1.0",
  4133. "php": ">=8.1",
  4134. "psr/container": "^1.0 || ^2.0",
  4135. "psr/event-dispatcher": "^1.0",
  4136. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4137. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4138. },
  4139. "suggest": {
  4140. "hyperf/event": "Dump the info after server start.",
  4141. "hyperf/framework": "Dump the info after server start."
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-master": "3.1-dev"
  4147. },
  4148. "hyperf": {
  4149. "config": "Hyperf\\Server\\ConfigProvider"
  4150. }
  4151. },
  4152. "autoload": {
  4153. "psr-4": {
  4154. "Hyperf\\Server\\": "src/"
  4155. }
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "description": "A base server library for Hyperf.",
  4162. "homepage": "https://hyperf.io",
  4163. "keywords": [
  4164. "hyperf",
  4165. "php",
  4166. "server",
  4167. "swoole"
  4168. ],
  4169. "support": {
  4170. "docs": "https://hyperf.wiki",
  4171. "issues": "https://github.com/hyperf/hyperf/issues",
  4172. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4173. "source": "https://github.com/hyperf/hyperf"
  4174. },
  4175. "funding": [
  4176. {
  4177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4178. "type": "custom"
  4179. },
  4180. {
  4181. "url": "https://opencollective.com/hyperf",
  4182. "type": "open_collective"
  4183. }
  4184. ],
  4185. "time": "2024-09-25T02:54:12+00:00"
  4186. },
  4187. {
  4188. "name": "hyperf/service-governance",
  4189. "version": "v3.1.42",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/hyperf/service-governance.git",
  4193. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4198. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4199. "shasum": ""
  4200. },
  4201. "require": {
  4202. "hyperf/contract": "~3.1.0",
  4203. "hyperf/support": "~3.1.0",
  4204. "jetbrains/phpstorm-attributes": "^1.0",
  4205. "php": ">=8.1"
  4206. },
  4207. "suggest": {
  4208. "hyperf/event": "Required to use RegisterServiceListener.",
  4209. "hyperf/framework": "Required to use RegisterServiceListener.",
  4210. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4211. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "branch-alias": {
  4216. "dev-master": "3.1-dev"
  4217. },
  4218. "hyperf": {
  4219. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Hyperf\\ServiceGovernance\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "description": "A service governance component for Hyperf.",
  4232. "homepage": "https://hyperf.io",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php",
  4236. "service-governance",
  4237. "swoole"
  4238. ],
  4239. "support": {
  4240. "docs": "https://hyperf.wiki",
  4241. "issues": "https://github.com/hyperf/hyperf/issues",
  4242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4243. "source": "https://github.com/hyperf/hyperf"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://opencollective.com/hyperf",
  4252. "type": "open_collective"
  4253. }
  4254. ],
  4255. "time": "2024-09-25T02:54:12+00:00"
  4256. },
  4257. {
  4258. "name": "hyperf/service-governance-consul",
  4259. "version": "v3.1.42",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/hyperf/service-governance-consul.git",
  4263. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4268. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "hyperf/consul": "~3.1.0",
  4273. "hyperf/contract": "~3.1.0",
  4274. "hyperf/service-governance": "~3.1.0",
  4275. "hyperf/support": "~3.1.0",
  4276. "hyperf/utils": "~3.1.0",
  4277. "php": ">=8.1"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-master": "3.1-dev"
  4283. },
  4284. "hyperf": {
  4285. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4291. }
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "description": "A consul adapter for service governance.",
  4298. "homepage": "https://hyperf.io",
  4299. "keywords": [
  4300. "consul-adapter",
  4301. "hyperf",
  4302. "php",
  4303. "service-governance",
  4304. "swoole"
  4305. ],
  4306. "support": {
  4307. "docs": "https://hyperf.wiki",
  4308. "issues": "https://github.com/hyperf/hyperf/issues",
  4309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4310. "source": "https://github.com/hyperf/hyperf"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4315. "type": "custom"
  4316. },
  4317. {
  4318. "url": "https://opencollective.com/hyperf",
  4319. "type": "open_collective"
  4320. }
  4321. ],
  4322. "time": "2024-09-25T02:54:12+00:00"
  4323. },
  4324. {
  4325. "name": "hyperf/service-governance-nacos",
  4326. "version": "v3.1.42",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4330. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4335. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "hyperf/codec": "~3.1.0",
  4340. "hyperf/contract": "~3.1.0",
  4341. "hyperf/nacos": "~3.1.0",
  4342. "hyperf/service-governance": "~3.1.0",
  4343. "hyperf/support": "~3.1.0",
  4344. "hyperf/utils": "~3.1.0",
  4345. "php": ">=8.1"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-master": "3.1-dev"
  4351. },
  4352. "hyperf": {
  4353. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "description": "A nacos adapter for service governance.",
  4366. "homepage": "https://hyperf.io",
  4367. "keywords": [
  4368. "hyperf",
  4369. "nacos-adapter",
  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/snowflake",
  4394. "version": "v3.1.42",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/hyperf/snowflake.git",
  4398. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4403. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4404. "shasum": ""
  4405. },
  4406. "require": {
  4407. "hyperf/contract": "~3.1.0",
  4408. "php": ">=8.1"
  4409. },
  4410. "suggest": {
  4411. "hyperf/config": "Required to read snowflake config.",
  4412. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4413. "psr/container": "Required to use MetaGeneratorFactory."
  4414. },
  4415. "type": "library",
  4416. "extra": {
  4417. "branch-alias": {
  4418. "dev-master": "3.1-dev"
  4419. },
  4420. "hyperf": {
  4421. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4422. }
  4423. },
  4424. "autoload": {
  4425. "psr-4": {
  4426. "Hyperf\\Snowflake\\": "src/"
  4427. }
  4428. },
  4429. "notification-url": "https://packagist.org/downloads/",
  4430. "license": [
  4431. "MIT"
  4432. ],
  4433. "description": "A snowflake library",
  4434. "homepage": "https://hyperf.io",
  4435. "keywords": [
  4436. "php",
  4437. "snowflake"
  4438. ],
  4439. "support": {
  4440. "docs": "https://hyperf.wiki",
  4441. "issues": "https://github.com/hyperf/hyperf/issues",
  4442. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4443. "source": "https://github.com/hyperf/hyperf"
  4444. },
  4445. "funding": [
  4446. {
  4447. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4448. "type": "custom"
  4449. },
  4450. {
  4451. "url": "https://opencollective.com/hyperf",
  4452. "type": "open_collective"
  4453. }
  4454. ],
  4455. "time": "2024-09-25T02:54:12+00:00"
  4456. },
  4457. {
  4458. "name": "hyperf/stdlib",
  4459. "version": "v3.1.42",
  4460. "source": {
  4461. "type": "git",
  4462. "url": "https://github.com/hyperf/stdlib.git",
  4463. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4464. },
  4465. "dist": {
  4466. "type": "zip",
  4467. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4468. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4469. "shasum": ""
  4470. },
  4471. "require": {
  4472. "php": ">=8.1"
  4473. },
  4474. "type": "library",
  4475. "extra": {
  4476. "branch-alias": {
  4477. "dev-master": "3.1-dev"
  4478. }
  4479. },
  4480. "autoload": {
  4481. "psr-4": {
  4482. "Hyperf\\Stdlib\\": "src/"
  4483. }
  4484. },
  4485. "notification-url": "https://packagist.org/downloads/",
  4486. "license": [
  4487. "MIT"
  4488. ],
  4489. "description": "A stdlib component for Hyperf.",
  4490. "homepage": "https://hyperf.io",
  4491. "keywords": [
  4492. "hyperf",
  4493. "php",
  4494. "stdlib",
  4495. "swoole"
  4496. ],
  4497. "support": {
  4498. "docs": "https://hyperf.wiki",
  4499. "issues": "https://github.com/hyperf/hyperf/issues",
  4500. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4501. "source": "https://github.com/hyperf/hyperf"
  4502. },
  4503. "funding": [
  4504. {
  4505. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4506. "type": "custom"
  4507. },
  4508. {
  4509. "url": "https://opencollective.com/hyperf",
  4510. "type": "open_collective"
  4511. }
  4512. ],
  4513. "time": "2024-09-25T02:54:12+00:00"
  4514. },
  4515. {
  4516. "name": "hyperf/stringable",
  4517. "version": "v3.1.43",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://github.com/hyperf/stringable.git",
  4521. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4526. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4527. "shasum": ""
  4528. },
  4529. "require": {
  4530. "ext-mbstring": "*",
  4531. "hyperf/collection": "~3.1.0",
  4532. "hyperf/conditionable": "~3.1.0",
  4533. "hyperf/macroable": "~3.1.0",
  4534. "hyperf/tappable": "~3.1.0",
  4535. "php": ">=8.1"
  4536. },
  4537. "suggest": {
  4538. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4539. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4540. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4541. },
  4542. "type": "library",
  4543. "extra": {
  4544. "branch-alias": {
  4545. "dev-master": "3.1-dev"
  4546. }
  4547. },
  4548. "autoload": {
  4549. "files": [
  4550. "src/Functions.php"
  4551. ],
  4552. "psr-4": {
  4553. "Hyperf\\Stringable\\": "src/"
  4554. }
  4555. },
  4556. "notification-url": "https://packagist.org/downloads/",
  4557. "license": [
  4558. "MIT"
  4559. ],
  4560. "description": "Hyperf Stringable package which come from illuminate/support",
  4561. "homepage": "https://hyperf.io",
  4562. "keywords": [
  4563. "hyperf",
  4564. "php",
  4565. "stringable",
  4566. "swoole"
  4567. ],
  4568. "support": {
  4569. "docs": "https://hyperf.wiki",
  4570. "issues": "https://github.com/hyperf/hyperf/issues",
  4571. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4572. "source": "https://github.com/hyperf/hyperf"
  4573. },
  4574. "funding": [
  4575. {
  4576. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4577. "type": "custom"
  4578. },
  4579. {
  4580. "url": "https://opencollective.com/hyperf",
  4581. "type": "open_collective"
  4582. }
  4583. ],
  4584. "time": "2024-10-09T02:28:40+00:00"
  4585. },
  4586. {
  4587. "name": "hyperf/support",
  4588. "version": "v3.1.47",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/hyperf/support.git",
  4592. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/hyperf/support/zipball/e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4597. "reference": "e0b68073d7015c43f89eed6d29f5605256d46dcc",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "hyperf/collection": "~3.1.0",
  4602. "hyperf/context": "~3.1.0",
  4603. "hyperf/contract": "~3.1.0",
  4604. "hyperf/coroutine": "~3.1.0",
  4605. "hyperf/macroable": "~3.1.0",
  4606. "hyperf/stringable": "~3.1.0",
  4607. "php": ">=8.1"
  4608. },
  4609. "suggest": {
  4610. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "files": [
  4620. "src/Functions.php"
  4621. ],
  4622. "psr-4": {
  4623. "Hyperf\\Support\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "description": "A support component for Hyperf.",
  4631. "homepage": "https://hyperf.io",
  4632. "keywords": [
  4633. "hyperf",
  4634. "php",
  4635. "support",
  4636. "swoole"
  4637. ],
  4638. "support": {
  4639. "docs": "https://hyperf.wiki",
  4640. "issues": "https://github.com/hyperf/hyperf/issues",
  4641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4642. "source": "https://github.com/hyperf/hyperf"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4647. "type": "custom"
  4648. },
  4649. {
  4650. "url": "https://opencollective.com/hyperf",
  4651. "type": "open_collective"
  4652. }
  4653. ],
  4654. "time": "2024-11-28T01:51:55+00:00"
  4655. },
  4656. {
  4657. "name": "hyperf/tappable",
  4658. "version": "v3.1.42",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/hyperf/tappable.git",
  4662. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4667. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "php": ">=8.1"
  4672. },
  4673. "type": "library",
  4674. "extra": {
  4675. "branch-alias": {
  4676. "dev-master": "3.1-dev"
  4677. }
  4678. },
  4679. "autoload": {
  4680. "files": [
  4681. "src/Functions.php"
  4682. ],
  4683. "psr-4": {
  4684. "Hyperf\\Tappable\\": "src/"
  4685. }
  4686. },
  4687. "notification-url": "https://packagist.org/downloads/",
  4688. "license": [
  4689. "MIT"
  4690. ],
  4691. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4692. "homepage": "https://hyperf.io",
  4693. "keywords": [
  4694. "hyperf",
  4695. "php",
  4696. "swoole",
  4697. "tappable"
  4698. ],
  4699. "support": {
  4700. "docs": "https://hyperf.wiki",
  4701. "issues": "https://github.com/hyperf/hyperf/issues",
  4702. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4703. "source": "https://github.com/hyperf/hyperf"
  4704. },
  4705. "funding": [
  4706. {
  4707. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4708. "type": "custom"
  4709. },
  4710. {
  4711. "url": "https://opencollective.com/hyperf",
  4712. "type": "open_collective"
  4713. }
  4714. ],
  4715. "time": "2024-09-25T02:54:12+00:00"
  4716. },
  4717. {
  4718. "name": "hyperf/translation",
  4719. "version": "v3.1.42",
  4720. "source": {
  4721. "type": "git",
  4722. "url": "https://github.com/hyperf/translation.git",
  4723. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4724. },
  4725. "dist": {
  4726. "type": "zip",
  4727. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4728. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4729. "shasum": ""
  4730. },
  4731. "require": {
  4732. "hyperf/contract": "~3.1.0",
  4733. "hyperf/macroable": "~3.1.0",
  4734. "hyperf/support": "~3.1.0",
  4735. "hyperf/utils": "~3.1.0",
  4736. "php": ">=8.1",
  4737. "psr/container": "^1.0 || ^2.0"
  4738. },
  4739. "type": "library",
  4740. "extra": {
  4741. "branch-alias": {
  4742. "dev-master": "3.1-dev"
  4743. },
  4744. "hyperf": {
  4745. "config": "Hyperf\\Translation\\ConfigProvider"
  4746. }
  4747. },
  4748. "autoload": {
  4749. "files": [
  4750. "src/Functions.php"
  4751. ],
  4752. "psr-4": {
  4753. "Hyperf\\Translation\\": "src/"
  4754. }
  4755. },
  4756. "notification-url": "https://packagist.org/downloads/",
  4757. "license": [
  4758. "MIT"
  4759. ],
  4760. "description": "An independent translation component, forked by illuminate/translation.",
  4761. "keywords": [
  4762. "hyperf",
  4763. "translation"
  4764. ],
  4765. "support": {
  4766. "issues": "https://github.com/hyperf/translation/issues",
  4767. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4768. },
  4769. "funding": [
  4770. {
  4771. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4772. "type": "custom"
  4773. },
  4774. {
  4775. "url": "https://opencollective.com/hyperf",
  4776. "type": "open_collective"
  4777. }
  4778. ],
  4779. "time": "2024-09-25T02:54:12+00:00"
  4780. },
  4781. {
  4782. "name": "hyperf/utils",
  4783. "version": "v3.1.42",
  4784. "source": {
  4785. "type": "git",
  4786. "url": "https://github.com/hyperf/utils.git",
  4787. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4788. },
  4789. "dist": {
  4790. "type": "zip",
  4791. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4792. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4793. "shasum": ""
  4794. },
  4795. "require": {
  4796. "doctrine/inflector": "^2.0",
  4797. "hyperf/code-parser": "~3.1.0",
  4798. "hyperf/codec": "~3.1.0",
  4799. "hyperf/collection": "~3.1.0",
  4800. "hyperf/context": "~3.1.0",
  4801. "hyperf/contract": "~3.1.0",
  4802. "hyperf/coordinator": "~3.1.0",
  4803. "hyperf/coroutine": "~3.1.0",
  4804. "hyperf/engine": "^2.0",
  4805. "hyperf/macroable": "~3.1.0",
  4806. "hyperf/serializer": "~3.1.0",
  4807. "hyperf/stringable": "~3.1.0",
  4808. "hyperf/support": "~3.1.0",
  4809. "php": ">=8.1"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "3.1-dev"
  4815. }
  4816. },
  4817. "notification-url": "https://packagist.org/downloads/",
  4818. "license": [
  4819. "MIT"
  4820. ],
  4821. "description": "A tools package that could help developer solved the problem quickly.",
  4822. "homepage": "https://hyperf.io",
  4823. "keywords": [
  4824. "hyperf",
  4825. "php",
  4826. "swoole",
  4827. "utils"
  4828. ],
  4829. "support": {
  4830. "docs": "https://hyperf.wiki",
  4831. "issues": "https://github.com/hyperf/hyperf/issues",
  4832. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4833. "source": "https://github.com/hyperf/hyperf"
  4834. },
  4835. "funding": [
  4836. {
  4837. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4838. "type": "custom"
  4839. },
  4840. {
  4841. "url": "https://opencollective.com/hyperf",
  4842. "type": "open_collective"
  4843. }
  4844. ],
  4845. "time": "2024-09-25T02:54:12+00:00"
  4846. },
  4847. {
  4848. "name": "hyperf/validation",
  4849. "version": "v3.1.47",
  4850. "source": {
  4851. "type": "git",
  4852. "url": "https://github.com/hyperf/validation.git",
  4853. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073"
  4854. },
  4855. "dist": {
  4856. "type": "zip",
  4857. "url": "https://api.github.com/repos/hyperf/validation/zipball/a3d39fc5e0940f17e3b137c9136464916754f073",
  4858. "reference": "a3d39fc5e0940f17e3b137c9136464916754f073",
  4859. "shasum": ""
  4860. },
  4861. "require": {
  4862. "egulias/email-validator": "^3.0",
  4863. "hyperf/collection": "~3.1.0",
  4864. "hyperf/conditionable": "~3.1.0",
  4865. "hyperf/contract": "~3.1.0",
  4866. "hyperf/di": "~3.1.0",
  4867. "hyperf/framework": "~3.1.0",
  4868. "hyperf/macroable": "~3.1.0",
  4869. "hyperf/stringable": "~3.1.0",
  4870. "hyperf/support": "~3.1.0",
  4871. "hyperf/tappable": "~3.1.0",
  4872. "hyperf/translation": "~3.1.0",
  4873. "hyperf/utils": "~3.1.0",
  4874. "nesbot/carbon": "^2.21",
  4875. "php": ">=8.1",
  4876. "psr/container": "^1.0 || ^2.0",
  4877. "psr/event-dispatcher": "^1.0",
  4878. "psr/http-message": "^1.0 || ^2.0"
  4879. },
  4880. "suggest": {
  4881. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4882. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4883. },
  4884. "type": "library",
  4885. "extra": {
  4886. "hyperf": {
  4887. "config": "Hyperf\\Validation\\ConfigProvider"
  4888. },
  4889. "branch-alias": {
  4890. "dev-master": "3.1-dev"
  4891. }
  4892. },
  4893. "autoload": {
  4894. "psr-4": {
  4895. "Hyperf\\Validation\\": "src/"
  4896. }
  4897. },
  4898. "notification-url": "https://packagist.org/downloads/",
  4899. "license": [
  4900. "MIT"
  4901. ],
  4902. "description": "hyperf validation",
  4903. "keywords": [
  4904. "hyperf",
  4905. "validation"
  4906. ],
  4907. "support": {
  4908. "issues": "https://github.com/hyperf/validation/issues",
  4909. "source": "https://github.com/hyperf/validation/tree/v3.1.47"
  4910. },
  4911. "funding": [
  4912. {
  4913. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4914. "type": "custom"
  4915. },
  4916. {
  4917. "url": "https://opencollective.com/hyperf",
  4918. "type": "open_collective"
  4919. }
  4920. ],
  4921. "time": "2024-11-28T01:51:55+00:00"
  4922. },
  4923. {
  4924. "name": "hyperf/websocket-server",
  4925. "version": "v3.1.42",
  4926. "source": {
  4927. "type": "git",
  4928. "url": "https://github.com/hyperf/websocket-server.git",
  4929. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4930. },
  4931. "dist": {
  4932. "type": "zip",
  4933. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4934. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4935. "shasum": ""
  4936. },
  4937. "require": {
  4938. "hyperf/collection": "~3.1.0",
  4939. "hyperf/contract": "~3.1.0",
  4940. "hyperf/exception-handler": "~3.1.0",
  4941. "hyperf/http-server": "~3.1.0",
  4942. "hyperf/support": "~3.1.0",
  4943. "hyperf/utils": "~3.1.0",
  4944. "php": ">=8.1",
  4945. "psr/container": "^1.0 || ^2.0",
  4946. "psr/event-dispatcher": "^1.0"
  4947. },
  4948. "type": "library",
  4949. "extra": {
  4950. "branch-alias": {
  4951. "dev-master": "3.1-dev"
  4952. },
  4953. "hyperf": {
  4954. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4955. }
  4956. },
  4957. "autoload": {
  4958. "psr-4": {
  4959. "Hyperf\\WebSocketServer\\": "src/"
  4960. }
  4961. },
  4962. "notification-url": "https://packagist.org/downloads/",
  4963. "license": [
  4964. "MIT"
  4965. ],
  4966. "description": "A websocket server library for Hyperf.",
  4967. "homepage": "https://hyperf.io",
  4968. "keywords": [
  4969. "hyperf",
  4970. "php",
  4971. "swoole",
  4972. "websocket"
  4973. ],
  4974. "support": {
  4975. "docs": "https://hyperf.wiki",
  4976. "issues": "https://github.com/hyperf/hyperf/issues",
  4977. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4978. "source": "https://github.com/hyperf/hyperf"
  4979. },
  4980. "funding": [
  4981. {
  4982. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4983. "type": "custom"
  4984. },
  4985. {
  4986. "url": "https://opencollective.com/hyperf",
  4987. "type": "open_collective"
  4988. }
  4989. ],
  4990. "time": "2024-09-25T02:54:12+00:00"
  4991. },
  4992. {
  4993. "name": "jetbrains/phpstorm-attributes",
  4994. "version": "1.2",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4998. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5003. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5004. "shasum": ""
  5005. },
  5006. "type": "library",
  5007. "autoload": {
  5008. "psr-4": {
  5009. "JetBrains\\PhpStorm\\": "src/"
  5010. }
  5011. },
  5012. "notification-url": "https://packagist.org/downloads/",
  5013. "license": [
  5014. "Apache-2.0"
  5015. ],
  5016. "authors": [
  5017. {
  5018. "name": "JetBrains",
  5019. "homepage": "https://www.jetbrains.com"
  5020. }
  5021. ],
  5022. "description": "PhpStorm specific attributes",
  5023. "keywords": [
  5024. "attributes",
  5025. "jetbrains",
  5026. "phpstorm"
  5027. ],
  5028. "support": {
  5029. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5030. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5031. },
  5032. "time": "2024-10-11T10:46:19+00:00"
  5033. },
  5034. {
  5035. "name": "laminas/laminas-mime",
  5036. "version": "2.12.0",
  5037. "source": {
  5038. "type": "git",
  5039. "url": "https://github.com/laminas/laminas-mime.git",
  5040. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5041. },
  5042. "dist": {
  5043. "type": "zip",
  5044. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5045. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5046. "shasum": ""
  5047. },
  5048. "require": {
  5049. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5050. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5051. },
  5052. "conflict": {
  5053. "zendframework/zend-mime": "*"
  5054. },
  5055. "require-dev": {
  5056. "laminas/laminas-coding-standard": "~2.4.0",
  5057. "laminas/laminas-mail": "^2.19.0",
  5058. "phpunit/phpunit": "~9.5.25"
  5059. },
  5060. "suggest": {
  5061. "laminas/laminas-mail": "Laminas\\Mail component"
  5062. },
  5063. "type": "library",
  5064. "autoload": {
  5065. "psr-4": {
  5066. "Laminas\\Mime\\": "src/"
  5067. }
  5068. },
  5069. "notification-url": "https://packagist.org/downloads/",
  5070. "license": [
  5071. "BSD-3-Clause"
  5072. ],
  5073. "description": "Create and parse MIME messages and parts",
  5074. "homepage": "https://laminas.dev",
  5075. "keywords": [
  5076. "laminas",
  5077. "mime"
  5078. ],
  5079. "support": {
  5080. "chat": "https://laminas.dev/chat",
  5081. "docs": "https://docs.laminas.dev/laminas-mime/",
  5082. "forum": "https://discourse.laminas.dev",
  5083. "issues": "https://github.com/laminas/laminas-mime/issues",
  5084. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5085. "source": "https://github.com/laminas/laminas-mime"
  5086. },
  5087. "funding": [
  5088. {
  5089. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5090. "type": "community_bridge"
  5091. }
  5092. ],
  5093. "abandoned": "symfony/mime",
  5094. "time": "2023-11-02T16:47:19+00:00"
  5095. },
  5096. {
  5097. "name": "laminas/laminas-stdlib",
  5098. "version": "3.20.0",
  5099. "source": {
  5100. "type": "git",
  5101. "url": "https://github.com/laminas/laminas-stdlib.git",
  5102. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5103. },
  5104. "dist": {
  5105. "type": "zip",
  5106. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5107. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5108. "shasum": ""
  5109. },
  5110. "require": {
  5111. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5112. },
  5113. "conflict": {
  5114. "zendframework/zend-stdlib": "*"
  5115. },
  5116. "require-dev": {
  5117. "laminas/laminas-coding-standard": "^3.0",
  5118. "phpbench/phpbench": "^1.3.1",
  5119. "phpunit/phpunit": "^10.5.38",
  5120. "psalm/plugin-phpunit": "^0.19.0",
  5121. "vimeo/psalm": "^5.26.1"
  5122. },
  5123. "type": "library",
  5124. "autoload": {
  5125. "psr-4": {
  5126. "Laminas\\Stdlib\\": "src/"
  5127. }
  5128. },
  5129. "notification-url": "https://packagist.org/downloads/",
  5130. "license": [
  5131. "BSD-3-Clause"
  5132. ],
  5133. "description": "SPL extensions, array utilities, error handlers, and more",
  5134. "homepage": "https://laminas.dev",
  5135. "keywords": [
  5136. "laminas",
  5137. "stdlib"
  5138. ],
  5139. "support": {
  5140. "chat": "https://laminas.dev/chat",
  5141. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5142. "forum": "https://discourse.laminas.dev",
  5143. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5144. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5145. "source": "https://github.com/laminas/laminas-stdlib"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5150. "type": "community_bridge"
  5151. }
  5152. ],
  5153. "time": "2024-10-29T13:46:07+00:00"
  5154. },
  5155. {
  5156. "name": "lcobucci/clock",
  5157. "version": "2.3.0",
  5158. "source": {
  5159. "type": "git",
  5160. "url": "https://github.com/lcobucci/clock.git",
  5161. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5162. },
  5163. "dist": {
  5164. "type": "zip",
  5165. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5166. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5167. "shasum": ""
  5168. },
  5169. "require": {
  5170. "php": "~8.1.0 || ~8.2.0",
  5171. "stella-maris/clock": "^0.1.7"
  5172. },
  5173. "provide": {
  5174. "psr/clock-implementation": "1.0"
  5175. },
  5176. "require-dev": {
  5177. "infection/infection": "^0.26",
  5178. "lcobucci/coding-standard": "^9.0",
  5179. "phpstan/extension-installer": "^1.2",
  5180. "phpstan/phpstan": "^1.9.4",
  5181. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5182. "phpstan/phpstan-phpunit": "^1.3.2",
  5183. "phpstan/phpstan-strict-rules": "^1.4.4",
  5184. "phpunit/phpunit": "^9.5.27"
  5185. },
  5186. "type": "library",
  5187. "autoload": {
  5188. "psr-4": {
  5189. "Lcobucci\\Clock\\": "src"
  5190. }
  5191. },
  5192. "notification-url": "https://packagist.org/downloads/",
  5193. "license": [
  5194. "MIT"
  5195. ],
  5196. "authors": [
  5197. {
  5198. "name": "Luís Cobucci",
  5199. "email": "lcobucci@gmail.com"
  5200. }
  5201. ],
  5202. "description": "Yet another clock abstraction",
  5203. "support": {
  5204. "issues": "https://github.com/lcobucci/clock/issues",
  5205. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5206. },
  5207. "funding": [
  5208. {
  5209. "url": "https://github.com/lcobucci",
  5210. "type": "github"
  5211. },
  5212. {
  5213. "url": "https://www.patreon.com/lcobucci",
  5214. "type": "patreon"
  5215. }
  5216. ],
  5217. "time": "2022-12-19T14:38:11+00:00"
  5218. },
  5219. {
  5220. "name": "lcobucci/jwt",
  5221. "version": "4.1.5",
  5222. "source": {
  5223. "type": "git",
  5224. "url": "https://github.com/lcobucci/jwt.git",
  5225. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5226. },
  5227. "dist": {
  5228. "type": "zip",
  5229. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5230. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5231. "shasum": ""
  5232. },
  5233. "require": {
  5234. "ext-hash": "*",
  5235. "ext-json": "*",
  5236. "ext-mbstring": "*",
  5237. "ext-openssl": "*",
  5238. "ext-sodium": "*",
  5239. "lcobucci/clock": "^2.0",
  5240. "php": "^7.4 || ^8.0"
  5241. },
  5242. "require-dev": {
  5243. "infection/infection": "^0.21",
  5244. "lcobucci/coding-standard": "^6.0",
  5245. "mikey179/vfsstream": "^1.6.7",
  5246. "phpbench/phpbench": "^1.0",
  5247. "phpstan/extension-installer": "^1.0",
  5248. "phpstan/phpstan": "^0.12",
  5249. "phpstan/phpstan-deprecation-rules": "^0.12",
  5250. "phpstan/phpstan-phpunit": "^0.12",
  5251. "phpstan/phpstan-strict-rules": "^0.12",
  5252. "phpunit/php-invoker": "^3.1",
  5253. "phpunit/phpunit": "^9.5"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Lcobucci\\JWT\\": "src"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "BSD-3-Clause"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Luís Cobucci",
  5268. "email": "lcobucci@gmail.com",
  5269. "role": "Developer"
  5270. }
  5271. ],
  5272. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5273. "keywords": [
  5274. "JWS",
  5275. "jwt"
  5276. ],
  5277. "support": {
  5278. "issues": "https://github.com/lcobucci/jwt/issues",
  5279. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5280. },
  5281. "funding": [
  5282. {
  5283. "url": "https://github.com/lcobucci",
  5284. "type": "github"
  5285. },
  5286. {
  5287. "url": "https://www.patreon.com/lcobucci",
  5288. "type": "patreon"
  5289. }
  5290. ],
  5291. "time": "2021-09-28T19:34:56+00:00"
  5292. },
  5293. {
  5294. "name": "markrogoyski/math-php",
  5295. "version": "v2.10.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/markrogoyski/math-php.git",
  5299. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5304. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5305. "shasum": ""
  5306. },
  5307. "require": {
  5308. "ext-json": "*",
  5309. "php": ">=7.2.0"
  5310. },
  5311. "require-dev": {
  5312. "php-coveralls/php-coveralls": "^2.0",
  5313. "php-parallel-lint/php-parallel-lint": "^1.2",
  5314. "phploc/phploc": "*",
  5315. "phpmd/phpmd": "^2.6",
  5316. "phpstan/phpstan": "^1.10",
  5317. "phpunit/phpunit": "^8.5",
  5318. "squizlabs/php_codesniffer": "3.*"
  5319. },
  5320. "type": "library",
  5321. "autoload": {
  5322. "psr-4": {
  5323. "MathPHP\\": "src/"
  5324. }
  5325. },
  5326. "notification-url": "https://packagist.org/downloads/",
  5327. "license": [
  5328. "MIT"
  5329. ],
  5330. "authors": [
  5331. {
  5332. "name": "Mark Rogoyski",
  5333. "email": "mark@rogoyski.com",
  5334. "homepage": "https://github.com/markrogoyski",
  5335. "role": "Lead developer"
  5336. },
  5337. {
  5338. "name": "Kevin Nowaczyk",
  5339. "homepage": "https://github.com/Beakerboy",
  5340. "role": "Developer"
  5341. },
  5342. {
  5343. "name": "MathPHP Community of Contributors",
  5344. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5345. }
  5346. ],
  5347. "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",
  5348. "homepage": "https://github.com/markrogoyski/math-php/",
  5349. "keywords": [
  5350. "algebra",
  5351. "combinatorics",
  5352. "distributions",
  5353. "linear algebra",
  5354. "math",
  5355. "mathematics",
  5356. "matrix",
  5357. "numerical analysis",
  5358. "probability",
  5359. "regressions",
  5360. "statistics"
  5361. ],
  5362. "support": {
  5363. "issues": "https://github.com/markrogoyski/math-php/issues",
  5364. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5365. },
  5366. "time": "2024-04-17T00:09:51+00:00"
  5367. },
  5368. {
  5369. "name": "monolog/monolog",
  5370. "version": "3.8.1",
  5371. "source": {
  5372. "type": "git",
  5373. "url": "https://github.com/Seldaek/monolog.git",
  5374. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  5375. },
  5376. "dist": {
  5377. "type": "zip",
  5378. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5379. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  5380. "shasum": ""
  5381. },
  5382. "require": {
  5383. "php": ">=8.1",
  5384. "psr/log": "^2.0 || ^3.0"
  5385. },
  5386. "provide": {
  5387. "psr/log-implementation": "3.0.0"
  5388. },
  5389. "require-dev": {
  5390. "aws/aws-sdk-php": "^3.0",
  5391. "doctrine/couchdb": "~1.0@dev",
  5392. "elasticsearch/elasticsearch": "^7 || ^8",
  5393. "ext-json": "*",
  5394. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5395. "guzzlehttp/guzzle": "^7.4.5",
  5396. "guzzlehttp/psr7": "^2.2",
  5397. "mongodb/mongodb": "^1.8",
  5398. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5399. "php-console/php-console": "^3.1.8",
  5400. "phpstan/phpstan": "^2",
  5401. "phpstan/phpstan-deprecation-rules": "^2",
  5402. "phpstan/phpstan-strict-rules": "^2",
  5403. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5404. "predis/predis": "^1.1 || ^2",
  5405. "rollbar/rollbar": "^4.0",
  5406. "ruflin/elastica": "^7 || ^8",
  5407. "symfony/mailer": "^5.4 || ^6",
  5408. "symfony/mime": "^5.4 || ^6"
  5409. },
  5410. "suggest": {
  5411. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5412. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5413. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5414. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5415. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5416. "ext-mbstring": "Allow to work properly with unicode symbols",
  5417. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5418. "ext-openssl": "Required to send log messages using SSL",
  5419. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5420. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5421. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5422. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5423. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5424. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5425. },
  5426. "type": "library",
  5427. "extra": {
  5428. "branch-alias": {
  5429. "dev-main": "3.x-dev"
  5430. }
  5431. },
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Monolog\\": "src/Monolog"
  5435. }
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "authors": [
  5442. {
  5443. "name": "Jordi Boggiano",
  5444. "email": "j.boggiano@seld.be",
  5445. "homepage": "https://seld.be"
  5446. }
  5447. ],
  5448. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5449. "homepage": "https://github.com/Seldaek/monolog",
  5450. "keywords": [
  5451. "log",
  5452. "logging",
  5453. "psr-3"
  5454. ],
  5455. "support": {
  5456. "issues": "https://github.com/Seldaek/monolog/issues",
  5457. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  5458. },
  5459. "funding": [
  5460. {
  5461. "url": "https://github.com/Seldaek",
  5462. "type": "github"
  5463. },
  5464. {
  5465. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5466. "type": "tidelift"
  5467. }
  5468. ],
  5469. "time": "2024-12-05T17:15:07+00:00"
  5470. },
  5471. {
  5472. "name": "nesbot/carbon",
  5473. "version": "2.72.5",
  5474. "source": {
  5475. "type": "git",
  5476. "url": "https://github.com/briannesbitt/Carbon.git",
  5477. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5478. },
  5479. "dist": {
  5480. "type": "zip",
  5481. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5482. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5483. "shasum": ""
  5484. },
  5485. "require": {
  5486. "carbonphp/carbon-doctrine-types": "*",
  5487. "ext-json": "*",
  5488. "php": "^7.1.8 || ^8.0",
  5489. "psr/clock": "^1.0",
  5490. "symfony/polyfill-mbstring": "^1.0",
  5491. "symfony/polyfill-php80": "^1.16",
  5492. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5493. },
  5494. "provide": {
  5495. "psr/clock-implementation": "1.0"
  5496. },
  5497. "require-dev": {
  5498. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5499. "doctrine/orm": "^2.7 || ^3.0",
  5500. "friendsofphp/php-cs-fixer": "^3.0",
  5501. "kylekatarnls/multi-tester": "^2.0",
  5502. "ondrejmirtes/better-reflection": "*",
  5503. "phpmd/phpmd": "^2.9",
  5504. "phpstan/extension-installer": "^1.0",
  5505. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5506. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5507. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5508. "squizlabs/php_codesniffer": "^3.4"
  5509. },
  5510. "bin": [
  5511. "bin/carbon"
  5512. ],
  5513. "type": "library",
  5514. "extra": {
  5515. "branch-alias": {
  5516. "dev-master": "3.x-dev",
  5517. "dev-2.x": "2.x-dev"
  5518. },
  5519. "laravel": {
  5520. "providers": [
  5521. "Carbon\\Laravel\\ServiceProvider"
  5522. ]
  5523. },
  5524. "phpstan": {
  5525. "includes": [
  5526. "extension.neon"
  5527. ]
  5528. }
  5529. },
  5530. "autoload": {
  5531. "psr-4": {
  5532. "Carbon\\": "src/Carbon/"
  5533. }
  5534. },
  5535. "notification-url": "https://packagist.org/downloads/",
  5536. "license": [
  5537. "MIT"
  5538. ],
  5539. "authors": [
  5540. {
  5541. "name": "Brian Nesbitt",
  5542. "email": "brian@nesbot.com",
  5543. "homepage": "https://markido.com"
  5544. },
  5545. {
  5546. "name": "kylekatarnls",
  5547. "homepage": "https://github.com/kylekatarnls"
  5548. }
  5549. ],
  5550. "description": "An API extension for DateTime that supports 281 different languages.",
  5551. "homepage": "https://carbon.nesbot.com",
  5552. "keywords": [
  5553. "date",
  5554. "datetime",
  5555. "time"
  5556. ],
  5557. "support": {
  5558. "docs": "https://carbon.nesbot.com/docs",
  5559. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5560. "source": "https://github.com/briannesbitt/Carbon"
  5561. },
  5562. "funding": [
  5563. {
  5564. "url": "https://github.com/sponsors/kylekatarnls",
  5565. "type": "github"
  5566. },
  5567. {
  5568. "url": "https://opencollective.com/Carbon#sponsor",
  5569. "type": "opencollective"
  5570. },
  5571. {
  5572. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5573. "type": "tidelift"
  5574. }
  5575. ],
  5576. "time": "2024-06-03T19:18:41+00:00"
  5577. },
  5578. {
  5579. "name": "nikic/fast-route",
  5580. "version": "v1.3.0",
  5581. "source": {
  5582. "type": "git",
  5583. "url": "https://github.com/nikic/FastRoute.git",
  5584. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5585. },
  5586. "dist": {
  5587. "type": "zip",
  5588. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5589. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5590. "shasum": ""
  5591. },
  5592. "require": {
  5593. "php": ">=5.4.0"
  5594. },
  5595. "require-dev": {
  5596. "phpunit/phpunit": "^4.8.35|~5.7"
  5597. },
  5598. "type": "library",
  5599. "autoload": {
  5600. "files": [
  5601. "src/functions.php"
  5602. ],
  5603. "psr-4": {
  5604. "FastRoute\\": "src/"
  5605. }
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "BSD-3-Clause"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Nikita Popov",
  5614. "email": "nikic@php.net"
  5615. }
  5616. ],
  5617. "description": "Fast request router for PHP",
  5618. "keywords": [
  5619. "router",
  5620. "routing"
  5621. ],
  5622. "support": {
  5623. "issues": "https://github.com/nikic/FastRoute/issues",
  5624. "source": "https://github.com/nikic/FastRoute/tree/master"
  5625. },
  5626. "time": "2018-02-13T20:26:39+00:00"
  5627. },
  5628. {
  5629. "name": "nikic/php-parser",
  5630. "version": "v4.19.4",
  5631. "source": {
  5632. "type": "git",
  5633. "url": "https://github.com/nikic/PHP-Parser.git",
  5634. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5635. },
  5636. "dist": {
  5637. "type": "zip",
  5638. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5639. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5640. "shasum": ""
  5641. },
  5642. "require": {
  5643. "ext-tokenizer": "*",
  5644. "php": ">=7.1"
  5645. },
  5646. "require-dev": {
  5647. "ircmaxell/php-yacc": "^0.0.7",
  5648. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5649. },
  5650. "bin": [
  5651. "bin/php-parse"
  5652. ],
  5653. "type": "library",
  5654. "extra": {
  5655. "branch-alias": {
  5656. "dev-master": "4.9-dev"
  5657. }
  5658. },
  5659. "autoload": {
  5660. "psr-4": {
  5661. "PhpParser\\": "lib/PhpParser"
  5662. }
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "BSD-3-Clause"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "Nikita Popov"
  5671. }
  5672. ],
  5673. "description": "A PHP parser written in PHP",
  5674. "keywords": [
  5675. "parser",
  5676. "php"
  5677. ],
  5678. "support": {
  5679. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5680. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5681. },
  5682. "time": "2024-09-29T15:01:53+00:00"
  5683. },
  5684. {
  5685. "name": "paragonie/constant_time_encoding",
  5686. "version": "v3.0.0",
  5687. "source": {
  5688. "type": "git",
  5689. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5690. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5691. },
  5692. "dist": {
  5693. "type": "zip",
  5694. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5695. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5696. "shasum": ""
  5697. },
  5698. "require": {
  5699. "php": "^8"
  5700. },
  5701. "require-dev": {
  5702. "phpunit/phpunit": "^9",
  5703. "vimeo/psalm": "^4|^5"
  5704. },
  5705. "type": "library",
  5706. "autoload": {
  5707. "psr-4": {
  5708. "ParagonIE\\ConstantTime\\": "src/"
  5709. }
  5710. },
  5711. "notification-url": "https://packagist.org/downloads/",
  5712. "license": [
  5713. "MIT"
  5714. ],
  5715. "authors": [
  5716. {
  5717. "name": "Paragon Initiative Enterprises",
  5718. "email": "security@paragonie.com",
  5719. "homepage": "https://paragonie.com",
  5720. "role": "Maintainer"
  5721. },
  5722. {
  5723. "name": "Steve 'Sc00bz' Thomas",
  5724. "email": "steve@tobtu.com",
  5725. "homepage": "https://www.tobtu.com",
  5726. "role": "Original Developer"
  5727. }
  5728. ],
  5729. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5730. "keywords": [
  5731. "base16",
  5732. "base32",
  5733. "base32_decode",
  5734. "base32_encode",
  5735. "base64",
  5736. "base64_decode",
  5737. "base64_encode",
  5738. "bin2hex",
  5739. "encoding",
  5740. "hex",
  5741. "hex2bin",
  5742. "rfc4648"
  5743. ],
  5744. "support": {
  5745. "email": "info@paragonie.com",
  5746. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5747. "source": "https://github.com/paragonie/constant_time_encoding"
  5748. },
  5749. "time": "2024-05-08T12:36:18+00:00"
  5750. },
  5751. {
  5752. "name": "paragonie/random_compat",
  5753. "version": "v9.99.100",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://github.com/paragonie/random_compat.git",
  5757. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5762. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5763. "shasum": ""
  5764. },
  5765. "require": {
  5766. "php": ">= 7"
  5767. },
  5768. "require-dev": {
  5769. "phpunit/phpunit": "4.*|5.*",
  5770. "vimeo/psalm": "^1"
  5771. },
  5772. "suggest": {
  5773. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5774. },
  5775. "type": "library",
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Paragon Initiative Enterprises",
  5783. "email": "security@paragonie.com",
  5784. "homepage": "https://paragonie.com"
  5785. }
  5786. ],
  5787. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5788. "keywords": [
  5789. "csprng",
  5790. "polyfill",
  5791. "pseudorandom",
  5792. "random"
  5793. ],
  5794. "support": {
  5795. "email": "info@paragonie.com",
  5796. "issues": "https://github.com/paragonie/random_compat/issues",
  5797. "source": "https://github.com/paragonie/random_compat"
  5798. },
  5799. "time": "2020-10-15T08:29:30+00:00"
  5800. },
  5801. {
  5802. "name": "php-amqplib/php-amqplib",
  5803. "version": "v3.7.2",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5807. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5812. "reference": "738a73eb0019b6c99d9bc25d7a0c0dd8f56a5199",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "ext-mbstring": "*",
  5817. "ext-sockets": "*",
  5818. "php": "^7.2||^8.0",
  5819. "phpseclib/phpseclib": "^2.0|^3.0"
  5820. },
  5821. "conflict": {
  5822. "php": "7.4.0 - 7.4.1"
  5823. },
  5824. "replace": {
  5825. "videlalvaro/php-amqplib": "self.version"
  5826. },
  5827. "require-dev": {
  5828. "ext-curl": "*",
  5829. "nategood/httpful": "^0.2.20",
  5830. "phpunit/phpunit": "^7.5|^9.5",
  5831. "squizlabs/php_codesniffer": "^3.6"
  5832. },
  5833. "type": "library",
  5834. "extra": {
  5835. "branch-alias": {
  5836. "dev-master": "3.0-dev"
  5837. }
  5838. },
  5839. "autoload": {
  5840. "psr-4": {
  5841. "PhpAmqpLib\\": "PhpAmqpLib/"
  5842. }
  5843. },
  5844. "notification-url": "https://packagist.org/downloads/",
  5845. "license": [
  5846. "LGPL-2.1-or-later"
  5847. ],
  5848. "authors": [
  5849. {
  5850. "name": "Alvaro Videla",
  5851. "role": "Original Maintainer"
  5852. },
  5853. {
  5854. "name": "Raúl Araya",
  5855. "email": "nubeiro@gmail.com",
  5856. "role": "Maintainer"
  5857. },
  5858. {
  5859. "name": "Luke Bakken",
  5860. "email": "luke@bakken.io",
  5861. "role": "Maintainer"
  5862. },
  5863. {
  5864. "name": "Ramūnas Dronga",
  5865. "email": "github@ramuno.lt",
  5866. "role": "Maintainer"
  5867. }
  5868. ],
  5869. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5870. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5871. "keywords": [
  5872. "message",
  5873. "queue",
  5874. "rabbitmq"
  5875. ],
  5876. "support": {
  5877. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5878. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.2"
  5879. },
  5880. "time": "2024-11-21T09:21:41+00:00"
  5881. },
  5882. {
  5883. "name": "php-di/phpdoc-reader",
  5884. "version": "2.2.1",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5888. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5893. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.2.0"
  5898. },
  5899. "require-dev": {
  5900. "mnapoli/hard-mode": "~0.3.0",
  5901. "phpunit/phpunit": "^8.5|^9.0"
  5902. },
  5903. "type": "library",
  5904. "autoload": {
  5905. "psr-4": {
  5906. "PhpDocReader\\": "src/PhpDocReader"
  5907. }
  5908. },
  5909. "notification-url": "https://packagist.org/downloads/",
  5910. "license": [
  5911. "MIT"
  5912. ],
  5913. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5914. "keywords": [
  5915. "phpdoc",
  5916. "reflection"
  5917. ],
  5918. "support": {
  5919. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5920. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5921. },
  5922. "time": "2020-10-12T12:39:22+00:00"
  5923. },
  5924. {
  5925. "name": "phper666/jwt-auth",
  5926. "version": "v4.0.11",
  5927. "source": {
  5928. "type": "git",
  5929. "url": "https://github.com/phper666/jwt-auth.git",
  5930. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5931. },
  5932. "dist": {
  5933. "type": "zip",
  5934. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5935. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5936. "shasum": ""
  5937. },
  5938. "require": {
  5939. "ext-swoole": ">=4.4",
  5940. "lcobucci/jwt": "4.1.5",
  5941. "nesbot/carbon": "^1.0 || ^2.0",
  5942. "php": ">=7.4"
  5943. },
  5944. "suggest": {
  5945. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5946. "hyperf/command": "required hyperf/command ~2.2.0",
  5947. "hyperf/config": "required hyperf/config ~2.2.0",
  5948. "hyperf/di": "required hyperf/di ~2.2.0"
  5949. },
  5950. "type": "library",
  5951. "extra": {
  5952. "hyperf": {
  5953. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5954. }
  5955. },
  5956. "autoload": {
  5957. "files": [
  5958. "src/Functions.php"
  5959. ],
  5960. "psr-4": {
  5961. "Phper666\\JWTAuth\\": "src/"
  5962. }
  5963. },
  5964. "notification-url": "https://packagist.org/downloads/",
  5965. "license": [
  5966. "MIT"
  5967. ],
  5968. "authors": [
  5969. {
  5970. "name": "Li Yuzhao",
  5971. "email": "562405704@qq.com",
  5972. "homepage": "https://github.com/phper666/jwt-auth",
  5973. "role": "Developer"
  5974. }
  5975. ],
  5976. "description": "jwt-auth Component",
  5977. "keywords": [
  5978. "hyperf",
  5979. "php"
  5980. ],
  5981. "support": {
  5982. "issues": "https://github.com/phper666/jwt-auth/issues",
  5983. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5984. },
  5985. "time": "2024-02-02T13:24:54+00:00"
  5986. },
  5987. {
  5988. "name": "phpoption/phpoption",
  5989. "version": "1.9.3",
  5990. "source": {
  5991. "type": "git",
  5992. "url": "https://github.com/schmittjoh/php-option.git",
  5993. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5994. },
  5995. "dist": {
  5996. "type": "zip",
  5997. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5998. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5999. "shasum": ""
  6000. },
  6001. "require": {
  6002. "php": "^7.2.5 || ^8.0"
  6003. },
  6004. "require-dev": {
  6005. "bamarni/composer-bin-plugin": "^1.8.2",
  6006. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6007. },
  6008. "type": "library",
  6009. "extra": {
  6010. "bamarni-bin": {
  6011. "bin-links": true,
  6012. "forward-command": false
  6013. },
  6014. "branch-alias": {
  6015. "dev-master": "1.9-dev"
  6016. }
  6017. },
  6018. "autoload": {
  6019. "psr-4": {
  6020. "PhpOption\\": "src/PhpOption/"
  6021. }
  6022. },
  6023. "notification-url": "https://packagist.org/downloads/",
  6024. "license": [
  6025. "Apache-2.0"
  6026. ],
  6027. "authors": [
  6028. {
  6029. "name": "Johannes M. Schmitt",
  6030. "email": "schmittjoh@gmail.com",
  6031. "homepage": "https://github.com/schmittjoh"
  6032. },
  6033. {
  6034. "name": "Graham Campbell",
  6035. "email": "hello@gjcampbell.co.uk",
  6036. "homepage": "https://github.com/GrahamCampbell"
  6037. }
  6038. ],
  6039. "description": "Option Type for PHP",
  6040. "keywords": [
  6041. "language",
  6042. "option",
  6043. "php",
  6044. "type"
  6045. ],
  6046. "support": {
  6047. "issues": "https://github.com/schmittjoh/php-option/issues",
  6048. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6049. },
  6050. "funding": [
  6051. {
  6052. "url": "https://github.com/GrahamCampbell",
  6053. "type": "github"
  6054. },
  6055. {
  6056. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6057. "type": "tidelift"
  6058. }
  6059. ],
  6060. "time": "2024-07-20T21:41:07+00:00"
  6061. },
  6062. {
  6063. "name": "phpseclib/phpseclib",
  6064. "version": "3.0.43",
  6065. "source": {
  6066. "type": "git",
  6067. "url": "https://github.com/phpseclib/phpseclib.git",
  6068. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6069. },
  6070. "dist": {
  6071. "type": "zip",
  6072. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6073. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6074. "shasum": ""
  6075. },
  6076. "require": {
  6077. "paragonie/constant_time_encoding": "^1|^2|^3",
  6078. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6079. "php": ">=5.6.1"
  6080. },
  6081. "require-dev": {
  6082. "phpunit/phpunit": "*"
  6083. },
  6084. "suggest": {
  6085. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6086. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6087. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6088. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6089. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6090. },
  6091. "type": "library",
  6092. "autoload": {
  6093. "files": [
  6094. "phpseclib/bootstrap.php"
  6095. ],
  6096. "psr-4": {
  6097. "phpseclib3\\": "phpseclib/"
  6098. }
  6099. },
  6100. "notification-url": "https://packagist.org/downloads/",
  6101. "license": [
  6102. "MIT"
  6103. ],
  6104. "authors": [
  6105. {
  6106. "name": "Jim Wigginton",
  6107. "email": "terrafrost@php.net",
  6108. "role": "Lead Developer"
  6109. },
  6110. {
  6111. "name": "Patrick Monnerat",
  6112. "email": "pm@datasphere.ch",
  6113. "role": "Developer"
  6114. },
  6115. {
  6116. "name": "Andreas Fischer",
  6117. "email": "bantu@phpbb.com",
  6118. "role": "Developer"
  6119. },
  6120. {
  6121. "name": "Hans-Jürgen Petrich",
  6122. "email": "petrich@tronic-media.com",
  6123. "role": "Developer"
  6124. },
  6125. {
  6126. "name": "Graham Campbell",
  6127. "email": "graham@alt-three.com",
  6128. "role": "Developer"
  6129. }
  6130. ],
  6131. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6132. "homepage": "http://phpseclib.sourceforge.net",
  6133. "keywords": [
  6134. "BigInteger",
  6135. "aes",
  6136. "asn.1",
  6137. "asn1",
  6138. "blowfish",
  6139. "crypto",
  6140. "cryptography",
  6141. "encryption",
  6142. "rsa",
  6143. "security",
  6144. "sftp",
  6145. "signature",
  6146. "signing",
  6147. "ssh",
  6148. "twofish",
  6149. "x.509",
  6150. "x509"
  6151. ],
  6152. "support": {
  6153. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6154. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6155. },
  6156. "funding": [
  6157. {
  6158. "url": "https://github.com/terrafrost",
  6159. "type": "github"
  6160. },
  6161. {
  6162. "url": "https://www.patreon.com/phpseclib",
  6163. "type": "patreon"
  6164. },
  6165. {
  6166. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6167. "type": "tidelift"
  6168. }
  6169. ],
  6170. "time": "2024-12-14T21:12:59+00:00"
  6171. },
  6172. {
  6173. "name": "psr/cache",
  6174. "version": "3.0.0",
  6175. "source": {
  6176. "type": "git",
  6177. "url": "https://github.com/php-fig/cache.git",
  6178. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6179. },
  6180. "dist": {
  6181. "type": "zip",
  6182. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6183. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6184. "shasum": ""
  6185. },
  6186. "require": {
  6187. "php": ">=8.0.0"
  6188. },
  6189. "type": "library",
  6190. "extra": {
  6191. "branch-alias": {
  6192. "dev-master": "1.0.x-dev"
  6193. }
  6194. },
  6195. "autoload": {
  6196. "psr-4": {
  6197. "Psr\\Cache\\": "src/"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "authors": [
  6205. {
  6206. "name": "PHP-FIG",
  6207. "homepage": "https://www.php-fig.org/"
  6208. }
  6209. ],
  6210. "description": "Common interface for caching libraries",
  6211. "keywords": [
  6212. "cache",
  6213. "psr",
  6214. "psr-6"
  6215. ],
  6216. "support": {
  6217. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6218. },
  6219. "time": "2021-02-03T23:26:27+00:00"
  6220. },
  6221. {
  6222. "name": "psr/clock",
  6223. "version": "1.0.0",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/php-fig/clock.git",
  6227. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6232. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": "^7.0 || ^8.0"
  6237. },
  6238. "type": "library",
  6239. "autoload": {
  6240. "psr-4": {
  6241. "Psr\\Clock\\": "src/"
  6242. }
  6243. },
  6244. "notification-url": "https://packagist.org/downloads/",
  6245. "license": [
  6246. "MIT"
  6247. ],
  6248. "authors": [
  6249. {
  6250. "name": "PHP-FIG",
  6251. "homepage": "https://www.php-fig.org/"
  6252. }
  6253. ],
  6254. "description": "Common interface for reading the clock.",
  6255. "homepage": "https://github.com/php-fig/clock",
  6256. "keywords": [
  6257. "clock",
  6258. "now",
  6259. "psr",
  6260. "psr-20",
  6261. "time"
  6262. ],
  6263. "support": {
  6264. "issues": "https://github.com/php-fig/clock/issues",
  6265. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6266. },
  6267. "time": "2022-11-25T14:36:26+00:00"
  6268. },
  6269. {
  6270. "name": "psr/container",
  6271. "version": "2.0.2",
  6272. "source": {
  6273. "type": "git",
  6274. "url": "https://github.com/php-fig/container.git",
  6275. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6276. },
  6277. "dist": {
  6278. "type": "zip",
  6279. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6280. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6281. "shasum": ""
  6282. },
  6283. "require": {
  6284. "php": ">=7.4.0"
  6285. },
  6286. "type": "library",
  6287. "extra": {
  6288. "branch-alias": {
  6289. "dev-master": "2.0.x-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "psr-4": {
  6294. "Psr\\Container\\": "src/"
  6295. }
  6296. },
  6297. "notification-url": "https://packagist.org/downloads/",
  6298. "license": [
  6299. "MIT"
  6300. ],
  6301. "authors": [
  6302. {
  6303. "name": "PHP-FIG",
  6304. "homepage": "https://www.php-fig.org/"
  6305. }
  6306. ],
  6307. "description": "Common Container Interface (PHP FIG PSR-11)",
  6308. "homepage": "https://github.com/php-fig/container",
  6309. "keywords": [
  6310. "PSR-11",
  6311. "container",
  6312. "container-interface",
  6313. "container-interop",
  6314. "psr"
  6315. ],
  6316. "support": {
  6317. "issues": "https://github.com/php-fig/container/issues",
  6318. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6319. },
  6320. "time": "2021-11-05T16:47:00+00:00"
  6321. },
  6322. {
  6323. "name": "psr/event-dispatcher",
  6324. "version": "1.0.0",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/php-fig/event-dispatcher.git",
  6328. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6333. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "php": ">=7.2.0"
  6338. },
  6339. "type": "library",
  6340. "extra": {
  6341. "branch-alias": {
  6342. "dev-master": "1.0.x-dev"
  6343. }
  6344. },
  6345. "autoload": {
  6346. "psr-4": {
  6347. "Psr\\EventDispatcher\\": "src/"
  6348. }
  6349. },
  6350. "notification-url": "https://packagist.org/downloads/",
  6351. "license": [
  6352. "MIT"
  6353. ],
  6354. "authors": [
  6355. {
  6356. "name": "PHP-FIG",
  6357. "homepage": "http://www.php-fig.org/"
  6358. }
  6359. ],
  6360. "description": "Standard interfaces for event handling.",
  6361. "keywords": [
  6362. "events",
  6363. "psr",
  6364. "psr-14"
  6365. ],
  6366. "support": {
  6367. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6368. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6369. },
  6370. "time": "2019-01-08T18:20:26+00:00"
  6371. },
  6372. {
  6373. "name": "psr/http-client",
  6374. "version": "1.0.3",
  6375. "source": {
  6376. "type": "git",
  6377. "url": "https://github.com/php-fig/http-client.git",
  6378. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6379. },
  6380. "dist": {
  6381. "type": "zip",
  6382. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6383. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6384. "shasum": ""
  6385. },
  6386. "require": {
  6387. "php": "^7.0 || ^8.0",
  6388. "psr/http-message": "^1.0 || ^2.0"
  6389. },
  6390. "type": "library",
  6391. "extra": {
  6392. "branch-alias": {
  6393. "dev-master": "1.0.x-dev"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Psr\\Http\\Client\\": "src/"
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "PHP-FIG",
  6408. "homepage": "https://www.php-fig.org/"
  6409. }
  6410. ],
  6411. "description": "Common interface for HTTP clients",
  6412. "homepage": "https://github.com/php-fig/http-client",
  6413. "keywords": [
  6414. "http",
  6415. "http-client",
  6416. "psr",
  6417. "psr-18"
  6418. ],
  6419. "support": {
  6420. "source": "https://github.com/php-fig/http-client"
  6421. },
  6422. "time": "2023-09-23T14:17:50+00:00"
  6423. },
  6424. {
  6425. "name": "psr/http-factory",
  6426. "version": "1.1.0",
  6427. "source": {
  6428. "type": "git",
  6429. "url": "https://github.com/php-fig/http-factory.git",
  6430. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6431. },
  6432. "dist": {
  6433. "type": "zip",
  6434. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6435. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6436. "shasum": ""
  6437. },
  6438. "require": {
  6439. "php": ">=7.1",
  6440. "psr/http-message": "^1.0 || ^2.0"
  6441. },
  6442. "type": "library",
  6443. "extra": {
  6444. "branch-alias": {
  6445. "dev-master": "1.0.x-dev"
  6446. }
  6447. },
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Psr\\Http\\Message\\": "src/"
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "PHP-FIG",
  6460. "homepage": "https://www.php-fig.org/"
  6461. }
  6462. ],
  6463. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6464. "keywords": [
  6465. "factory",
  6466. "http",
  6467. "message",
  6468. "psr",
  6469. "psr-17",
  6470. "psr-7",
  6471. "request",
  6472. "response"
  6473. ],
  6474. "support": {
  6475. "source": "https://github.com/php-fig/http-factory"
  6476. },
  6477. "time": "2024-04-15T12:06:14+00:00"
  6478. },
  6479. {
  6480. "name": "psr/http-message",
  6481. "version": "2.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/php-fig/http-message.git",
  6485. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6490. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": "^7.2 || ^8.0"
  6495. },
  6496. "type": "library",
  6497. "extra": {
  6498. "branch-alias": {
  6499. "dev-master": "2.0.x-dev"
  6500. }
  6501. },
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Psr\\Http\\Message\\": "src/"
  6505. }
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "PHP-FIG",
  6514. "homepage": "https://www.php-fig.org/"
  6515. }
  6516. ],
  6517. "description": "Common interface for HTTP messages",
  6518. "homepage": "https://github.com/php-fig/http-message",
  6519. "keywords": [
  6520. "http",
  6521. "http-message",
  6522. "psr",
  6523. "psr-7",
  6524. "request",
  6525. "response"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6529. },
  6530. "time": "2023-04-04T09:54:51+00:00"
  6531. },
  6532. {
  6533. "name": "psr/http-server-handler",
  6534. "version": "1.0.2",
  6535. "source": {
  6536. "type": "git",
  6537. "url": "https://github.com/php-fig/http-server-handler.git",
  6538. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6539. },
  6540. "dist": {
  6541. "type": "zip",
  6542. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6543. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6544. "shasum": ""
  6545. },
  6546. "require": {
  6547. "php": ">=7.0",
  6548. "psr/http-message": "^1.0 || ^2.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\\Http\\Server\\": "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 HTTP server-side request handler",
  6572. "keywords": [
  6573. "handler",
  6574. "http",
  6575. "http-interop",
  6576. "psr",
  6577. "psr-15",
  6578. "psr-7",
  6579. "request",
  6580. "response",
  6581. "server"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6585. },
  6586. "time": "2023-04-10T20:06:20+00:00"
  6587. },
  6588. {
  6589. "name": "psr/http-server-middleware",
  6590. "version": "1.0.2",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/php-fig/http-server-middleware.git",
  6594. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6599. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": ">=7.0",
  6604. "psr/http-message": "^1.0 || ^2.0",
  6605. "psr/http-server-handler": "^1.0"
  6606. },
  6607. "type": "library",
  6608. "extra": {
  6609. "branch-alias": {
  6610. "dev-master": "1.0.x-dev"
  6611. }
  6612. },
  6613. "autoload": {
  6614. "psr-4": {
  6615. "Psr\\Http\\Server\\": "src/"
  6616. }
  6617. },
  6618. "notification-url": "https://packagist.org/downloads/",
  6619. "license": [
  6620. "MIT"
  6621. ],
  6622. "authors": [
  6623. {
  6624. "name": "PHP-FIG",
  6625. "homepage": "https://www.php-fig.org/"
  6626. }
  6627. ],
  6628. "description": "Common interface for HTTP server-side middleware",
  6629. "keywords": [
  6630. "http",
  6631. "http-interop",
  6632. "middleware",
  6633. "psr",
  6634. "psr-15",
  6635. "psr-7",
  6636. "request",
  6637. "response"
  6638. ],
  6639. "support": {
  6640. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6641. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6642. },
  6643. "time": "2023-04-11T06:14:47+00:00"
  6644. },
  6645. {
  6646. "name": "psr/log",
  6647. "version": "3.0.2",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://github.com/php-fig/log.git",
  6651. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6656. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6657. "shasum": ""
  6658. },
  6659. "require": {
  6660. "php": ">=8.0.0"
  6661. },
  6662. "type": "library",
  6663. "extra": {
  6664. "branch-alias": {
  6665. "dev-master": "3.x-dev"
  6666. }
  6667. },
  6668. "autoload": {
  6669. "psr-4": {
  6670. "Psr\\Log\\": "src"
  6671. }
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "MIT"
  6676. ],
  6677. "authors": [
  6678. {
  6679. "name": "PHP-FIG",
  6680. "homepage": "https://www.php-fig.org/"
  6681. }
  6682. ],
  6683. "description": "Common interface for logging libraries",
  6684. "homepage": "https://github.com/php-fig/log",
  6685. "keywords": [
  6686. "log",
  6687. "psr",
  6688. "psr-3"
  6689. ],
  6690. "support": {
  6691. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6692. },
  6693. "time": "2024-09-11T13:17:53+00:00"
  6694. },
  6695. {
  6696. "name": "psr/simple-cache",
  6697. "version": "3.0.0",
  6698. "source": {
  6699. "type": "git",
  6700. "url": "https://github.com/php-fig/simple-cache.git",
  6701. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6702. },
  6703. "dist": {
  6704. "type": "zip",
  6705. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6706. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6707. "shasum": ""
  6708. },
  6709. "require": {
  6710. "php": ">=8.0.0"
  6711. },
  6712. "type": "library",
  6713. "extra": {
  6714. "branch-alias": {
  6715. "dev-master": "3.0.x-dev"
  6716. }
  6717. },
  6718. "autoload": {
  6719. "psr-4": {
  6720. "Psr\\SimpleCache\\": "src/"
  6721. }
  6722. },
  6723. "notification-url": "https://packagist.org/downloads/",
  6724. "license": [
  6725. "MIT"
  6726. ],
  6727. "authors": [
  6728. {
  6729. "name": "PHP-FIG",
  6730. "homepage": "https://www.php-fig.org/"
  6731. }
  6732. ],
  6733. "description": "Common interfaces for simple caching",
  6734. "keywords": [
  6735. "cache",
  6736. "caching",
  6737. "psr",
  6738. "psr-16",
  6739. "simple-cache"
  6740. ],
  6741. "support": {
  6742. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6743. },
  6744. "time": "2021-10-29T13:26:27+00:00"
  6745. },
  6746. {
  6747. "name": "ralouphie/getallheaders",
  6748. "version": "3.0.3",
  6749. "source": {
  6750. "type": "git",
  6751. "url": "https://github.com/ralouphie/getallheaders.git",
  6752. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6753. },
  6754. "dist": {
  6755. "type": "zip",
  6756. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6757. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6758. "shasum": ""
  6759. },
  6760. "require": {
  6761. "php": ">=5.6"
  6762. },
  6763. "require-dev": {
  6764. "php-coveralls/php-coveralls": "^2.1",
  6765. "phpunit/phpunit": "^5 || ^6.5"
  6766. },
  6767. "type": "library",
  6768. "autoload": {
  6769. "files": [
  6770. "src/getallheaders.php"
  6771. ]
  6772. },
  6773. "notification-url": "https://packagist.org/downloads/",
  6774. "license": [
  6775. "MIT"
  6776. ],
  6777. "authors": [
  6778. {
  6779. "name": "Ralph Khattar",
  6780. "email": "ralph.khattar@gmail.com"
  6781. }
  6782. ],
  6783. "description": "A polyfill for getallheaders.",
  6784. "support": {
  6785. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6786. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6787. },
  6788. "time": "2019-03-08T08:55:37+00:00"
  6789. },
  6790. {
  6791. "name": "stella-maris/clock",
  6792. "version": "0.1.7",
  6793. "source": {
  6794. "type": "git",
  6795. "url": "https://github.com/stella-maris-solutions/clock.git",
  6796. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6797. },
  6798. "dist": {
  6799. "type": "zip",
  6800. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6801. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6802. "shasum": ""
  6803. },
  6804. "require": {
  6805. "php": "^7.0|^8.0",
  6806. "psr/clock": "^1.0"
  6807. },
  6808. "type": "library",
  6809. "autoload": {
  6810. "psr-4": {
  6811. "StellaMaris\\Clock\\": "src"
  6812. }
  6813. },
  6814. "notification-url": "https://packagist.org/downloads/",
  6815. "license": [
  6816. "MIT"
  6817. ],
  6818. "authors": [
  6819. {
  6820. "name": "Andreas Heigl",
  6821. "role": "Maintainer"
  6822. }
  6823. ],
  6824. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6825. "homepage": "https://gitlab.com/stella-maris/clock",
  6826. "keywords": [
  6827. "clock",
  6828. "datetime",
  6829. "point in time",
  6830. "psr20"
  6831. ],
  6832. "support": {
  6833. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6834. },
  6835. "time": "2022-11-25T16:15:06+00:00"
  6836. },
  6837. {
  6838. "name": "swow/psr7-plus",
  6839. "version": "v1.1.2",
  6840. "source": {
  6841. "type": "git",
  6842. "url": "https://github.com/swow/psr7-plus.git",
  6843. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6844. },
  6845. "dist": {
  6846. "type": "zip",
  6847. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6848. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6849. "shasum": ""
  6850. },
  6851. "require": {
  6852. "php": ">=8.0",
  6853. "psr/http-client": "^1.0",
  6854. "psr/http-factory": "^1.0",
  6855. "psr/http-message": "^1.1|^2.0"
  6856. },
  6857. "type": "library",
  6858. "autoload": {
  6859. "psr-4": {
  6860. "Swow\\Psr7\\Message\\": "src/Message/"
  6861. }
  6862. },
  6863. "notification-url": "https://packagist.org/downloads/",
  6864. "license": [
  6865. "Apache-2.0"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "twose",
  6870. "email": "twosee@php.net"
  6871. }
  6872. ],
  6873. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6874. "keywords": [
  6875. "http",
  6876. "psr17",
  6877. "psr7",
  6878. "swow",
  6879. "websocket"
  6880. ],
  6881. "support": {
  6882. "issues": "https://github.com/swow/swow",
  6883. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6884. },
  6885. "time": "2023-06-15T09:18:11+00:00"
  6886. },
  6887. {
  6888. "name": "symfony/console",
  6889. "version": "v6.4.15",
  6890. "source": {
  6891. "type": "git",
  6892. "url": "https://github.com/symfony/console.git",
  6893. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6894. },
  6895. "dist": {
  6896. "type": "zip",
  6897. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6898. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6899. "shasum": ""
  6900. },
  6901. "require": {
  6902. "php": ">=8.1",
  6903. "symfony/deprecation-contracts": "^2.5|^3",
  6904. "symfony/polyfill-mbstring": "~1.0",
  6905. "symfony/service-contracts": "^2.5|^3",
  6906. "symfony/string": "^5.4|^6.0|^7.0"
  6907. },
  6908. "conflict": {
  6909. "symfony/dependency-injection": "<5.4",
  6910. "symfony/dotenv": "<5.4",
  6911. "symfony/event-dispatcher": "<5.4",
  6912. "symfony/lock": "<5.4",
  6913. "symfony/process": "<5.4"
  6914. },
  6915. "provide": {
  6916. "psr/log-implementation": "1.0|2.0|3.0"
  6917. },
  6918. "require-dev": {
  6919. "psr/log": "^1|^2|^3",
  6920. "symfony/config": "^5.4|^6.0|^7.0",
  6921. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6922. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6923. "symfony/http-foundation": "^6.4|^7.0",
  6924. "symfony/http-kernel": "^6.4|^7.0",
  6925. "symfony/lock": "^5.4|^6.0|^7.0",
  6926. "symfony/messenger": "^5.4|^6.0|^7.0",
  6927. "symfony/process": "^5.4|^6.0|^7.0",
  6928. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6929. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6930. },
  6931. "type": "library",
  6932. "autoload": {
  6933. "psr-4": {
  6934. "Symfony\\Component\\Console\\": ""
  6935. },
  6936. "exclude-from-classmap": [
  6937. "/Tests/"
  6938. ]
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Fabien Potencier",
  6947. "email": "fabien@symfony.com"
  6948. },
  6949. {
  6950. "name": "Symfony Community",
  6951. "homepage": "https://symfony.com/contributors"
  6952. }
  6953. ],
  6954. "description": "Eases the creation of beautiful and testable command line interfaces",
  6955. "homepage": "https://symfony.com",
  6956. "keywords": [
  6957. "cli",
  6958. "command-line",
  6959. "console",
  6960. "terminal"
  6961. ],
  6962. "support": {
  6963. "source": "https://github.com/symfony/console/tree/v6.4.15"
  6964. },
  6965. "funding": [
  6966. {
  6967. "url": "https://symfony.com/sponsor",
  6968. "type": "custom"
  6969. },
  6970. {
  6971. "url": "https://github.com/fabpot",
  6972. "type": "github"
  6973. },
  6974. {
  6975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6976. "type": "tidelift"
  6977. }
  6978. ],
  6979. "time": "2024-11-06T14:19:14+00:00"
  6980. },
  6981. {
  6982. "name": "symfony/deprecation-contracts",
  6983. "version": "v3.5.1",
  6984. "source": {
  6985. "type": "git",
  6986. "url": "https://github.com/symfony/deprecation-contracts.git",
  6987. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6988. },
  6989. "dist": {
  6990. "type": "zip",
  6991. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6992. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6993. "shasum": ""
  6994. },
  6995. "require": {
  6996. "php": ">=8.1"
  6997. },
  6998. "type": "library",
  6999. "extra": {
  7000. "branch-alias": {
  7001. "dev-main": "3.5-dev"
  7002. },
  7003. "thanks": {
  7004. "name": "symfony/contracts",
  7005. "url": "https://github.com/symfony/contracts"
  7006. }
  7007. },
  7008. "autoload": {
  7009. "files": [
  7010. "function.php"
  7011. ]
  7012. },
  7013. "notification-url": "https://packagist.org/downloads/",
  7014. "license": [
  7015. "MIT"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Nicolas Grekas",
  7020. "email": "p@tchwork.com"
  7021. },
  7022. {
  7023. "name": "Symfony Community",
  7024. "homepage": "https://symfony.com/contributors"
  7025. }
  7026. ],
  7027. "description": "A generic function and convention to trigger deprecation notices",
  7028. "homepage": "https://symfony.com",
  7029. "support": {
  7030. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7031. },
  7032. "funding": [
  7033. {
  7034. "url": "https://symfony.com/sponsor",
  7035. "type": "custom"
  7036. },
  7037. {
  7038. "url": "https://github.com/fabpot",
  7039. "type": "github"
  7040. },
  7041. {
  7042. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7043. "type": "tidelift"
  7044. }
  7045. ],
  7046. "time": "2024-09-25T14:20:29+00:00"
  7047. },
  7048. {
  7049. "name": "symfony/finder",
  7050. "version": "v6.4.13",
  7051. "source": {
  7052. "type": "git",
  7053. "url": "https://github.com/symfony/finder.git",
  7054. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7055. },
  7056. "dist": {
  7057. "type": "zip",
  7058. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7059. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7060. "shasum": ""
  7061. },
  7062. "require": {
  7063. "php": ">=8.1"
  7064. },
  7065. "require-dev": {
  7066. "symfony/filesystem": "^6.0|^7.0"
  7067. },
  7068. "type": "library",
  7069. "autoload": {
  7070. "psr-4": {
  7071. "Symfony\\Component\\Finder\\": ""
  7072. },
  7073. "exclude-from-classmap": [
  7074. "/Tests/"
  7075. ]
  7076. },
  7077. "notification-url": "https://packagist.org/downloads/",
  7078. "license": [
  7079. "MIT"
  7080. ],
  7081. "authors": [
  7082. {
  7083. "name": "Fabien Potencier",
  7084. "email": "fabien@symfony.com"
  7085. },
  7086. {
  7087. "name": "Symfony Community",
  7088. "homepage": "https://symfony.com/contributors"
  7089. }
  7090. ],
  7091. "description": "Finds files and directories via an intuitive fluent interface",
  7092. "homepage": "https://symfony.com",
  7093. "support": {
  7094. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://symfony.com/sponsor",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/fabpot",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2024-10-01T08:30:56+00:00"
  7111. },
  7112. {
  7113. "name": "symfony/polyfill-ctype",
  7114. "version": "v1.31.0",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/symfony/polyfill-ctype.git",
  7118. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7123. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": ">=7.2"
  7128. },
  7129. "provide": {
  7130. "ext-ctype": "*"
  7131. },
  7132. "suggest": {
  7133. "ext-ctype": "For best performance"
  7134. },
  7135. "type": "library",
  7136. "extra": {
  7137. "thanks": {
  7138. "url": "https://github.com/symfony/polyfill",
  7139. "name": "symfony/polyfill"
  7140. }
  7141. },
  7142. "autoload": {
  7143. "files": [
  7144. "bootstrap.php"
  7145. ],
  7146. "psr-4": {
  7147. "Symfony\\Polyfill\\Ctype\\": ""
  7148. }
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Gert de Pagter",
  7157. "email": "BackEndTea@gmail.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Symfony polyfill for ctype functions",
  7165. "homepage": "https://symfony.com",
  7166. "keywords": [
  7167. "compatibility",
  7168. "ctype",
  7169. "polyfill",
  7170. "portable"
  7171. ],
  7172. "support": {
  7173. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-09-09T11:45:10+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/polyfill-intl-grapheme",
  7193. "version": "v1.31.0",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7197. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7202. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": ">=7.2"
  7207. },
  7208. "suggest": {
  7209. "ext-intl": "For best performance"
  7210. },
  7211. "type": "library",
  7212. "extra": {
  7213. "thanks": {
  7214. "url": "https://github.com/symfony/polyfill",
  7215. "name": "symfony/polyfill"
  7216. }
  7217. },
  7218. "autoload": {
  7219. "files": [
  7220. "bootstrap.php"
  7221. ],
  7222. "psr-4": {
  7223. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7224. }
  7225. },
  7226. "notification-url": "https://packagist.org/downloads/",
  7227. "license": [
  7228. "MIT"
  7229. ],
  7230. "authors": [
  7231. {
  7232. "name": "Nicolas Grekas",
  7233. "email": "p@tchwork.com"
  7234. },
  7235. {
  7236. "name": "Symfony Community",
  7237. "homepage": "https://symfony.com/contributors"
  7238. }
  7239. ],
  7240. "description": "Symfony polyfill for intl's grapheme_* functions",
  7241. "homepage": "https://symfony.com",
  7242. "keywords": [
  7243. "compatibility",
  7244. "grapheme",
  7245. "intl",
  7246. "polyfill",
  7247. "portable",
  7248. "shim"
  7249. ],
  7250. "support": {
  7251. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7252. },
  7253. "funding": [
  7254. {
  7255. "url": "https://symfony.com/sponsor",
  7256. "type": "custom"
  7257. },
  7258. {
  7259. "url": "https://github.com/fabpot",
  7260. "type": "github"
  7261. },
  7262. {
  7263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7264. "type": "tidelift"
  7265. }
  7266. ],
  7267. "time": "2024-09-09T11:45:10+00:00"
  7268. },
  7269. {
  7270. "name": "symfony/polyfill-intl-idn",
  7271. "version": "v1.31.0",
  7272. "source": {
  7273. "type": "git",
  7274. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7275. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7276. },
  7277. "dist": {
  7278. "type": "zip",
  7279. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7280. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7281. "shasum": ""
  7282. },
  7283. "require": {
  7284. "php": ">=7.2",
  7285. "symfony/polyfill-intl-normalizer": "^1.10"
  7286. },
  7287. "suggest": {
  7288. "ext-intl": "For best performance"
  7289. },
  7290. "type": "library",
  7291. "extra": {
  7292. "thanks": {
  7293. "url": "https://github.com/symfony/polyfill",
  7294. "name": "symfony/polyfill"
  7295. }
  7296. },
  7297. "autoload": {
  7298. "files": [
  7299. "bootstrap.php"
  7300. ],
  7301. "psr-4": {
  7302. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "authors": [
  7310. {
  7311. "name": "Laurent Bassin",
  7312. "email": "laurent@bassin.info"
  7313. },
  7314. {
  7315. "name": "Trevor Rowbotham",
  7316. "email": "trevor.rowbotham@pm.me"
  7317. },
  7318. {
  7319. "name": "Symfony Community",
  7320. "homepage": "https://symfony.com/contributors"
  7321. }
  7322. ],
  7323. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7324. "homepage": "https://symfony.com",
  7325. "keywords": [
  7326. "compatibility",
  7327. "idn",
  7328. "intl",
  7329. "polyfill",
  7330. "portable",
  7331. "shim"
  7332. ],
  7333. "support": {
  7334. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7335. },
  7336. "funding": [
  7337. {
  7338. "url": "https://symfony.com/sponsor",
  7339. "type": "custom"
  7340. },
  7341. {
  7342. "url": "https://github.com/fabpot",
  7343. "type": "github"
  7344. },
  7345. {
  7346. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7347. "type": "tidelift"
  7348. }
  7349. ],
  7350. "time": "2024-09-09T11:45:10+00:00"
  7351. },
  7352. {
  7353. "name": "symfony/polyfill-intl-normalizer",
  7354. "version": "v1.31.0",
  7355. "source": {
  7356. "type": "git",
  7357. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7358. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7359. },
  7360. "dist": {
  7361. "type": "zip",
  7362. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7363. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7364. "shasum": ""
  7365. },
  7366. "require": {
  7367. "php": ">=7.2"
  7368. },
  7369. "suggest": {
  7370. "ext-intl": "For best performance"
  7371. },
  7372. "type": "library",
  7373. "extra": {
  7374. "thanks": {
  7375. "url": "https://github.com/symfony/polyfill",
  7376. "name": "symfony/polyfill"
  7377. }
  7378. },
  7379. "autoload": {
  7380. "files": [
  7381. "bootstrap.php"
  7382. ],
  7383. "psr-4": {
  7384. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7385. },
  7386. "classmap": [
  7387. "Resources/stubs"
  7388. ]
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "Nicolas Grekas",
  7397. "email": "p@tchwork.com"
  7398. },
  7399. {
  7400. "name": "Symfony Community",
  7401. "homepage": "https://symfony.com/contributors"
  7402. }
  7403. ],
  7404. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7405. "homepage": "https://symfony.com",
  7406. "keywords": [
  7407. "compatibility",
  7408. "intl",
  7409. "normalizer",
  7410. "polyfill",
  7411. "portable",
  7412. "shim"
  7413. ],
  7414. "support": {
  7415. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7416. },
  7417. "funding": [
  7418. {
  7419. "url": "https://symfony.com/sponsor",
  7420. "type": "custom"
  7421. },
  7422. {
  7423. "url": "https://github.com/fabpot",
  7424. "type": "github"
  7425. },
  7426. {
  7427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7428. "type": "tidelift"
  7429. }
  7430. ],
  7431. "time": "2024-09-09T11:45:10+00:00"
  7432. },
  7433. {
  7434. "name": "symfony/polyfill-mbstring",
  7435. "version": "v1.31.0",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7439. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7444. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "php": ">=7.2"
  7449. },
  7450. "provide": {
  7451. "ext-mbstring": "*"
  7452. },
  7453. "suggest": {
  7454. "ext-mbstring": "For best performance"
  7455. },
  7456. "type": "library",
  7457. "extra": {
  7458. "thanks": {
  7459. "url": "https://github.com/symfony/polyfill",
  7460. "name": "symfony/polyfill"
  7461. }
  7462. },
  7463. "autoload": {
  7464. "files": [
  7465. "bootstrap.php"
  7466. ],
  7467. "psr-4": {
  7468. "Symfony\\Polyfill\\Mbstring\\": ""
  7469. }
  7470. },
  7471. "notification-url": "https://packagist.org/downloads/",
  7472. "license": [
  7473. "MIT"
  7474. ],
  7475. "authors": [
  7476. {
  7477. "name": "Nicolas Grekas",
  7478. "email": "p@tchwork.com"
  7479. },
  7480. {
  7481. "name": "Symfony Community",
  7482. "homepage": "https://symfony.com/contributors"
  7483. }
  7484. ],
  7485. "description": "Symfony polyfill for the Mbstring extension",
  7486. "homepage": "https://symfony.com",
  7487. "keywords": [
  7488. "compatibility",
  7489. "mbstring",
  7490. "polyfill",
  7491. "portable",
  7492. "shim"
  7493. ],
  7494. "support": {
  7495. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7496. },
  7497. "funding": [
  7498. {
  7499. "url": "https://symfony.com/sponsor",
  7500. "type": "custom"
  7501. },
  7502. {
  7503. "url": "https://github.com/fabpot",
  7504. "type": "github"
  7505. },
  7506. {
  7507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7508. "type": "tidelift"
  7509. }
  7510. ],
  7511. "time": "2024-09-09T11:45:10+00:00"
  7512. },
  7513. {
  7514. "name": "symfony/polyfill-php80",
  7515. "version": "v1.31.0",
  7516. "source": {
  7517. "type": "git",
  7518. "url": "https://github.com/symfony/polyfill-php80.git",
  7519. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7520. },
  7521. "dist": {
  7522. "type": "zip",
  7523. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7524. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7525. "shasum": ""
  7526. },
  7527. "require": {
  7528. "php": ">=7.2"
  7529. },
  7530. "type": "library",
  7531. "extra": {
  7532. "thanks": {
  7533. "url": "https://github.com/symfony/polyfill",
  7534. "name": "symfony/polyfill"
  7535. }
  7536. },
  7537. "autoload": {
  7538. "files": [
  7539. "bootstrap.php"
  7540. ],
  7541. "psr-4": {
  7542. "Symfony\\Polyfill\\Php80\\": ""
  7543. },
  7544. "classmap": [
  7545. "Resources/stubs"
  7546. ]
  7547. },
  7548. "notification-url": "https://packagist.org/downloads/",
  7549. "license": [
  7550. "MIT"
  7551. ],
  7552. "authors": [
  7553. {
  7554. "name": "Ion Bazan",
  7555. "email": "ion.bazan@gmail.com"
  7556. },
  7557. {
  7558. "name": "Nicolas Grekas",
  7559. "email": "p@tchwork.com"
  7560. },
  7561. {
  7562. "name": "Symfony Community",
  7563. "homepage": "https://symfony.com/contributors"
  7564. }
  7565. ],
  7566. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7567. "homepage": "https://symfony.com",
  7568. "keywords": [
  7569. "compatibility",
  7570. "polyfill",
  7571. "portable",
  7572. "shim"
  7573. ],
  7574. "support": {
  7575. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://symfony.com/sponsor",
  7580. "type": "custom"
  7581. },
  7582. {
  7583. "url": "https://github.com/fabpot",
  7584. "type": "github"
  7585. },
  7586. {
  7587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7588. "type": "tidelift"
  7589. }
  7590. ],
  7591. "time": "2024-09-09T11:45:10+00:00"
  7592. },
  7593. {
  7594. "name": "symfony/service-contracts",
  7595. "version": "v3.5.1",
  7596. "source": {
  7597. "type": "git",
  7598. "url": "https://github.com/symfony/service-contracts.git",
  7599. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  7600. },
  7601. "dist": {
  7602. "type": "zip",
  7603. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7604. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  7605. "shasum": ""
  7606. },
  7607. "require": {
  7608. "php": ">=8.1",
  7609. "psr/container": "^1.1|^2.0",
  7610. "symfony/deprecation-contracts": "^2.5|^3"
  7611. },
  7612. "conflict": {
  7613. "ext-psr": "<1.1|>=2"
  7614. },
  7615. "type": "library",
  7616. "extra": {
  7617. "branch-alias": {
  7618. "dev-main": "3.5-dev"
  7619. },
  7620. "thanks": {
  7621. "name": "symfony/contracts",
  7622. "url": "https://github.com/symfony/contracts"
  7623. }
  7624. },
  7625. "autoload": {
  7626. "psr-4": {
  7627. "Symfony\\Contracts\\Service\\": ""
  7628. },
  7629. "exclude-from-classmap": [
  7630. "/Test/"
  7631. ]
  7632. },
  7633. "notification-url": "https://packagist.org/downloads/",
  7634. "license": [
  7635. "MIT"
  7636. ],
  7637. "authors": [
  7638. {
  7639. "name": "Nicolas Grekas",
  7640. "email": "p@tchwork.com"
  7641. },
  7642. {
  7643. "name": "Symfony Community",
  7644. "homepage": "https://symfony.com/contributors"
  7645. }
  7646. ],
  7647. "description": "Generic abstractions related to writing services",
  7648. "homepage": "https://symfony.com",
  7649. "keywords": [
  7650. "abstractions",
  7651. "contracts",
  7652. "decoupling",
  7653. "interfaces",
  7654. "interoperability",
  7655. "standards"
  7656. ],
  7657. "support": {
  7658. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  7659. },
  7660. "funding": [
  7661. {
  7662. "url": "https://symfony.com/sponsor",
  7663. "type": "custom"
  7664. },
  7665. {
  7666. "url": "https://github.com/fabpot",
  7667. "type": "github"
  7668. },
  7669. {
  7670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7671. "type": "tidelift"
  7672. }
  7673. ],
  7674. "time": "2024-09-25T14:20:29+00:00"
  7675. },
  7676. {
  7677. "name": "symfony/string",
  7678. "version": "v6.4.15",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/symfony/string.git",
  7682. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7687. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "php": ">=8.1",
  7692. "symfony/polyfill-ctype": "~1.8",
  7693. "symfony/polyfill-intl-grapheme": "~1.0",
  7694. "symfony/polyfill-intl-normalizer": "~1.0",
  7695. "symfony/polyfill-mbstring": "~1.0"
  7696. },
  7697. "conflict": {
  7698. "symfony/translation-contracts": "<2.5"
  7699. },
  7700. "require-dev": {
  7701. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7702. "symfony/http-client": "^5.4|^6.0|^7.0",
  7703. "symfony/intl": "^6.2|^7.0",
  7704. "symfony/translation-contracts": "^2.5|^3.0",
  7705. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7706. },
  7707. "type": "library",
  7708. "autoload": {
  7709. "files": [
  7710. "Resources/functions.php"
  7711. ],
  7712. "psr-4": {
  7713. "Symfony\\Component\\String\\": ""
  7714. },
  7715. "exclude-from-classmap": [
  7716. "/Tests/"
  7717. ]
  7718. },
  7719. "notification-url": "https://packagist.org/downloads/",
  7720. "license": [
  7721. "MIT"
  7722. ],
  7723. "authors": [
  7724. {
  7725. "name": "Nicolas Grekas",
  7726. "email": "p@tchwork.com"
  7727. },
  7728. {
  7729. "name": "Symfony Community",
  7730. "homepage": "https://symfony.com/contributors"
  7731. }
  7732. ],
  7733. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7734. "homepage": "https://symfony.com",
  7735. "keywords": [
  7736. "grapheme",
  7737. "i18n",
  7738. "string",
  7739. "unicode",
  7740. "utf-8",
  7741. "utf8"
  7742. ],
  7743. "support": {
  7744. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7745. },
  7746. "funding": [
  7747. {
  7748. "url": "https://symfony.com/sponsor",
  7749. "type": "custom"
  7750. },
  7751. {
  7752. "url": "https://github.com/fabpot",
  7753. "type": "github"
  7754. },
  7755. {
  7756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7757. "type": "tidelift"
  7758. }
  7759. ],
  7760. "time": "2024-11-13T13:31:12+00:00"
  7761. },
  7762. {
  7763. "name": "symfony/translation",
  7764. "version": "v6.4.13",
  7765. "source": {
  7766. "type": "git",
  7767. "url": "https://github.com/symfony/translation.git",
  7768. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7769. },
  7770. "dist": {
  7771. "type": "zip",
  7772. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7773. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7774. "shasum": ""
  7775. },
  7776. "require": {
  7777. "php": ">=8.1",
  7778. "symfony/deprecation-contracts": "^2.5|^3",
  7779. "symfony/polyfill-mbstring": "~1.0",
  7780. "symfony/translation-contracts": "^2.5|^3.0"
  7781. },
  7782. "conflict": {
  7783. "symfony/config": "<5.4",
  7784. "symfony/console": "<5.4",
  7785. "symfony/dependency-injection": "<5.4",
  7786. "symfony/http-client-contracts": "<2.5",
  7787. "symfony/http-kernel": "<5.4",
  7788. "symfony/service-contracts": "<2.5",
  7789. "symfony/twig-bundle": "<5.4",
  7790. "symfony/yaml": "<5.4"
  7791. },
  7792. "provide": {
  7793. "symfony/translation-implementation": "2.3|3.0"
  7794. },
  7795. "require-dev": {
  7796. "nikic/php-parser": "^4.18|^5.0",
  7797. "psr/log": "^1|^2|^3",
  7798. "symfony/config": "^5.4|^6.0|^7.0",
  7799. "symfony/console": "^5.4|^6.0|^7.0",
  7800. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7801. "symfony/finder": "^5.4|^6.0|^7.0",
  7802. "symfony/http-client-contracts": "^2.5|^3.0",
  7803. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7804. "symfony/intl": "^5.4|^6.0|^7.0",
  7805. "symfony/polyfill-intl-icu": "^1.21",
  7806. "symfony/routing": "^5.4|^6.0|^7.0",
  7807. "symfony/service-contracts": "^2.5|^3",
  7808. "symfony/yaml": "^5.4|^6.0|^7.0"
  7809. },
  7810. "type": "library",
  7811. "autoload": {
  7812. "files": [
  7813. "Resources/functions.php"
  7814. ],
  7815. "psr-4": {
  7816. "Symfony\\Component\\Translation\\": ""
  7817. },
  7818. "exclude-from-classmap": [
  7819. "/Tests/"
  7820. ]
  7821. },
  7822. "notification-url": "https://packagist.org/downloads/",
  7823. "license": [
  7824. "MIT"
  7825. ],
  7826. "authors": [
  7827. {
  7828. "name": "Fabien Potencier",
  7829. "email": "fabien@symfony.com"
  7830. },
  7831. {
  7832. "name": "Symfony Community",
  7833. "homepage": "https://symfony.com/contributors"
  7834. }
  7835. ],
  7836. "description": "Provides tools to internationalize your application",
  7837. "homepage": "https://symfony.com",
  7838. "support": {
  7839. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7840. },
  7841. "funding": [
  7842. {
  7843. "url": "https://symfony.com/sponsor",
  7844. "type": "custom"
  7845. },
  7846. {
  7847. "url": "https://github.com/fabpot",
  7848. "type": "github"
  7849. },
  7850. {
  7851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7852. "type": "tidelift"
  7853. }
  7854. ],
  7855. "time": "2024-09-27T18:14:25+00:00"
  7856. },
  7857. {
  7858. "name": "symfony/translation-contracts",
  7859. "version": "v3.5.1",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/symfony/translation-contracts.git",
  7863. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  7868. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "php": ">=8.1"
  7873. },
  7874. "type": "library",
  7875. "extra": {
  7876. "branch-alias": {
  7877. "dev-main": "3.5-dev"
  7878. },
  7879. "thanks": {
  7880. "name": "symfony/contracts",
  7881. "url": "https://github.com/symfony/contracts"
  7882. }
  7883. },
  7884. "autoload": {
  7885. "psr-4": {
  7886. "Symfony\\Contracts\\Translation\\": ""
  7887. },
  7888. "exclude-from-classmap": [
  7889. "/Test/"
  7890. ]
  7891. },
  7892. "notification-url": "https://packagist.org/downloads/",
  7893. "license": [
  7894. "MIT"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Nicolas Grekas",
  7899. "email": "p@tchwork.com"
  7900. },
  7901. {
  7902. "name": "Symfony Community",
  7903. "homepage": "https://symfony.com/contributors"
  7904. }
  7905. ],
  7906. "description": "Generic abstractions related to translation",
  7907. "homepage": "https://symfony.com",
  7908. "keywords": [
  7909. "abstractions",
  7910. "contracts",
  7911. "decoupling",
  7912. "interfaces",
  7913. "interoperability",
  7914. "standards"
  7915. ],
  7916. "support": {
  7917. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  7918. },
  7919. "funding": [
  7920. {
  7921. "url": "https://symfony.com/sponsor",
  7922. "type": "custom"
  7923. },
  7924. {
  7925. "url": "https://github.com/fabpot",
  7926. "type": "github"
  7927. },
  7928. {
  7929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7930. "type": "tidelift"
  7931. }
  7932. ],
  7933. "time": "2024-09-25T14:20:29+00:00"
  7934. },
  7935. {
  7936. "name": "vlucas/phpdotenv",
  7937. "version": "v5.6.1",
  7938. "source": {
  7939. "type": "git",
  7940. "url": "https://github.com/vlucas/phpdotenv.git",
  7941. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7942. },
  7943. "dist": {
  7944. "type": "zip",
  7945. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7946. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7947. "shasum": ""
  7948. },
  7949. "require": {
  7950. "ext-pcre": "*",
  7951. "graham-campbell/result-type": "^1.1.3",
  7952. "php": "^7.2.5 || ^8.0",
  7953. "phpoption/phpoption": "^1.9.3",
  7954. "symfony/polyfill-ctype": "^1.24",
  7955. "symfony/polyfill-mbstring": "^1.24",
  7956. "symfony/polyfill-php80": "^1.24"
  7957. },
  7958. "require-dev": {
  7959. "bamarni/composer-bin-plugin": "^1.8.2",
  7960. "ext-filter": "*",
  7961. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7962. },
  7963. "suggest": {
  7964. "ext-filter": "Required to use the boolean validator."
  7965. },
  7966. "type": "library",
  7967. "extra": {
  7968. "bamarni-bin": {
  7969. "bin-links": true,
  7970. "forward-command": false
  7971. },
  7972. "branch-alias": {
  7973. "dev-master": "5.6-dev"
  7974. }
  7975. },
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Dotenv\\": "src/"
  7979. }
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "BSD-3-Clause"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "Graham Campbell",
  7988. "email": "hello@gjcampbell.co.uk",
  7989. "homepage": "https://github.com/GrahamCampbell"
  7990. },
  7991. {
  7992. "name": "Vance Lucas",
  7993. "email": "vance@vancelucas.com",
  7994. "homepage": "https://github.com/vlucas"
  7995. }
  7996. ],
  7997. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7998. "keywords": [
  7999. "dotenv",
  8000. "env",
  8001. "environment"
  8002. ],
  8003. "support": {
  8004. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8005. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8006. },
  8007. "funding": [
  8008. {
  8009. "url": "https://github.com/GrahamCampbell",
  8010. "type": "github"
  8011. },
  8012. {
  8013. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8014. "type": "tidelift"
  8015. }
  8016. ],
  8017. "time": "2024-07-20T21:52:34+00:00"
  8018. }
  8019. ],
  8020. "packages-dev": [
  8021. {
  8022. "name": "clue/ndjson-react",
  8023. "version": "v1.3.0",
  8024. "source": {
  8025. "type": "git",
  8026. "url": "https://github.com/clue/reactphp-ndjson.git",
  8027. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8028. },
  8029. "dist": {
  8030. "type": "zip",
  8031. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8032. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8033. "shasum": ""
  8034. },
  8035. "require": {
  8036. "php": ">=5.3",
  8037. "react/stream": "^1.2"
  8038. },
  8039. "require-dev": {
  8040. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8041. "react/event-loop": "^1.2"
  8042. },
  8043. "type": "library",
  8044. "autoload": {
  8045. "psr-4": {
  8046. "Clue\\React\\NDJson\\": "src/"
  8047. }
  8048. },
  8049. "notification-url": "https://packagist.org/downloads/",
  8050. "license": [
  8051. "MIT"
  8052. ],
  8053. "authors": [
  8054. {
  8055. "name": "Christian Lück",
  8056. "email": "christian@clue.engineering"
  8057. }
  8058. ],
  8059. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8060. "homepage": "https://github.com/clue/reactphp-ndjson",
  8061. "keywords": [
  8062. "NDJSON",
  8063. "json",
  8064. "jsonlines",
  8065. "newline",
  8066. "reactphp",
  8067. "streaming"
  8068. ],
  8069. "support": {
  8070. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8071. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8072. },
  8073. "funding": [
  8074. {
  8075. "url": "https://clue.engineering/support",
  8076. "type": "custom"
  8077. },
  8078. {
  8079. "url": "https://github.com/clue",
  8080. "type": "github"
  8081. }
  8082. ],
  8083. "time": "2022-12-23T10:58:28+00:00"
  8084. },
  8085. {
  8086. "name": "composer/pcre",
  8087. "version": "3.3.2",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/composer/pcre.git",
  8091. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8096. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8097. "shasum": ""
  8098. },
  8099. "require": {
  8100. "php": "^7.4 || ^8.0"
  8101. },
  8102. "conflict": {
  8103. "phpstan/phpstan": "<1.11.10"
  8104. },
  8105. "require-dev": {
  8106. "phpstan/phpstan": "^1.12 || ^2",
  8107. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8108. "phpunit/phpunit": "^8 || ^9"
  8109. },
  8110. "type": "library",
  8111. "extra": {
  8112. "branch-alias": {
  8113. "dev-main": "3.x-dev"
  8114. },
  8115. "phpstan": {
  8116. "includes": [
  8117. "extension.neon"
  8118. ]
  8119. }
  8120. },
  8121. "autoload": {
  8122. "psr-4": {
  8123. "Composer\\Pcre\\": "src"
  8124. }
  8125. },
  8126. "notification-url": "https://packagist.org/downloads/",
  8127. "license": [
  8128. "MIT"
  8129. ],
  8130. "authors": [
  8131. {
  8132. "name": "Jordi Boggiano",
  8133. "email": "j.boggiano@seld.be",
  8134. "homepage": "http://seld.be"
  8135. }
  8136. ],
  8137. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8138. "keywords": [
  8139. "PCRE",
  8140. "preg",
  8141. "regex",
  8142. "regular expression"
  8143. ],
  8144. "support": {
  8145. "issues": "https://github.com/composer/pcre/issues",
  8146. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8147. },
  8148. "funding": [
  8149. {
  8150. "url": "https://packagist.com",
  8151. "type": "custom"
  8152. },
  8153. {
  8154. "url": "https://github.com/composer",
  8155. "type": "github"
  8156. },
  8157. {
  8158. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8159. "type": "tidelift"
  8160. }
  8161. ],
  8162. "time": "2024-11-12T16:29:46+00:00"
  8163. },
  8164. {
  8165. "name": "composer/semver",
  8166. "version": "3.4.3",
  8167. "source": {
  8168. "type": "git",
  8169. "url": "https://github.com/composer/semver.git",
  8170. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8171. },
  8172. "dist": {
  8173. "type": "zip",
  8174. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8175. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8176. "shasum": ""
  8177. },
  8178. "require": {
  8179. "php": "^5.3.2 || ^7.0 || ^8.0"
  8180. },
  8181. "require-dev": {
  8182. "phpstan/phpstan": "^1.11",
  8183. "symfony/phpunit-bridge": "^3 || ^7"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-main": "3.x-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "psr-4": {
  8193. "Composer\\Semver\\": "src"
  8194. }
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "MIT"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Nils Adermann",
  8203. "email": "naderman@naderman.de",
  8204. "homepage": "http://www.naderman.de"
  8205. },
  8206. {
  8207. "name": "Jordi Boggiano",
  8208. "email": "j.boggiano@seld.be",
  8209. "homepage": "http://seld.be"
  8210. },
  8211. {
  8212. "name": "Rob Bast",
  8213. "email": "rob.bast@gmail.com",
  8214. "homepage": "http://robbast.nl"
  8215. }
  8216. ],
  8217. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8218. "keywords": [
  8219. "semantic",
  8220. "semver",
  8221. "validation",
  8222. "versioning"
  8223. ],
  8224. "support": {
  8225. "irc": "ircs://irc.libera.chat:6697/composer",
  8226. "issues": "https://github.com/composer/semver/issues",
  8227. "source": "https://github.com/composer/semver/tree/3.4.3"
  8228. },
  8229. "funding": [
  8230. {
  8231. "url": "https://packagist.com",
  8232. "type": "custom"
  8233. },
  8234. {
  8235. "url": "https://github.com/composer",
  8236. "type": "github"
  8237. },
  8238. {
  8239. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8240. "type": "tidelift"
  8241. }
  8242. ],
  8243. "time": "2024-09-19T14:15:21+00:00"
  8244. },
  8245. {
  8246. "name": "composer/xdebug-handler",
  8247. "version": "3.0.5",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/composer/xdebug-handler.git",
  8251. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8256. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "composer/pcre": "^1 || ^2 || ^3",
  8261. "php": "^7.2.5 || ^8.0",
  8262. "psr/log": "^1 || ^2 || ^3"
  8263. },
  8264. "require-dev": {
  8265. "phpstan/phpstan": "^1.0",
  8266. "phpstan/phpstan-strict-rules": "^1.1",
  8267. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8268. },
  8269. "type": "library",
  8270. "autoload": {
  8271. "psr-4": {
  8272. "Composer\\XdebugHandler\\": "src"
  8273. }
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "MIT"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "John Stevenson",
  8282. "email": "john-stevenson@blueyonder.co.uk"
  8283. }
  8284. ],
  8285. "description": "Restarts a process without Xdebug.",
  8286. "keywords": [
  8287. "Xdebug",
  8288. "performance"
  8289. ],
  8290. "support": {
  8291. "irc": "ircs://irc.libera.chat:6697/composer",
  8292. "issues": "https://github.com/composer/xdebug-handler/issues",
  8293. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://packagist.com",
  8298. "type": "custom"
  8299. },
  8300. {
  8301. "url": "https://github.com/composer",
  8302. "type": "github"
  8303. },
  8304. {
  8305. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8306. "type": "tidelift"
  8307. }
  8308. ],
  8309. "time": "2024-05-06T16:37:16+00:00"
  8310. },
  8311. {
  8312. "name": "evenement/evenement",
  8313. "version": "v3.0.2",
  8314. "source": {
  8315. "type": "git",
  8316. "url": "https://github.com/igorw/evenement.git",
  8317. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8318. },
  8319. "dist": {
  8320. "type": "zip",
  8321. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8322. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8323. "shasum": ""
  8324. },
  8325. "require": {
  8326. "php": ">=7.0"
  8327. },
  8328. "require-dev": {
  8329. "phpunit/phpunit": "^9 || ^6"
  8330. },
  8331. "type": "library",
  8332. "autoload": {
  8333. "psr-4": {
  8334. "Evenement\\": "src/"
  8335. }
  8336. },
  8337. "notification-url": "https://packagist.org/downloads/",
  8338. "license": [
  8339. "MIT"
  8340. ],
  8341. "authors": [
  8342. {
  8343. "name": "Igor Wiedler",
  8344. "email": "igor@wiedler.ch"
  8345. }
  8346. ],
  8347. "description": "Événement is a very simple event dispatching library for PHP",
  8348. "keywords": [
  8349. "event-dispatcher",
  8350. "event-emitter"
  8351. ],
  8352. "support": {
  8353. "issues": "https://github.com/igorw/evenement/issues",
  8354. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8355. },
  8356. "time": "2023-08-08T05:53:35+00:00"
  8357. },
  8358. {
  8359. "name": "fidry/cpu-core-counter",
  8360. "version": "1.2.0",
  8361. "source": {
  8362. "type": "git",
  8363. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8364. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8365. },
  8366. "dist": {
  8367. "type": "zip",
  8368. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8369. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8370. "shasum": ""
  8371. },
  8372. "require": {
  8373. "php": "^7.2 || ^8.0"
  8374. },
  8375. "require-dev": {
  8376. "fidry/makefile": "^0.2.0",
  8377. "fidry/php-cs-fixer-config": "^1.1.2",
  8378. "phpstan/extension-installer": "^1.2.0",
  8379. "phpstan/phpstan": "^1.9.2",
  8380. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8381. "phpstan/phpstan-phpunit": "^1.2.2",
  8382. "phpstan/phpstan-strict-rules": "^1.4.4",
  8383. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8384. "webmozarts/strict-phpunit": "^7.5"
  8385. },
  8386. "type": "library",
  8387. "autoload": {
  8388. "psr-4": {
  8389. "Fidry\\CpuCoreCounter\\": "src/"
  8390. }
  8391. },
  8392. "notification-url": "https://packagist.org/downloads/",
  8393. "license": [
  8394. "MIT"
  8395. ],
  8396. "authors": [
  8397. {
  8398. "name": "Théo FIDRY",
  8399. "email": "theo.fidry@gmail.com"
  8400. }
  8401. ],
  8402. "description": "Tiny utility to get the number of CPU cores.",
  8403. "keywords": [
  8404. "CPU",
  8405. "core"
  8406. ],
  8407. "support": {
  8408. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8409. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8410. },
  8411. "funding": [
  8412. {
  8413. "url": "https://github.com/theofidry",
  8414. "type": "github"
  8415. }
  8416. ],
  8417. "time": "2024-08-06T10:04:20+00:00"
  8418. },
  8419. {
  8420. "name": "friendsofphp/php-cs-fixer",
  8421. "version": "v3.65.0",
  8422. "source": {
  8423. "type": "git",
  8424. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8425. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f"
  8426. },
  8427. "dist": {
  8428. "type": "zip",
  8429. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8430. "reference": "79d4f3e77b250a7d8043d76c6af8f0695e8a469f",
  8431. "shasum": ""
  8432. },
  8433. "require": {
  8434. "clue/ndjson-react": "^1.0",
  8435. "composer/semver": "^3.4",
  8436. "composer/xdebug-handler": "^3.0.3",
  8437. "ext-filter": "*",
  8438. "ext-json": "*",
  8439. "ext-tokenizer": "*",
  8440. "fidry/cpu-core-counter": "^1.2",
  8441. "php": "^7.4 || ^8.0",
  8442. "react/child-process": "^0.6.5",
  8443. "react/event-loop": "^1.0",
  8444. "react/promise": "^2.0 || ^3.0",
  8445. "react/socket": "^1.0",
  8446. "react/stream": "^1.0",
  8447. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8448. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8449. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8450. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8451. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8452. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8453. "symfony/polyfill-mbstring": "^1.28",
  8454. "symfony/polyfill-php80": "^1.28",
  8455. "symfony/polyfill-php81": "^1.28",
  8456. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8457. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8458. },
  8459. "require-dev": {
  8460. "facile-it/paraunit": "^1.3.1 || ^2.4",
  8461. "infection/infection": "^0.29.8",
  8462. "justinrainbow/json-schema": "^5.3 || ^6.0",
  8463. "keradus/cli-executor": "^2.1",
  8464. "mikey179/vfsstream": "^1.6.12",
  8465. "php-coveralls/php-coveralls": "^2.7",
  8466. "php-cs-fixer/accessible-object": "^1.1",
  8467. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8468. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8469. "phpunit/phpunit": "^9.6.21 || ^10.5.38 || ^11.4.3",
  8470. "symfony/var-dumper": "^5.4.47 || ^6.4.15 || ^7.1.8",
  8471. "symfony/yaml": "^5.4.45 || ^6.4.13 || ^7.1.6"
  8472. },
  8473. "suggest": {
  8474. "ext-dom": "For handling output formats in XML",
  8475. "ext-mbstring": "For handling non-UTF8 characters."
  8476. },
  8477. "bin": [
  8478. "php-cs-fixer"
  8479. ],
  8480. "type": "application",
  8481. "autoload": {
  8482. "psr-4": {
  8483. "PhpCsFixer\\": "src/"
  8484. },
  8485. "exclude-from-classmap": [
  8486. "src/Fixer/Internal/*"
  8487. ]
  8488. },
  8489. "notification-url": "https://packagist.org/downloads/",
  8490. "license": [
  8491. "MIT"
  8492. ],
  8493. "authors": [
  8494. {
  8495. "name": "Fabien Potencier",
  8496. "email": "fabien@symfony.com"
  8497. },
  8498. {
  8499. "name": "Dariusz Rumiński",
  8500. "email": "dariusz.ruminski@gmail.com"
  8501. }
  8502. ],
  8503. "description": "A tool to automatically fix PHP code style",
  8504. "keywords": [
  8505. "Static code analysis",
  8506. "fixer",
  8507. "standards",
  8508. "static analysis"
  8509. ],
  8510. "support": {
  8511. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8512. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.65.0"
  8513. },
  8514. "funding": [
  8515. {
  8516. "url": "https://github.com/keradus",
  8517. "type": "github"
  8518. }
  8519. ],
  8520. "time": "2024-11-25T00:39:24+00:00"
  8521. },
  8522. {
  8523. "name": "hamcrest/hamcrest-php",
  8524. "version": "v2.0.1",
  8525. "source": {
  8526. "type": "git",
  8527. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8528. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8529. },
  8530. "dist": {
  8531. "type": "zip",
  8532. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8533. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8534. "shasum": ""
  8535. },
  8536. "require": {
  8537. "php": "^5.3|^7.0|^8.0"
  8538. },
  8539. "replace": {
  8540. "cordoval/hamcrest-php": "*",
  8541. "davedevelopment/hamcrest-php": "*",
  8542. "kodova/hamcrest-php": "*"
  8543. },
  8544. "require-dev": {
  8545. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8546. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8547. },
  8548. "type": "library",
  8549. "extra": {
  8550. "branch-alias": {
  8551. "dev-master": "2.1-dev"
  8552. }
  8553. },
  8554. "autoload": {
  8555. "classmap": [
  8556. "hamcrest"
  8557. ]
  8558. },
  8559. "notification-url": "https://packagist.org/downloads/",
  8560. "license": [
  8561. "BSD-3-Clause"
  8562. ],
  8563. "description": "This is the PHP port of Hamcrest Matchers",
  8564. "keywords": [
  8565. "test"
  8566. ],
  8567. "support": {
  8568. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8569. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8570. },
  8571. "time": "2020-07-09T08:09:16+00:00"
  8572. },
  8573. {
  8574. "name": "hyperf/devtool",
  8575. "version": "v3.1.42",
  8576. "source": {
  8577. "type": "git",
  8578. "url": "https://github.com/hyperf/devtool.git",
  8579. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8580. },
  8581. "dist": {
  8582. "type": "zip",
  8583. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8584. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8585. "shasum": ""
  8586. },
  8587. "require": {
  8588. "hyperf/code-parser": "~3.1.0",
  8589. "hyperf/command": "~3.1.0",
  8590. "hyperf/contract": "~3.1.0",
  8591. "hyperf/di": "~3.1.0",
  8592. "hyperf/support": "~3.1.0",
  8593. "hyperf/utils": "~3.1.0",
  8594. "php": ">=8.1"
  8595. },
  8596. "type": "library",
  8597. "extra": {
  8598. "branch-alias": {
  8599. "dev-master": "3.1-dev"
  8600. },
  8601. "hyperf": {
  8602. "config": "Hyperf\\Devtool\\ConfigProvider"
  8603. }
  8604. },
  8605. "autoload": {
  8606. "psr-4": {
  8607. "Hyperf\\Devtool\\": "src/"
  8608. }
  8609. },
  8610. "notification-url": "https://packagist.org/downloads/",
  8611. "license": [
  8612. "MIT"
  8613. ],
  8614. "description": "A Devtool for Hyperf.",
  8615. "homepage": "https://hyperf.io",
  8616. "keywords": [
  8617. "dev",
  8618. "devtool",
  8619. "hyperf",
  8620. "php",
  8621. "swoole"
  8622. ],
  8623. "support": {
  8624. "docs": "https://hyperf.wiki",
  8625. "issues": "https://github.com/hyperf/hyperf/issues",
  8626. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8627. "source": "https://github.com/hyperf/hyperf"
  8628. },
  8629. "funding": [
  8630. {
  8631. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8632. "type": "custom"
  8633. },
  8634. {
  8635. "url": "https://opencollective.com/hyperf",
  8636. "type": "open_collective"
  8637. }
  8638. ],
  8639. "time": "2024-09-25T02:54:12+00:00"
  8640. },
  8641. {
  8642. "name": "hyperf/testing",
  8643. "version": "v3.1.48",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/hyperf/testing.git",
  8647. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/hyperf/testing/zipball/e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8652. "reference": "e5e5eba5c304a876dd251e774ecdb3a8ebf97edd",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "hyperf/codec": "~3.1.0",
  8657. "hyperf/collection": "~3.1.0",
  8658. "hyperf/contract": "~3.1.0",
  8659. "hyperf/coroutine": "~3.1.0",
  8660. "hyperf/http-message": "~3.1.0",
  8661. "hyperf/http-server": "~3.1.0",
  8662. "hyperf/support": "~3.1.0",
  8663. "hyperf/utils": "~3.1.0",
  8664. "php": ">=8.1",
  8665. "phpunit/phpunit": "^10.0",
  8666. "psr/container": "^1.0 || ^2.0",
  8667. "symfony/http-foundation": "^5.4 || ^6.0"
  8668. },
  8669. "suggest": {
  8670. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8671. },
  8672. "bin": [
  8673. "co-phpunit"
  8674. ],
  8675. "type": "library",
  8676. "extra": {
  8677. "branch-alias": {
  8678. "dev-master": "3.1-dev"
  8679. }
  8680. },
  8681. "autoload": {
  8682. "psr-4": {
  8683. "Hyperf\\Testing\\": "src/"
  8684. }
  8685. },
  8686. "notification-url": "https://packagist.org/downloads/",
  8687. "license": [
  8688. "MIT"
  8689. ],
  8690. "description": "Testing for hyperf",
  8691. "keywords": [
  8692. "dev",
  8693. "php",
  8694. "swoole",
  8695. "testing"
  8696. ],
  8697. "support": {
  8698. "source": "https://github.com/hyperf/testing/tree/v3.1.48"
  8699. },
  8700. "funding": [
  8701. {
  8702. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8703. "type": "custom"
  8704. },
  8705. {
  8706. "url": "https://opencollective.com/hyperf",
  8707. "type": "open_collective"
  8708. }
  8709. ],
  8710. "time": "2024-12-12T02:12:29+00:00"
  8711. },
  8712. {
  8713. "name": "hyperf/watcher",
  8714. "version": "v3.1.43",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/hyperf/watcher.git",
  8718. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8723. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "ext-posix": "*",
  8728. "hyperf/codec": "~3.1.0",
  8729. "hyperf/command": "~3.1.0",
  8730. "hyperf/di": "~3.1.0",
  8731. "hyperf/framework": "~3.1.0",
  8732. "hyperf/support": "~3.1.0",
  8733. "php": ">=8.1"
  8734. },
  8735. "type": "library",
  8736. "extra": {
  8737. "branch-alias": {
  8738. "dev-master": "3.1-dev"
  8739. },
  8740. "hyperf": {
  8741. "config": "Hyperf\\Watcher\\ConfigProvider"
  8742. }
  8743. },
  8744. "autoload": {
  8745. "files": [
  8746. "src/Functions.php"
  8747. ],
  8748. "psr-4": {
  8749. "Hyperf\\Watcher\\": "src/"
  8750. }
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "MIT"
  8755. ],
  8756. "description": "Hot reload watcher for Hyperf",
  8757. "keywords": [
  8758. "dev",
  8759. "hyperf",
  8760. "php"
  8761. ],
  8762. "support": {
  8763. "issues": "https://github.com/hyperf/watcher/issues",
  8764. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8765. },
  8766. "funding": [
  8767. {
  8768. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8769. "type": "custom"
  8770. },
  8771. {
  8772. "url": "https://opencollective.com/hyperf",
  8773. "type": "open_collective"
  8774. }
  8775. ],
  8776. "time": "2024-10-06T12:33:12+00:00"
  8777. },
  8778. {
  8779. "name": "mockery/mockery",
  8780. "version": "1.6.12",
  8781. "source": {
  8782. "type": "git",
  8783. "url": "https://github.com/mockery/mockery.git",
  8784. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8785. },
  8786. "dist": {
  8787. "type": "zip",
  8788. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8789. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8790. "shasum": ""
  8791. },
  8792. "require": {
  8793. "hamcrest/hamcrest-php": "^2.0.1",
  8794. "lib-pcre": ">=7.0",
  8795. "php": ">=7.3"
  8796. },
  8797. "conflict": {
  8798. "phpunit/phpunit": "<8.0"
  8799. },
  8800. "require-dev": {
  8801. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8802. "symplify/easy-coding-standard": "^12.1.14"
  8803. },
  8804. "type": "library",
  8805. "autoload": {
  8806. "files": [
  8807. "library/helpers.php",
  8808. "library/Mockery.php"
  8809. ],
  8810. "psr-4": {
  8811. "Mockery\\": "library/Mockery"
  8812. }
  8813. },
  8814. "notification-url": "https://packagist.org/downloads/",
  8815. "license": [
  8816. "BSD-3-Clause"
  8817. ],
  8818. "authors": [
  8819. {
  8820. "name": "Pádraic Brady",
  8821. "email": "padraic.brady@gmail.com",
  8822. "homepage": "https://github.com/padraic",
  8823. "role": "Author"
  8824. },
  8825. {
  8826. "name": "Dave Marshall",
  8827. "email": "dave.marshall@atstsolutions.co.uk",
  8828. "homepage": "https://davedevelopment.co.uk",
  8829. "role": "Developer"
  8830. },
  8831. {
  8832. "name": "Nathanael Esayeas",
  8833. "email": "nathanael.esayeas@protonmail.com",
  8834. "homepage": "https://github.com/ghostwriter",
  8835. "role": "Lead Developer"
  8836. }
  8837. ],
  8838. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8839. "homepage": "https://github.com/mockery/mockery",
  8840. "keywords": [
  8841. "BDD",
  8842. "TDD",
  8843. "library",
  8844. "mock",
  8845. "mock objects",
  8846. "mockery",
  8847. "stub",
  8848. "test",
  8849. "test double",
  8850. "testing"
  8851. ],
  8852. "support": {
  8853. "docs": "https://docs.mockery.io/",
  8854. "issues": "https://github.com/mockery/mockery/issues",
  8855. "rss": "https://github.com/mockery/mockery/releases.atom",
  8856. "security": "https://github.com/mockery/mockery/security/advisories",
  8857. "source": "https://github.com/mockery/mockery"
  8858. },
  8859. "time": "2024-05-16T03:13:13+00:00"
  8860. },
  8861. {
  8862. "name": "myclabs/deep-copy",
  8863. "version": "1.12.1",
  8864. "source": {
  8865. "type": "git",
  8866. "url": "https://github.com/myclabs/DeepCopy.git",
  8867. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8868. },
  8869. "dist": {
  8870. "type": "zip",
  8871. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8872. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8873. "shasum": ""
  8874. },
  8875. "require": {
  8876. "php": "^7.1 || ^8.0"
  8877. },
  8878. "conflict": {
  8879. "doctrine/collections": "<1.6.8",
  8880. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8881. },
  8882. "require-dev": {
  8883. "doctrine/collections": "^1.6.8",
  8884. "doctrine/common": "^2.13.3 || ^3.2.2",
  8885. "phpspec/prophecy": "^1.10",
  8886. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8887. },
  8888. "type": "library",
  8889. "autoload": {
  8890. "files": [
  8891. "src/DeepCopy/deep_copy.php"
  8892. ],
  8893. "psr-4": {
  8894. "DeepCopy\\": "src/DeepCopy/"
  8895. }
  8896. },
  8897. "notification-url": "https://packagist.org/downloads/",
  8898. "license": [
  8899. "MIT"
  8900. ],
  8901. "description": "Create deep copies (clones) of your objects",
  8902. "keywords": [
  8903. "clone",
  8904. "copy",
  8905. "duplicate",
  8906. "object",
  8907. "object graph"
  8908. ],
  8909. "support": {
  8910. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8911. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8912. },
  8913. "funding": [
  8914. {
  8915. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8916. "type": "tidelift"
  8917. }
  8918. ],
  8919. "time": "2024-11-08T17:47:46+00:00"
  8920. },
  8921. {
  8922. "name": "phar-io/manifest",
  8923. "version": "2.0.4",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/phar-io/manifest.git",
  8927. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8932. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8933. "shasum": ""
  8934. },
  8935. "require": {
  8936. "ext-dom": "*",
  8937. "ext-libxml": "*",
  8938. "ext-phar": "*",
  8939. "ext-xmlwriter": "*",
  8940. "phar-io/version": "^3.0.1",
  8941. "php": "^7.2 || ^8.0"
  8942. },
  8943. "type": "library",
  8944. "extra": {
  8945. "branch-alias": {
  8946. "dev-master": "2.0.x-dev"
  8947. }
  8948. },
  8949. "autoload": {
  8950. "classmap": [
  8951. "src/"
  8952. ]
  8953. },
  8954. "notification-url": "https://packagist.org/downloads/",
  8955. "license": [
  8956. "BSD-3-Clause"
  8957. ],
  8958. "authors": [
  8959. {
  8960. "name": "Arne Blankerts",
  8961. "email": "arne@blankerts.de",
  8962. "role": "Developer"
  8963. },
  8964. {
  8965. "name": "Sebastian Heuer",
  8966. "email": "sebastian@phpeople.de",
  8967. "role": "Developer"
  8968. },
  8969. {
  8970. "name": "Sebastian Bergmann",
  8971. "email": "sebastian@phpunit.de",
  8972. "role": "Developer"
  8973. }
  8974. ],
  8975. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8976. "support": {
  8977. "issues": "https://github.com/phar-io/manifest/issues",
  8978. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8979. },
  8980. "funding": [
  8981. {
  8982. "url": "https://github.com/theseer",
  8983. "type": "github"
  8984. }
  8985. ],
  8986. "time": "2024-03-03T12:33:53+00:00"
  8987. },
  8988. {
  8989. "name": "phar-io/version",
  8990. "version": "3.2.1",
  8991. "source": {
  8992. "type": "git",
  8993. "url": "https://github.com/phar-io/version.git",
  8994. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8995. },
  8996. "dist": {
  8997. "type": "zip",
  8998. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8999. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9000. "shasum": ""
  9001. },
  9002. "require": {
  9003. "php": "^7.2 || ^8.0"
  9004. },
  9005. "type": "library",
  9006. "autoload": {
  9007. "classmap": [
  9008. "src/"
  9009. ]
  9010. },
  9011. "notification-url": "https://packagist.org/downloads/",
  9012. "license": [
  9013. "BSD-3-Clause"
  9014. ],
  9015. "authors": [
  9016. {
  9017. "name": "Arne Blankerts",
  9018. "email": "arne@blankerts.de",
  9019. "role": "Developer"
  9020. },
  9021. {
  9022. "name": "Sebastian Heuer",
  9023. "email": "sebastian@phpeople.de",
  9024. "role": "Developer"
  9025. },
  9026. {
  9027. "name": "Sebastian Bergmann",
  9028. "email": "sebastian@phpunit.de",
  9029. "role": "Developer"
  9030. }
  9031. ],
  9032. "description": "Library for handling version information and constraints",
  9033. "support": {
  9034. "issues": "https://github.com/phar-io/version/issues",
  9035. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9036. },
  9037. "time": "2022-02-21T01:04:05+00:00"
  9038. },
  9039. {
  9040. "name": "phpstan/phpstan",
  9041. "version": "1.12.12",
  9042. "source": {
  9043. "type": "git",
  9044. "url": "https://github.com/phpstan/phpstan.git",
  9045. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  9046. },
  9047. "dist": {
  9048. "type": "zip",
  9049. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9050. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  9051. "shasum": ""
  9052. },
  9053. "require": {
  9054. "php": "^7.2|^8.0"
  9055. },
  9056. "conflict": {
  9057. "phpstan/phpstan-shim": "*"
  9058. },
  9059. "bin": [
  9060. "phpstan",
  9061. "phpstan.phar"
  9062. ],
  9063. "type": "library",
  9064. "autoload": {
  9065. "files": [
  9066. "bootstrap.php"
  9067. ]
  9068. },
  9069. "notification-url": "https://packagist.org/downloads/",
  9070. "license": [
  9071. "MIT"
  9072. ],
  9073. "description": "PHPStan - PHP Static Analysis Tool",
  9074. "keywords": [
  9075. "dev",
  9076. "static analysis"
  9077. ],
  9078. "support": {
  9079. "docs": "https://phpstan.org/user-guide/getting-started",
  9080. "forum": "https://github.com/phpstan/phpstan/discussions",
  9081. "issues": "https://github.com/phpstan/phpstan/issues",
  9082. "security": "https://github.com/phpstan/phpstan/security/policy",
  9083. "source": "https://github.com/phpstan/phpstan-src"
  9084. },
  9085. "funding": [
  9086. {
  9087. "url": "https://github.com/ondrejmirtes",
  9088. "type": "github"
  9089. },
  9090. {
  9091. "url": "https://github.com/phpstan",
  9092. "type": "github"
  9093. }
  9094. ],
  9095. "time": "2024-11-28T22:13:23+00:00"
  9096. },
  9097. {
  9098. "name": "phpunit/php-code-coverage",
  9099. "version": "10.1.16",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9103. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9108. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "ext-dom": "*",
  9113. "ext-libxml": "*",
  9114. "ext-xmlwriter": "*",
  9115. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9116. "php": ">=8.1",
  9117. "phpunit/php-file-iterator": "^4.1.0",
  9118. "phpunit/php-text-template": "^3.0.1",
  9119. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9120. "sebastian/complexity": "^3.2.0",
  9121. "sebastian/environment": "^6.1.0",
  9122. "sebastian/lines-of-code": "^2.0.2",
  9123. "sebastian/version": "^4.0.1",
  9124. "theseer/tokenizer": "^1.2.3"
  9125. },
  9126. "require-dev": {
  9127. "phpunit/phpunit": "^10.1"
  9128. },
  9129. "suggest": {
  9130. "ext-pcov": "PHP extension that provides line coverage",
  9131. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9132. },
  9133. "type": "library",
  9134. "extra": {
  9135. "branch-alias": {
  9136. "dev-main": "10.1.x-dev"
  9137. }
  9138. },
  9139. "autoload": {
  9140. "classmap": [
  9141. "src/"
  9142. ]
  9143. },
  9144. "notification-url": "https://packagist.org/downloads/",
  9145. "license": [
  9146. "BSD-3-Clause"
  9147. ],
  9148. "authors": [
  9149. {
  9150. "name": "Sebastian Bergmann",
  9151. "email": "sebastian@phpunit.de",
  9152. "role": "lead"
  9153. }
  9154. ],
  9155. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9156. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9157. "keywords": [
  9158. "coverage",
  9159. "testing",
  9160. "xunit"
  9161. ],
  9162. "support": {
  9163. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9164. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9165. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9166. },
  9167. "funding": [
  9168. {
  9169. "url": "https://github.com/sebastianbergmann",
  9170. "type": "github"
  9171. }
  9172. ],
  9173. "time": "2024-08-22T04:31:57+00:00"
  9174. },
  9175. {
  9176. "name": "phpunit/php-file-iterator",
  9177. "version": "4.1.0",
  9178. "source": {
  9179. "type": "git",
  9180. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9181. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9182. },
  9183. "dist": {
  9184. "type": "zip",
  9185. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9186. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9187. "shasum": ""
  9188. },
  9189. "require": {
  9190. "php": ">=8.1"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^10.0"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-main": "4.0-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "classmap": [
  9203. "src/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Sebastian Bergmann",
  9213. "email": "sebastian@phpunit.de",
  9214. "role": "lead"
  9215. }
  9216. ],
  9217. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9218. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9219. "keywords": [
  9220. "filesystem",
  9221. "iterator"
  9222. ],
  9223. "support": {
  9224. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9225. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9226. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/sebastianbergmann",
  9231. "type": "github"
  9232. }
  9233. ],
  9234. "time": "2023-08-31T06:24:48+00:00"
  9235. },
  9236. {
  9237. "name": "phpunit/php-invoker",
  9238. "version": "4.0.0",
  9239. "source": {
  9240. "type": "git",
  9241. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9242. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9243. },
  9244. "dist": {
  9245. "type": "zip",
  9246. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9247. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9248. "shasum": ""
  9249. },
  9250. "require": {
  9251. "php": ">=8.1"
  9252. },
  9253. "require-dev": {
  9254. "ext-pcntl": "*",
  9255. "phpunit/phpunit": "^10.0"
  9256. },
  9257. "suggest": {
  9258. "ext-pcntl": "*"
  9259. },
  9260. "type": "library",
  9261. "extra": {
  9262. "branch-alias": {
  9263. "dev-main": "4.0-dev"
  9264. }
  9265. },
  9266. "autoload": {
  9267. "classmap": [
  9268. "src/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "BSD-3-Clause"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Sebastian Bergmann",
  9278. "email": "sebastian@phpunit.de",
  9279. "role": "lead"
  9280. }
  9281. ],
  9282. "description": "Invoke callables with a timeout",
  9283. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9284. "keywords": [
  9285. "process"
  9286. ],
  9287. "support": {
  9288. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9289. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://github.com/sebastianbergmann",
  9294. "type": "github"
  9295. }
  9296. ],
  9297. "time": "2023-02-03T06:56:09+00:00"
  9298. },
  9299. {
  9300. "name": "phpunit/php-text-template",
  9301. "version": "3.0.1",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9305. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9310. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9311. "shasum": ""
  9312. },
  9313. "require": {
  9314. "php": ">=8.1"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "^10.0"
  9318. },
  9319. "type": "library",
  9320. "extra": {
  9321. "branch-alias": {
  9322. "dev-main": "3.0-dev"
  9323. }
  9324. },
  9325. "autoload": {
  9326. "classmap": [
  9327. "src/"
  9328. ]
  9329. },
  9330. "notification-url": "https://packagist.org/downloads/",
  9331. "license": [
  9332. "BSD-3-Clause"
  9333. ],
  9334. "authors": [
  9335. {
  9336. "name": "Sebastian Bergmann",
  9337. "email": "sebastian@phpunit.de",
  9338. "role": "lead"
  9339. }
  9340. ],
  9341. "description": "Simple template engine.",
  9342. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9343. "keywords": [
  9344. "template"
  9345. ],
  9346. "support": {
  9347. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9348. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9349. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9350. },
  9351. "funding": [
  9352. {
  9353. "url": "https://github.com/sebastianbergmann",
  9354. "type": "github"
  9355. }
  9356. ],
  9357. "time": "2023-08-31T14:07:24+00:00"
  9358. },
  9359. {
  9360. "name": "phpunit/php-timer",
  9361. "version": "6.0.0",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9365. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9370. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=8.1"
  9375. },
  9376. "require-dev": {
  9377. "phpunit/phpunit": "^10.0"
  9378. },
  9379. "type": "library",
  9380. "extra": {
  9381. "branch-alias": {
  9382. "dev-main": "6.0-dev"
  9383. }
  9384. },
  9385. "autoload": {
  9386. "classmap": [
  9387. "src/"
  9388. ]
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "BSD-3-Clause"
  9393. ],
  9394. "authors": [
  9395. {
  9396. "name": "Sebastian Bergmann",
  9397. "email": "sebastian@phpunit.de",
  9398. "role": "lead"
  9399. }
  9400. ],
  9401. "description": "Utility class for timing",
  9402. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9403. "keywords": [
  9404. "timer"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9408. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9409. },
  9410. "funding": [
  9411. {
  9412. "url": "https://github.com/sebastianbergmann",
  9413. "type": "github"
  9414. }
  9415. ],
  9416. "time": "2023-02-03T06:57:52+00:00"
  9417. },
  9418. {
  9419. "name": "phpunit/phpunit",
  9420. "version": "10.5.39",
  9421. "source": {
  9422. "type": "git",
  9423. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9424. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9"
  9425. },
  9426. "dist": {
  9427. "type": "zip",
  9428. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4e89eff200b801db58f3d580ad7426431949eaa9",
  9429. "reference": "4e89eff200b801db58f3d580ad7426431949eaa9",
  9430. "shasum": ""
  9431. },
  9432. "require": {
  9433. "ext-dom": "*",
  9434. "ext-json": "*",
  9435. "ext-libxml": "*",
  9436. "ext-mbstring": "*",
  9437. "ext-xml": "*",
  9438. "ext-xmlwriter": "*",
  9439. "myclabs/deep-copy": "^1.12.1",
  9440. "phar-io/manifest": "^2.0.4",
  9441. "phar-io/version": "^3.2.1",
  9442. "php": ">=8.1",
  9443. "phpunit/php-code-coverage": "^10.1.16",
  9444. "phpunit/php-file-iterator": "^4.1.0",
  9445. "phpunit/php-invoker": "^4.0.0",
  9446. "phpunit/php-text-template": "^3.0.1",
  9447. "phpunit/php-timer": "^6.0.0",
  9448. "sebastian/cli-parser": "^2.0.1",
  9449. "sebastian/code-unit": "^2.0.0",
  9450. "sebastian/comparator": "^5.0.3",
  9451. "sebastian/diff": "^5.1.1",
  9452. "sebastian/environment": "^6.1.0",
  9453. "sebastian/exporter": "^5.1.2",
  9454. "sebastian/global-state": "^6.0.2",
  9455. "sebastian/object-enumerator": "^5.0.0",
  9456. "sebastian/recursion-context": "^5.0.0",
  9457. "sebastian/type": "^4.0.0",
  9458. "sebastian/version": "^4.0.1"
  9459. },
  9460. "suggest": {
  9461. "ext-soap": "To be able to generate mocks based on WSDL files"
  9462. },
  9463. "bin": [
  9464. "phpunit"
  9465. ],
  9466. "type": "library",
  9467. "extra": {
  9468. "branch-alias": {
  9469. "dev-main": "10.5-dev"
  9470. }
  9471. },
  9472. "autoload": {
  9473. "files": [
  9474. "src/Framework/Assert/Functions.php"
  9475. ],
  9476. "classmap": [
  9477. "src/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "BSD-3-Clause"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Sebastian Bergmann",
  9487. "email": "sebastian@phpunit.de",
  9488. "role": "lead"
  9489. }
  9490. ],
  9491. "description": "The PHP Unit Testing framework.",
  9492. "homepage": "https://phpunit.de/",
  9493. "keywords": [
  9494. "phpunit",
  9495. "testing",
  9496. "xunit"
  9497. ],
  9498. "support": {
  9499. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9500. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9501. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.39"
  9502. },
  9503. "funding": [
  9504. {
  9505. "url": "https://phpunit.de/sponsors.html",
  9506. "type": "custom"
  9507. },
  9508. {
  9509. "url": "https://github.com/sebastianbergmann",
  9510. "type": "github"
  9511. },
  9512. {
  9513. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9514. "type": "tidelift"
  9515. }
  9516. ],
  9517. "time": "2024-12-11T10:51:07+00:00"
  9518. },
  9519. {
  9520. "name": "react/cache",
  9521. "version": "v1.2.0",
  9522. "source": {
  9523. "type": "git",
  9524. "url": "https://github.com/reactphp/cache.git",
  9525. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9526. },
  9527. "dist": {
  9528. "type": "zip",
  9529. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9530. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9531. "shasum": ""
  9532. },
  9533. "require": {
  9534. "php": ">=5.3.0",
  9535. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9536. },
  9537. "require-dev": {
  9538. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9539. },
  9540. "type": "library",
  9541. "autoload": {
  9542. "psr-4": {
  9543. "React\\Cache\\": "src/"
  9544. }
  9545. },
  9546. "notification-url": "https://packagist.org/downloads/",
  9547. "license": [
  9548. "MIT"
  9549. ],
  9550. "authors": [
  9551. {
  9552. "name": "Christian Lück",
  9553. "email": "christian@clue.engineering",
  9554. "homepage": "https://clue.engineering/"
  9555. },
  9556. {
  9557. "name": "Cees-Jan Kiewiet",
  9558. "email": "reactphp@ceesjankiewiet.nl",
  9559. "homepage": "https://wyrihaximus.net/"
  9560. },
  9561. {
  9562. "name": "Jan Sorgalla",
  9563. "email": "jsorgalla@gmail.com",
  9564. "homepage": "https://sorgalla.com/"
  9565. },
  9566. {
  9567. "name": "Chris Boden",
  9568. "email": "cboden@gmail.com",
  9569. "homepage": "https://cboden.dev/"
  9570. }
  9571. ],
  9572. "description": "Async, Promise-based cache interface for ReactPHP",
  9573. "keywords": [
  9574. "cache",
  9575. "caching",
  9576. "promise",
  9577. "reactphp"
  9578. ],
  9579. "support": {
  9580. "issues": "https://github.com/reactphp/cache/issues",
  9581. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9582. },
  9583. "funding": [
  9584. {
  9585. "url": "https://opencollective.com/reactphp",
  9586. "type": "open_collective"
  9587. }
  9588. ],
  9589. "time": "2022-11-30T15:59:55+00:00"
  9590. },
  9591. {
  9592. "name": "react/child-process",
  9593. "version": "v0.6.5",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/reactphp/child-process.git",
  9597. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9602. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9603. "shasum": ""
  9604. },
  9605. "require": {
  9606. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9607. "php": ">=5.3.0",
  9608. "react/event-loop": "^1.2",
  9609. "react/stream": "^1.2"
  9610. },
  9611. "require-dev": {
  9612. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9613. "react/socket": "^1.8",
  9614. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9615. },
  9616. "type": "library",
  9617. "autoload": {
  9618. "psr-4": {
  9619. "React\\ChildProcess\\": "src"
  9620. }
  9621. },
  9622. "notification-url": "https://packagist.org/downloads/",
  9623. "license": [
  9624. "MIT"
  9625. ],
  9626. "authors": [
  9627. {
  9628. "name": "Christian Lück",
  9629. "email": "christian@clue.engineering",
  9630. "homepage": "https://clue.engineering/"
  9631. },
  9632. {
  9633. "name": "Cees-Jan Kiewiet",
  9634. "email": "reactphp@ceesjankiewiet.nl",
  9635. "homepage": "https://wyrihaximus.net/"
  9636. },
  9637. {
  9638. "name": "Jan Sorgalla",
  9639. "email": "jsorgalla@gmail.com",
  9640. "homepage": "https://sorgalla.com/"
  9641. },
  9642. {
  9643. "name": "Chris Boden",
  9644. "email": "cboden@gmail.com",
  9645. "homepage": "https://cboden.dev/"
  9646. }
  9647. ],
  9648. "description": "Event-driven library for executing child processes with ReactPHP.",
  9649. "keywords": [
  9650. "event-driven",
  9651. "process",
  9652. "reactphp"
  9653. ],
  9654. "support": {
  9655. "issues": "https://github.com/reactphp/child-process/issues",
  9656. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9657. },
  9658. "funding": [
  9659. {
  9660. "url": "https://github.com/WyriHaximus",
  9661. "type": "github"
  9662. },
  9663. {
  9664. "url": "https://github.com/clue",
  9665. "type": "github"
  9666. }
  9667. ],
  9668. "time": "2022-09-16T13:41:56+00:00"
  9669. },
  9670. {
  9671. "name": "react/dns",
  9672. "version": "v1.13.0",
  9673. "source": {
  9674. "type": "git",
  9675. "url": "https://github.com/reactphp/dns.git",
  9676. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9677. },
  9678. "dist": {
  9679. "type": "zip",
  9680. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9681. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9682. "shasum": ""
  9683. },
  9684. "require": {
  9685. "php": ">=5.3.0",
  9686. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9687. "react/event-loop": "^1.2",
  9688. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9689. },
  9690. "require-dev": {
  9691. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9692. "react/async": "^4.3 || ^3 || ^2",
  9693. "react/promise-timer": "^1.11"
  9694. },
  9695. "type": "library",
  9696. "autoload": {
  9697. "psr-4": {
  9698. "React\\Dns\\": "src/"
  9699. }
  9700. },
  9701. "notification-url": "https://packagist.org/downloads/",
  9702. "license": [
  9703. "MIT"
  9704. ],
  9705. "authors": [
  9706. {
  9707. "name": "Christian Lück",
  9708. "email": "christian@clue.engineering",
  9709. "homepage": "https://clue.engineering/"
  9710. },
  9711. {
  9712. "name": "Cees-Jan Kiewiet",
  9713. "email": "reactphp@ceesjankiewiet.nl",
  9714. "homepage": "https://wyrihaximus.net/"
  9715. },
  9716. {
  9717. "name": "Jan Sorgalla",
  9718. "email": "jsorgalla@gmail.com",
  9719. "homepage": "https://sorgalla.com/"
  9720. },
  9721. {
  9722. "name": "Chris Boden",
  9723. "email": "cboden@gmail.com",
  9724. "homepage": "https://cboden.dev/"
  9725. }
  9726. ],
  9727. "description": "Async DNS resolver for ReactPHP",
  9728. "keywords": [
  9729. "async",
  9730. "dns",
  9731. "dns-resolver",
  9732. "reactphp"
  9733. ],
  9734. "support": {
  9735. "issues": "https://github.com/reactphp/dns/issues",
  9736. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://opencollective.com/reactphp",
  9741. "type": "open_collective"
  9742. }
  9743. ],
  9744. "time": "2024-06-13T14:18:03+00:00"
  9745. },
  9746. {
  9747. "name": "react/event-loop",
  9748. "version": "v1.5.0",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/reactphp/event-loop.git",
  9752. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9757. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9758. "shasum": ""
  9759. },
  9760. "require": {
  9761. "php": ">=5.3.0"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9765. },
  9766. "suggest": {
  9767. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9768. },
  9769. "type": "library",
  9770. "autoload": {
  9771. "psr-4": {
  9772. "React\\EventLoop\\": "src/"
  9773. }
  9774. },
  9775. "notification-url": "https://packagist.org/downloads/",
  9776. "license": [
  9777. "MIT"
  9778. ],
  9779. "authors": [
  9780. {
  9781. "name": "Christian Lück",
  9782. "email": "christian@clue.engineering",
  9783. "homepage": "https://clue.engineering/"
  9784. },
  9785. {
  9786. "name": "Cees-Jan Kiewiet",
  9787. "email": "reactphp@ceesjankiewiet.nl",
  9788. "homepage": "https://wyrihaximus.net/"
  9789. },
  9790. {
  9791. "name": "Jan Sorgalla",
  9792. "email": "jsorgalla@gmail.com",
  9793. "homepage": "https://sorgalla.com/"
  9794. },
  9795. {
  9796. "name": "Chris Boden",
  9797. "email": "cboden@gmail.com",
  9798. "homepage": "https://cboden.dev/"
  9799. }
  9800. ],
  9801. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9802. "keywords": [
  9803. "asynchronous",
  9804. "event-loop"
  9805. ],
  9806. "support": {
  9807. "issues": "https://github.com/reactphp/event-loop/issues",
  9808. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9809. },
  9810. "funding": [
  9811. {
  9812. "url": "https://opencollective.com/reactphp",
  9813. "type": "open_collective"
  9814. }
  9815. ],
  9816. "time": "2023-11-13T13:48:05+00:00"
  9817. },
  9818. {
  9819. "name": "react/promise",
  9820. "version": "v3.2.0",
  9821. "source": {
  9822. "type": "git",
  9823. "url": "https://github.com/reactphp/promise.git",
  9824. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9825. },
  9826. "dist": {
  9827. "type": "zip",
  9828. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9829. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9830. "shasum": ""
  9831. },
  9832. "require": {
  9833. "php": ">=7.1.0"
  9834. },
  9835. "require-dev": {
  9836. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9837. "phpunit/phpunit": "^9.6 || ^7.5"
  9838. },
  9839. "type": "library",
  9840. "autoload": {
  9841. "files": [
  9842. "src/functions_include.php"
  9843. ],
  9844. "psr-4": {
  9845. "React\\Promise\\": "src/"
  9846. }
  9847. },
  9848. "notification-url": "https://packagist.org/downloads/",
  9849. "license": [
  9850. "MIT"
  9851. ],
  9852. "authors": [
  9853. {
  9854. "name": "Jan Sorgalla",
  9855. "email": "jsorgalla@gmail.com",
  9856. "homepage": "https://sorgalla.com/"
  9857. },
  9858. {
  9859. "name": "Christian Lück",
  9860. "email": "christian@clue.engineering",
  9861. "homepage": "https://clue.engineering/"
  9862. },
  9863. {
  9864. "name": "Cees-Jan Kiewiet",
  9865. "email": "reactphp@ceesjankiewiet.nl",
  9866. "homepage": "https://wyrihaximus.net/"
  9867. },
  9868. {
  9869. "name": "Chris Boden",
  9870. "email": "cboden@gmail.com",
  9871. "homepage": "https://cboden.dev/"
  9872. }
  9873. ],
  9874. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9875. "keywords": [
  9876. "promise",
  9877. "promises"
  9878. ],
  9879. "support": {
  9880. "issues": "https://github.com/reactphp/promise/issues",
  9881. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9882. },
  9883. "funding": [
  9884. {
  9885. "url": "https://opencollective.com/reactphp",
  9886. "type": "open_collective"
  9887. }
  9888. ],
  9889. "time": "2024-05-24T10:39:05+00:00"
  9890. },
  9891. {
  9892. "name": "react/socket",
  9893. "version": "v1.16.0",
  9894. "source": {
  9895. "type": "git",
  9896. "url": "https://github.com/reactphp/socket.git",
  9897. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9898. },
  9899. "dist": {
  9900. "type": "zip",
  9901. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9902. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9903. "shasum": ""
  9904. },
  9905. "require": {
  9906. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9907. "php": ">=5.3.0",
  9908. "react/dns": "^1.13",
  9909. "react/event-loop": "^1.2",
  9910. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9911. "react/stream": "^1.4"
  9912. },
  9913. "require-dev": {
  9914. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9915. "react/async": "^4.3 || ^3.3 || ^2",
  9916. "react/promise-stream": "^1.4",
  9917. "react/promise-timer": "^1.11"
  9918. },
  9919. "type": "library",
  9920. "autoload": {
  9921. "psr-4": {
  9922. "React\\Socket\\": "src/"
  9923. }
  9924. },
  9925. "notification-url": "https://packagist.org/downloads/",
  9926. "license": [
  9927. "MIT"
  9928. ],
  9929. "authors": [
  9930. {
  9931. "name": "Christian Lück",
  9932. "email": "christian@clue.engineering",
  9933. "homepage": "https://clue.engineering/"
  9934. },
  9935. {
  9936. "name": "Cees-Jan Kiewiet",
  9937. "email": "reactphp@ceesjankiewiet.nl",
  9938. "homepage": "https://wyrihaximus.net/"
  9939. },
  9940. {
  9941. "name": "Jan Sorgalla",
  9942. "email": "jsorgalla@gmail.com",
  9943. "homepage": "https://sorgalla.com/"
  9944. },
  9945. {
  9946. "name": "Chris Boden",
  9947. "email": "cboden@gmail.com",
  9948. "homepage": "https://cboden.dev/"
  9949. }
  9950. ],
  9951. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9952. "keywords": [
  9953. "Connection",
  9954. "Socket",
  9955. "async",
  9956. "reactphp",
  9957. "stream"
  9958. ],
  9959. "support": {
  9960. "issues": "https://github.com/reactphp/socket/issues",
  9961. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9962. },
  9963. "funding": [
  9964. {
  9965. "url": "https://opencollective.com/reactphp",
  9966. "type": "open_collective"
  9967. }
  9968. ],
  9969. "time": "2024-07-26T10:38:09+00:00"
  9970. },
  9971. {
  9972. "name": "react/stream",
  9973. "version": "v1.4.0",
  9974. "source": {
  9975. "type": "git",
  9976. "url": "https://github.com/reactphp/stream.git",
  9977. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9978. },
  9979. "dist": {
  9980. "type": "zip",
  9981. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9982. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9983. "shasum": ""
  9984. },
  9985. "require": {
  9986. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9987. "php": ">=5.3.8",
  9988. "react/event-loop": "^1.2"
  9989. },
  9990. "require-dev": {
  9991. "clue/stream-filter": "~1.2",
  9992. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9993. },
  9994. "type": "library",
  9995. "autoload": {
  9996. "psr-4": {
  9997. "React\\Stream\\": "src/"
  9998. }
  9999. },
  10000. "notification-url": "https://packagist.org/downloads/",
  10001. "license": [
  10002. "MIT"
  10003. ],
  10004. "authors": [
  10005. {
  10006. "name": "Christian Lück",
  10007. "email": "christian@clue.engineering",
  10008. "homepage": "https://clue.engineering/"
  10009. },
  10010. {
  10011. "name": "Cees-Jan Kiewiet",
  10012. "email": "reactphp@ceesjankiewiet.nl",
  10013. "homepage": "https://wyrihaximus.net/"
  10014. },
  10015. {
  10016. "name": "Jan Sorgalla",
  10017. "email": "jsorgalla@gmail.com",
  10018. "homepage": "https://sorgalla.com/"
  10019. },
  10020. {
  10021. "name": "Chris Boden",
  10022. "email": "cboden@gmail.com",
  10023. "homepage": "https://cboden.dev/"
  10024. }
  10025. ],
  10026. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10027. "keywords": [
  10028. "event-driven",
  10029. "io",
  10030. "non-blocking",
  10031. "pipe",
  10032. "reactphp",
  10033. "readable",
  10034. "stream",
  10035. "writable"
  10036. ],
  10037. "support": {
  10038. "issues": "https://github.com/reactphp/stream/issues",
  10039. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10040. },
  10041. "funding": [
  10042. {
  10043. "url": "https://opencollective.com/reactphp",
  10044. "type": "open_collective"
  10045. }
  10046. ],
  10047. "time": "2024-06-11T12:45:25+00:00"
  10048. },
  10049. {
  10050. "name": "sebastian/cli-parser",
  10051. "version": "2.0.1",
  10052. "source": {
  10053. "type": "git",
  10054. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10055. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10056. },
  10057. "dist": {
  10058. "type": "zip",
  10059. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10060. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10061. "shasum": ""
  10062. },
  10063. "require": {
  10064. "php": ">=8.1"
  10065. },
  10066. "require-dev": {
  10067. "phpunit/phpunit": "^10.0"
  10068. },
  10069. "type": "library",
  10070. "extra": {
  10071. "branch-alias": {
  10072. "dev-main": "2.0-dev"
  10073. }
  10074. },
  10075. "autoload": {
  10076. "classmap": [
  10077. "src/"
  10078. ]
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "BSD-3-Clause"
  10083. ],
  10084. "authors": [
  10085. {
  10086. "name": "Sebastian Bergmann",
  10087. "email": "sebastian@phpunit.de",
  10088. "role": "lead"
  10089. }
  10090. ],
  10091. "description": "Library for parsing CLI options",
  10092. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10093. "support": {
  10094. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10095. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10096. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10097. },
  10098. "funding": [
  10099. {
  10100. "url": "https://github.com/sebastianbergmann",
  10101. "type": "github"
  10102. }
  10103. ],
  10104. "time": "2024-03-02T07:12:49+00:00"
  10105. },
  10106. {
  10107. "name": "sebastian/code-unit",
  10108. "version": "2.0.0",
  10109. "source": {
  10110. "type": "git",
  10111. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10112. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10113. },
  10114. "dist": {
  10115. "type": "zip",
  10116. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10117. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10118. "shasum": ""
  10119. },
  10120. "require": {
  10121. "php": ">=8.1"
  10122. },
  10123. "require-dev": {
  10124. "phpunit/phpunit": "^10.0"
  10125. },
  10126. "type": "library",
  10127. "extra": {
  10128. "branch-alias": {
  10129. "dev-main": "2.0-dev"
  10130. }
  10131. },
  10132. "autoload": {
  10133. "classmap": [
  10134. "src/"
  10135. ]
  10136. },
  10137. "notification-url": "https://packagist.org/downloads/",
  10138. "license": [
  10139. "BSD-3-Clause"
  10140. ],
  10141. "authors": [
  10142. {
  10143. "name": "Sebastian Bergmann",
  10144. "email": "sebastian@phpunit.de",
  10145. "role": "lead"
  10146. }
  10147. ],
  10148. "description": "Collection of value objects that represent the PHP code units",
  10149. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10150. "support": {
  10151. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10152. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10153. },
  10154. "funding": [
  10155. {
  10156. "url": "https://github.com/sebastianbergmann",
  10157. "type": "github"
  10158. }
  10159. ],
  10160. "time": "2023-02-03T06:58:43+00:00"
  10161. },
  10162. {
  10163. "name": "sebastian/code-unit-reverse-lookup",
  10164. "version": "3.0.0",
  10165. "source": {
  10166. "type": "git",
  10167. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10168. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10169. },
  10170. "dist": {
  10171. "type": "zip",
  10172. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10173. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10174. "shasum": ""
  10175. },
  10176. "require": {
  10177. "php": ">=8.1"
  10178. },
  10179. "require-dev": {
  10180. "phpunit/phpunit": "^10.0"
  10181. },
  10182. "type": "library",
  10183. "extra": {
  10184. "branch-alias": {
  10185. "dev-main": "3.0-dev"
  10186. }
  10187. },
  10188. "autoload": {
  10189. "classmap": [
  10190. "src/"
  10191. ]
  10192. },
  10193. "notification-url": "https://packagist.org/downloads/",
  10194. "license": [
  10195. "BSD-3-Clause"
  10196. ],
  10197. "authors": [
  10198. {
  10199. "name": "Sebastian Bergmann",
  10200. "email": "sebastian@phpunit.de"
  10201. }
  10202. ],
  10203. "description": "Looks up which function or method a line of code belongs to",
  10204. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10205. "support": {
  10206. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10207. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10208. },
  10209. "funding": [
  10210. {
  10211. "url": "https://github.com/sebastianbergmann",
  10212. "type": "github"
  10213. }
  10214. ],
  10215. "time": "2023-02-03T06:59:15+00:00"
  10216. },
  10217. {
  10218. "name": "sebastian/comparator",
  10219. "version": "5.0.3",
  10220. "source": {
  10221. "type": "git",
  10222. "url": "https://github.com/sebastianbergmann/comparator.git",
  10223. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10224. },
  10225. "dist": {
  10226. "type": "zip",
  10227. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10228. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10229. "shasum": ""
  10230. },
  10231. "require": {
  10232. "ext-dom": "*",
  10233. "ext-mbstring": "*",
  10234. "php": ">=8.1",
  10235. "sebastian/diff": "^5.0",
  10236. "sebastian/exporter": "^5.0"
  10237. },
  10238. "require-dev": {
  10239. "phpunit/phpunit": "^10.5"
  10240. },
  10241. "type": "library",
  10242. "extra": {
  10243. "branch-alias": {
  10244. "dev-main": "5.0-dev"
  10245. }
  10246. },
  10247. "autoload": {
  10248. "classmap": [
  10249. "src/"
  10250. ]
  10251. },
  10252. "notification-url": "https://packagist.org/downloads/",
  10253. "license": [
  10254. "BSD-3-Clause"
  10255. ],
  10256. "authors": [
  10257. {
  10258. "name": "Sebastian Bergmann",
  10259. "email": "sebastian@phpunit.de"
  10260. },
  10261. {
  10262. "name": "Jeff Welch",
  10263. "email": "whatthejeff@gmail.com"
  10264. },
  10265. {
  10266. "name": "Volker Dusch",
  10267. "email": "github@wallbash.com"
  10268. },
  10269. {
  10270. "name": "Bernhard Schussek",
  10271. "email": "bschussek@2bepublished.at"
  10272. }
  10273. ],
  10274. "description": "Provides the functionality to compare PHP values for equality",
  10275. "homepage": "https://github.com/sebastianbergmann/comparator",
  10276. "keywords": [
  10277. "comparator",
  10278. "compare",
  10279. "equality"
  10280. ],
  10281. "support": {
  10282. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10283. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10284. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10285. },
  10286. "funding": [
  10287. {
  10288. "url": "https://github.com/sebastianbergmann",
  10289. "type": "github"
  10290. }
  10291. ],
  10292. "time": "2024-10-18T14:56:07+00:00"
  10293. },
  10294. {
  10295. "name": "sebastian/complexity",
  10296. "version": "3.2.0",
  10297. "source": {
  10298. "type": "git",
  10299. "url": "https://github.com/sebastianbergmann/complexity.git",
  10300. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10301. },
  10302. "dist": {
  10303. "type": "zip",
  10304. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10305. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10306. "shasum": ""
  10307. },
  10308. "require": {
  10309. "nikic/php-parser": "^4.18 || ^5.0",
  10310. "php": ">=8.1"
  10311. },
  10312. "require-dev": {
  10313. "phpunit/phpunit": "^10.0"
  10314. },
  10315. "type": "library",
  10316. "extra": {
  10317. "branch-alias": {
  10318. "dev-main": "3.2-dev"
  10319. }
  10320. },
  10321. "autoload": {
  10322. "classmap": [
  10323. "src/"
  10324. ]
  10325. },
  10326. "notification-url": "https://packagist.org/downloads/",
  10327. "license": [
  10328. "BSD-3-Clause"
  10329. ],
  10330. "authors": [
  10331. {
  10332. "name": "Sebastian Bergmann",
  10333. "email": "sebastian@phpunit.de",
  10334. "role": "lead"
  10335. }
  10336. ],
  10337. "description": "Library for calculating the complexity of PHP code units",
  10338. "homepage": "https://github.com/sebastianbergmann/complexity",
  10339. "support": {
  10340. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10341. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10342. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10343. },
  10344. "funding": [
  10345. {
  10346. "url": "https://github.com/sebastianbergmann",
  10347. "type": "github"
  10348. }
  10349. ],
  10350. "time": "2023-12-21T08:37:17+00:00"
  10351. },
  10352. {
  10353. "name": "sebastian/diff",
  10354. "version": "5.1.1",
  10355. "source": {
  10356. "type": "git",
  10357. "url": "https://github.com/sebastianbergmann/diff.git",
  10358. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10359. },
  10360. "dist": {
  10361. "type": "zip",
  10362. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10363. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10364. "shasum": ""
  10365. },
  10366. "require": {
  10367. "php": ">=8.1"
  10368. },
  10369. "require-dev": {
  10370. "phpunit/phpunit": "^10.0",
  10371. "symfony/process": "^6.4"
  10372. },
  10373. "type": "library",
  10374. "extra": {
  10375. "branch-alias": {
  10376. "dev-main": "5.1-dev"
  10377. }
  10378. },
  10379. "autoload": {
  10380. "classmap": [
  10381. "src/"
  10382. ]
  10383. },
  10384. "notification-url": "https://packagist.org/downloads/",
  10385. "license": [
  10386. "BSD-3-Clause"
  10387. ],
  10388. "authors": [
  10389. {
  10390. "name": "Sebastian Bergmann",
  10391. "email": "sebastian@phpunit.de"
  10392. },
  10393. {
  10394. "name": "Kore Nordmann",
  10395. "email": "mail@kore-nordmann.de"
  10396. }
  10397. ],
  10398. "description": "Diff implementation",
  10399. "homepage": "https://github.com/sebastianbergmann/diff",
  10400. "keywords": [
  10401. "diff",
  10402. "udiff",
  10403. "unidiff",
  10404. "unified diff"
  10405. ],
  10406. "support": {
  10407. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10408. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10409. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10410. },
  10411. "funding": [
  10412. {
  10413. "url": "https://github.com/sebastianbergmann",
  10414. "type": "github"
  10415. }
  10416. ],
  10417. "time": "2024-03-02T07:15:17+00:00"
  10418. },
  10419. {
  10420. "name": "sebastian/environment",
  10421. "version": "6.1.0",
  10422. "source": {
  10423. "type": "git",
  10424. "url": "https://github.com/sebastianbergmann/environment.git",
  10425. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10426. },
  10427. "dist": {
  10428. "type": "zip",
  10429. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10430. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10431. "shasum": ""
  10432. },
  10433. "require": {
  10434. "php": ">=8.1"
  10435. },
  10436. "require-dev": {
  10437. "phpunit/phpunit": "^10.0"
  10438. },
  10439. "suggest": {
  10440. "ext-posix": "*"
  10441. },
  10442. "type": "library",
  10443. "extra": {
  10444. "branch-alias": {
  10445. "dev-main": "6.1-dev"
  10446. }
  10447. },
  10448. "autoload": {
  10449. "classmap": [
  10450. "src/"
  10451. ]
  10452. },
  10453. "notification-url": "https://packagist.org/downloads/",
  10454. "license": [
  10455. "BSD-3-Clause"
  10456. ],
  10457. "authors": [
  10458. {
  10459. "name": "Sebastian Bergmann",
  10460. "email": "sebastian@phpunit.de"
  10461. }
  10462. ],
  10463. "description": "Provides functionality to handle HHVM/PHP environments",
  10464. "homepage": "https://github.com/sebastianbergmann/environment",
  10465. "keywords": [
  10466. "Xdebug",
  10467. "environment",
  10468. "hhvm"
  10469. ],
  10470. "support": {
  10471. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10472. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10473. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10474. },
  10475. "funding": [
  10476. {
  10477. "url": "https://github.com/sebastianbergmann",
  10478. "type": "github"
  10479. }
  10480. ],
  10481. "time": "2024-03-23T08:47:14+00:00"
  10482. },
  10483. {
  10484. "name": "sebastian/exporter",
  10485. "version": "5.1.2",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/sebastianbergmann/exporter.git",
  10489. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10494. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "ext-mbstring": "*",
  10499. "php": ">=8.1",
  10500. "sebastian/recursion-context": "^5.0"
  10501. },
  10502. "require-dev": {
  10503. "phpunit/phpunit": "^10.0"
  10504. },
  10505. "type": "library",
  10506. "extra": {
  10507. "branch-alias": {
  10508. "dev-main": "5.1-dev"
  10509. }
  10510. },
  10511. "autoload": {
  10512. "classmap": [
  10513. "src/"
  10514. ]
  10515. },
  10516. "notification-url": "https://packagist.org/downloads/",
  10517. "license": [
  10518. "BSD-3-Clause"
  10519. ],
  10520. "authors": [
  10521. {
  10522. "name": "Sebastian Bergmann",
  10523. "email": "sebastian@phpunit.de"
  10524. },
  10525. {
  10526. "name": "Jeff Welch",
  10527. "email": "whatthejeff@gmail.com"
  10528. },
  10529. {
  10530. "name": "Volker Dusch",
  10531. "email": "github@wallbash.com"
  10532. },
  10533. {
  10534. "name": "Adam Harvey",
  10535. "email": "aharvey@php.net"
  10536. },
  10537. {
  10538. "name": "Bernhard Schussek",
  10539. "email": "bschussek@gmail.com"
  10540. }
  10541. ],
  10542. "description": "Provides the functionality to export PHP variables for visualization",
  10543. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10544. "keywords": [
  10545. "export",
  10546. "exporter"
  10547. ],
  10548. "support": {
  10549. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10550. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10551. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10552. },
  10553. "funding": [
  10554. {
  10555. "url": "https://github.com/sebastianbergmann",
  10556. "type": "github"
  10557. }
  10558. ],
  10559. "time": "2024-03-02T07:17:12+00:00"
  10560. },
  10561. {
  10562. "name": "sebastian/global-state",
  10563. "version": "6.0.2",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/sebastianbergmann/global-state.git",
  10567. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10572. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "php": ">=8.1",
  10577. "sebastian/object-reflector": "^3.0",
  10578. "sebastian/recursion-context": "^5.0"
  10579. },
  10580. "require-dev": {
  10581. "ext-dom": "*",
  10582. "phpunit/phpunit": "^10.0"
  10583. },
  10584. "type": "library",
  10585. "extra": {
  10586. "branch-alias": {
  10587. "dev-main": "6.0-dev"
  10588. }
  10589. },
  10590. "autoload": {
  10591. "classmap": [
  10592. "src/"
  10593. ]
  10594. },
  10595. "notification-url": "https://packagist.org/downloads/",
  10596. "license": [
  10597. "BSD-3-Clause"
  10598. ],
  10599. "authors": [
  10600. {
  10601. "name": "Sebastian Bergmann",
  10602. "email": "sebastian@phpunit.de"
  10603. }
  10604. ],
  10605. "description": "Snapshotting of global state",
  10606. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10607. "keywords": [
  10608. "global state"
  10609. ],
  10610. "support": {
  10611. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10612. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10613. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://github.com/sebastianbergmann",
  10618. "type": "github"
  10619. }
  10620. ],
  10621. "time": "2024-03-02T07:19:19+00:00"
  10622. },
  10623. {
  10624. "name": "sebastian/lines-of-code",
  10625. "version": "2.0.2",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10629. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10634. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10635. "shasum": ""
  10636. },
  10637. "require": {
  10638. "nikic/php-parser": "^4.18 || ^5.0",
  10639. "php": ">=8.1"
  10640. },
  10641. "require-dev": {
  10642. "phpunit/phpunit": "^10.0"
  10643. },
  10644. "type": "library",
  10645. "extra": {
  10646. "branch-alias": {
  10647. "dev-main": "2.0-dev"
  10648. }
  10649. },
  10650. "autoload": {
  10651. "classmap": [
  10652. "src/"
  10653. ]
  10654. },
  10655. "notification-url": "https://packagist.org/downloads/",
  10656. "license": [
  10657. "BSD-3-Clause"
  10658. ],
  10659. "authors": [
  10660. {
  10661. "name": "Sebastian Bergmann",
  10662. "email": "sebastian@phpunit.de",
  10663. "role": "lead"
  10664. }
  10665. ],
  10666. "description": "Library for counting the lines of code in PHP source code",
  10667. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10668. "support": {
  10669. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10670. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10671. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10672. },
  10673. "funding": [
  10674. {
  10675. "url": "https://github.com/sebastianbergmann",
  10676. "type": "github"
  10677. }
  10678. ],
  10679. "time": "2023-12-21T08:38:20+00:00"
  10680. },
  10681. {
  10682. "name": "sebastian/object-enumerator",
  10683. "version": "5.0.0",
  10684. "source": {
  10685. "type": "git",
  10686. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10687. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10688. },
  10689. "dist": {
  10690. "type": "zip",
  10691. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10692. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10693. "shasum": ""
  10694. },
  10695. "require": {
  10696. "php": ">=8.1",
  10697. "sebastian/object-reflector": "^3.0",
  10698. "sebastian/recursion-context": "^5.0"
  10699. },
  10700. "require-dev": {
  10701. "phpunit/phpunit": "^10.0"
  10702. },
  10703. "type": "library",
  10704. "extra": {
  10705. "branch-alias": {
  10706. "dev-main": "5.0-dev"
  10707. }
  10708. },
  10709. "autoload": {
  10710. "classmap": [
  10711. "src/"
  10712. ]
  10713. },
  10714. "notification-url": "https://packagist.org/downloads/",
  10715. "license": [
  10716. "BSD-3-Clause"
  10717. ],
  10718. "authors": [
  10719. {
  10720. "name": "Sebastian Bergmann",
  10721. "email": "sebastian@phpunit.de"
  10722. }
  10723. ],
  10724. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10725. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10726. "support": {
  10727. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10728. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10729. },
  10730. "funding": [
  10731. {
  10732. "url": "https://github.com/sebastianbergmann",
  10733. "type": "github"
  10734. }
  10735. ],
  10736. "time": "2023-02-03T07:08:32+00:00"
  10737. },
  10738. {
  10739. "name": "sebastian/object-reflector",
  10740. "version": "3.0.0",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10744. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10749. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10750. "shasum": ""
  10751. },
  10752. "require": {
  10753. "php": ">=8.1"
  10754. },
  10755. "require-dev": {
  10756. "phpunit/phpunit": "^10.0"
  10757. },
  10758. "type": "library",
  10759. "extra": {
  10760. "branch-alias": {
  10761. "dev-main": "3.0-dev"
  10762. }
  10763. },
  10764. "autoload": {
  10765. "classmap": [
  10766. "src/"
  10767. ]
  10768. },
  10769. "notification-url": "https://packagist.org/downloads/",
  10770. "license": [
  10771. "BSD-3-Clause"
  10772. ],
  10773. "authors": [
  10774. {
  10775. "name": "Sebastian Bergmann",
  10776. "email": "sebastian@phpunit.de"
  10777. }
  10778. ],
  10779. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10780. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10781. "support": {
  10782. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10783. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10784. },
  10785. "funding": [
  10786. {
  10787. "url": "https://github.com/sebastianbergmann",
  10788. "type": "github"
  10789. }
  10790. ],
  10791. "time": "2023-02-03T07:06:18+00:00"
  10792. },
  10793. {
  10794. "name": "sebastian/recursion-context",
  10795. "version": "5.0.0",
  10796. "source": {
  10797. "type": "git",
  10798. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10799. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10800. },
  10801. "dist": {
  10802. "type": "zip",
  10803. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10804. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10805. "shasum": ""
  10806. },
  10807. "require": {
  10808. "php": ">=8.1"
  10809. },
  10810. "require-dev": {
  10811. "phpunit/phpunit": "^10.0"
  10812. },
  10813. "type": "library",
  10814. "extra": {
  10815. "branch-alias": {
  10816. "dev-main": "5.0-dev"
  10817. }
  10818. },
  10819. "autoload": {
  10820. "classmap": [
  10821. "src/"
  10822. ]
  10823. },
  10824. "notification-url": "https://packagist.org/downloads/",
  10825. "license": [
  10826. "BSD-3-Clause"
  10827. ],
  10828. "authors": [
  10829. {
  10830. "name": "Sebastian Bergmann",
  10831. "email": "sebastian@phpunit.de"
  10832. },
  10833. {
  10834. "name": "Jeff Welch",
  10835. "email": "whatthejeff@gmail.com"
  10836. },
  10837. {
  10838. "name": "Adam Harvey",
  10839. "email": "aharvey@php.net"
  10840. }
  10841. ],
  10842. "description": "Provides functionality to recursively process PHP variables",
  10843. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10844. "support": {
  10845. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10846. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10847. },
  10848. "funding": [
  10849. {
  10850. "url": "https://github.com/sebastianbergmann",
  10851. "type": "github"
  10852. }
  10853. ],
  10854. "time": "2023-02-03T07:05:40+00:00"
  10855. },
  10856. {
  10857. "name": "sebastian/type",
  10858. "version": "4.0.0",
  10859. "source": {
  10860. "type": "git",
  10861. "url": "https://github.com/sebastianbergmann/type.git",
  10862. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10863. },
  10864. "dist": {
  10865. "type": "zip",
  10866. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10867. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10868. "shasum": ""
  10869. },
  10870. "require": {
  10871. "php": ">=8.1"
  10872. },
  10873. "require-dev": {
  10874. "phpunit/phpunit": "^10.0"
  10875. },
  10876. "type": "library",
  10877. "extra": {
  10878. "branch-alias": {
  10879. "dev-main": "4.0-dev"
  10880. }
  10881. },
  10882. "autoload": {
  10883. "classmap": [
  10884. "src/"
  10885. ]
  10886. },
  10887. "notification-url": "https://packagist.org/downloads/",
  10888. "license": [
  10889. "BSD-3-Clause"
  10890. ],
  10891. "authors": [
  10892. {
  10893. "name": "Sebastian Bergmann",
  10894. "email": "sebastian@phpunit.de",
  10895. "role": "lead"
  10896. }
  10897. ],
  10898. "description": "Collection of value objects that represent the types of the PHP type system",
  10899. "homepage": "https://github.com/sebastianbergmann/type",
  10900. "support": {
  10901. "issues": "https://github.com/sebastianbergmann/type/issues",
  10902. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10903. },
  10904. "funding": [
  10905. {
  10906. "url": "https://github.com/sebastianbergmann",
  10907. "type": "github"
  10908. }
  10909. ],
  10910. "time": "2023-02-03T07:10:45+00:00"
  10911. },
  10912. {
  10913. "name": "sebastian/version",
  10914. "version": "4.0.1",
  10915. "source": {
  10916. "type": "git",
  10917. "url": "https://github.com/sebastianbergmann/version.git",
  10918. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10919. },
  10920. "dist": {
  10921. "type": "zip",
  10922. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10923. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10924. "shasum": ""
  10925. },
  10926. "require": {
  10927. "php": ">=8.1"
  10928. },
  10929. "type": "library",
  10930. "extra": {
  10931. "branch-alias": {
  10932. "dev-main": "4.0-dev"
  10933. }
  10934. },
  10935. "autoload": {
  10936. "classmap": [
  10937. "src/"
  10938. ]
  10939. },
  10940. "notification-url": "https://packagist.org/downloads/",
  10941. "license": [
  10942. "BSD-3-Clause"
  10943. ],
  10944. "authors": [
  10945. {
  10946. "name": "Sebastian Bergmann",
  10947. "email": "sebastian@phpunit.de",
  10948. "role": "lead"
  10949. }
  10950. ],
  10951. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10952. "homepage": "https://github.com/sebastianbergmann/version",
  10953. "support": {
  10954. "issues": "https://github.com/sebastianbergmann/version/issues",
  10955. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10956. },
  10957. "funding": [
  10958. {
  10959. "url": "https://github.com/sebastianbergmann",
  10960. "type": "github"
  10961. }
  10962. ],
  10963. "time": "2023-02-07T11:34:05+00:00"
  10964. },
  10965. {
  10966. "name": "swoole/ide-helper",
  10967. "version": "5.1.6",
  10968. "source": {
  10969. "type": "git",
  10970. "url": "https://github.com/swoole/ide-helper.git",
  10971. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76"
  10972. },
  10973. "dist": {
  10974. "type": "zip",
  10975. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10976. "reference": "c5149a01c00e4ed56fc7b3ffeb6823e69acb4a76",
  10977. "shasum": ""
  10978. },
  10979. "type": "library",
  10980. "notification-url": "https://packagist.org/downloads/",
  10981. "license": [
  10982. "Apache-2.0"
  10983. ],
  10984. "authors": [
  10985. {
  10986. "name": "Team Swoole",
  10987. "email": "team@swoole.com"
  10988. }
  10989. ],
  10990. "description": "IDE help files for Swoole.",
  10991. "support": {
  10992. "issues": "https://github.com/swoole/ide-helper/issues",
  10993. "source": "https://github.com/swoole/ide-helper/tree/5.1.6"
  10994. },
  10995. "time": "2024-11-29T07:21:36+00:00"
  10996. },
  10997. {
  10998. "name": "symfony/event-dispatcher",
  10999. "version": "v6.4.13",
  11000. "source": {
  11001. "type": "git",
  11002. "url": "https://github.com/symfony/event-dispatcher.git",
  11003. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11004. },
  11005. "dist": {
  11006. "type": "zip",
  11007. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11008. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11009. "shasum": ""
  11010. },
  11011. "require": {
  11012. "php": ">=8.1",
  11013. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11014. },
  11015. "conflict": {
  11016. "symfony/dependency-injection": "<5.4",
  11017. "symfony/service-contracts": "<2.5"
  11018. },
  11019. "provide": {
  11020. "psr/event-dispatcher-implementation": "1.0",
  11021. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11022. },
  11023. "require-dev": {
  11024. "psr/log": "^1|^2|^3",
  11025. "symfony/config": "^5.4|^6.0|^7.0",
  11026. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11027. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11028. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11029. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11030. "symfony/service-contracts": "^2.5|^3",
  11031. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11032. },
  11033. "type": "library",
  11034. "autoload": {
  11035. "psr-4": {
  11036. "Symfony\\Component\\EventDispatcher\\": ""
  11037. },
  11038. "exclude-from-classmap": [
  11039. "/Tests/"
  11040. ]
  11041. },
  11042. "notification-url": "https://packagist.org/downloads/",
  11043. "license": [
  11044. "MIT"
  11045. ],
  11046. "authors": [
  11047. {
  11048. "name": "Fabien Potencier",
  11049. "email": "fabien@symfony.com"
  11050. },
  11051. {
  11052. "name": "Symfony Community",
  11053. "homepage": "https://symfony.com/contributors"
  11054. }
  11055. ],
  11056. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11057. "homepage": "https://symfony.com",
  11058. "support": {
  11059. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11060. },
  11061. "funding": [
  11062. {
  11063. "url": "https://symfony.com/sponsor",
  11064. "type": "custom"
  11065. },
  11066. {
  11067. "url": "https://github.com/fabpot",
  11068. "type": "github"
  11069. },
  11070. {
  11071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11072. "type": "tidelift"
  11073. }
  11074. ],
  11075. "time": "2024-09-25T14:18:03+00:00"
  11076. },
  11077. {
  11078. "name": "symfony/event-dispatcher-contracts",
  11079. "version": "v3.5.1",
  11080. "source": {
  11081. "type": "git",
  11082. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11083. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11084. },
  11085. "dist": {
  11086. "type": "zip",
  11087. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11088. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11089. "shasum": ""
  11090. },
  11091. "require": {
  11092. "php": ">=8.1",
  11093. "psr/event-dispatcher": "^1"
  11094. },
  11095. "type": "library",
  11096. "extra": {
  11097. "branch-alias": {
  11098. "dev-main": "3.5-dev"
  11099. },
  11100. "thanks": {
  11101. "name": "symfony/contracts",
  11102. "url": "https://github.com/symfony/contracts"
  11103. }
  11104. },
  11105. "autoload": {
  11106. "psr-4": {
  11107. "Symfony\\Contracts\\EventDispatcher\\": ""
  11108. }
  11109. },
  11110. "notification-url": "https://packagist.org/downloads/",
  11111. "license": [
  11112. "MIT"
  11113. ],
  11114. "authors": [
  11115. {
  11116. "name": "Nicolas Grekas",
  11117. "email": "p@tchwork.com"
  11118. },
  11119. {
  11120. "name": "Symfony Community",
  11121. "homepage": "https://symfony.com/contributors"
  11122. }
  11123. ],
  11124. "description": "Generic abstractions related to dispatching event",
  11125. "homepage": "https://symfony.com",
  11126. "keywords": [
  11127. "abstractions",
  11128. "contracts",
  11129. "decoupling",
  11130. "interfaces",
  11131. "interoperability",
  11132. "standards"
  11133. ],
  11134. "support": {
  11135. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11136. },
  11137. "funding": [
  11138. {
  11139. "url": "https://symfony.com/sponsor",
  11140. "type": "custom"
  11141. },
  11142. {
  11143. "url": "https://github.com/fabpot",
  11144. "type": "github"
  11145. },
  11146. {
  11147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11148. "type": "tidelift"
  11149. }
  11150. ],
  11151. "time": "2024-09-25T14:20:29+00:00"
  11152. },
  11153. {
  11154. "name": "symfony/filesystem",
  11155. "version": "v6.4.13",
  11156. "source": {
  11157. "type": "git",
  11158. "url": "https://github.com/symfony/filesystem.git",
  11159. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11160. },
  11161. "dist": {
  11162. "type": "zip",
  11163. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11164. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11165. "shasum": ""
  11166. },
  11167. "require": {
  11168. "php": ">=8.1",
  11169. "symfony/polyfill-ctype": "~1.8",
  11170. "symfony/polyfill-mbstring": "~1.8"
  11171. },
  11172. "require-dev": {
  11173. "symfony/process": "^5.4|^6.4|^7.0"
  11174. },
  11175. "type": "library",
  11176. "autoload": {
  11177. "psr-4": {
  11178. "Symfony\\Component\\Filesystem\\": ""
  11179. },
  11180. "exclude-from-classmap": [
  11181. "/Tests/"
  11182. ]
  11183. },
  11184. "notification-url": "https://packagist.org/downloads/",
  11185. "license": [
  11186. "MIT"
  11187. ],
  11188. "authors": [
  11189. {
  11190. "name": "Fabien Potencier",
  11191. "email": "fabien@symfony.com"
  11192. },
  11193. {
  11194. "name": "Symfony Community",
  11195. "homepage": "https://symfony.com/contributors"
  11196. }
  11197. ],
  11198. "description": "Provides basic utilities for the filesystem",
  11199. "homepage": "https://symfony.com",
  11200. "support": {
  11201. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11202. },
  11203. "funding": [
  11204. {
  11205. "url": "https://symfony.com/sponsor",
  11206. "type": "custom"
  11207. },
  11208. {
  11209. "url": "https://github.com/fabpot",
  11210. "type": "github"
  11211. },
  11212. {
  11213. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11214. "type": "tidelift"
  11215. }
  11216. ],
  11217. "time": "2024-10-25T15:07:50+00:00"
  11218. },
  11219. {
  11220. "name": "symfony/http-foundation",
  11221. "version": "v6.4.16",
  11222. "source": {
  11223. "type": "git",
  11224. "url": "https://github.com/symfony/http-foundation.git",
  11225. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  11226. },
  11227. "dist": {
  11228. "type": "zip",
  11229. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11230. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  11231. "shasum": ""
  11232. },
  11233. "require": {
  11234. "php": ">=8.1",
  11235. "symfony/deprecation-contracts": "^2.5|^3",
  11236. "symfony/polyfill-mbstring": "~1.1",
  11237. "symfony/polyfill-php83": "^1.27"
  11238. },
  11239. "conflict": {
  11240. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11241. },
  11242. "require-dev": {
  11243. "doctrine/dbal": "^2.13.1|^3|^4",
  11244. "predis/predis": "^1.1|^2.0",
  11245. "symfony/cache": "^6.4.12|^7.1.5",
  11246. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11247. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11248. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11249. "symfony/mime": "^5.4|^6.0|^7.0",
  11250. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11251. },
  11252. "type": "library",
  11253. "autoload": {
  11254. "psr-4": {
  11255. "Symfony\\Component\\HttpFoundation\\": ""
  11256. },
  11257. "exclude-from-classmap": [
  11258. "/Tests/"
  11259. ]
  11260. },
  11261. "notification-url": "https://packagist.org/downloads/",
  11262. "license": [
  11263. "MIT"
  11264. ],
  11265. "authors": [
  11266. {
  11267. "name": "Fabien Potencier",
  11268. "email": "fabien@symfony.com"
  11269. },
  11270. {
  11271. "name": "Symfony Community",
  11272. "homepage": "https://symfony.com/contributors"
  11273. }
  11274. ],
  11275. "description": "Defines an object-oriented layer for the HTTP specification",
  11276. "homepage": "https://symfony.com",
  11277. "support": {
  11278. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  11279. },
  11280. "funding": [
  11281. {
  11282. "url": "https://symfony.com/sponsor",
  11283. "type": "custom"
  11284. },
  11285. {
  11286. "url": "https://github.com/fabpot",
  11287. "type": "github"
  11288. },
  11289. {
  11290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11291. "type": "tidelift"
  11292. }
  11293. ],
  11294. "time": "2024-11-13T18:58:10+00:00"
  11295. },
  11296. {
  11297. "name": "symfony/options-resolver",
  11298. "version": "v6.4.16",
  11299. "source": {
  11300. "type": "git",
  11301. "url": "https://github.com/symfony/options-resolver.git",
  11302. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  11303. },
  11304. "dist": {
  11305. "type": "zip",
  11306. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  11307. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  11308. "shasum": ""
  11309. },
  11310. "require": {
  11311. "php": ">=8.1",
  11312. "symfony/deprecation-contracts": "^2.5|^3"
  11313. },
  11314. "type": "library",
  11315. "autoload": {
  11316. "psr-4": {
  11317. "Symfony\\Component\\OptionsResolver\\": ""
  11318. },
  11319. "exclude-from-classmap": [
  11320. "/Tests/"
  11321. ]
  11322. },
  11323. "notification-url": "https://packagist.org/downloads/",
  11324. "license": [
  11325. "MIT"
  11326. ],
  11327. "authors": [
  11328. {
  11329. "name": "Fabien Potencier",
  11330. "email": "fabien@symfony.com"
  11331. },
  11332. {
  11333. "name": "Symfony Community",
  11334. "homepage": "https://symfony.com/contributors"
  11335. }
  11336. ],
  11337. "description": "Provides an improved replacement for the array_replace PHP function",
  11338. "homepage": "https://symfony.com",
  11339. "keywords": [
  11340. "config",
  11341. "configuration",
  11342. "options"
  11343. ],
  11344. "support": {
  11345. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  11346. },
  11347. "funding": [
  11348. {
  11349. "url": "https://symfony.com/sponsor",
  11350. "type": "custom"
  11351. },
  11352. {
  11353. "url": "https://github.com/fabpot",
  11354. "type": "github"
  11355. },
  11356. {
  11357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11358. "type": "tidelift"
  11359. }
  11360. ],
  11361. "time": "2024-11-20T10:57:02+00:00"
  11362. },
  11363. {
  11364. "name": "symfony/polyfill-php81",
  11365. "version": "v1.31.0",
  11366. "source": {
  11367. "type": "git",
  11368. "url": "https://github.com/symfony/polyfill-php81.git",
  11369. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11370. },
  11371. "dist": {
  11372. "type": "zip",
  11373. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11374. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11375. "shasum": ""
  11376. },
  11377. "require": {
  11378. "php": ">=7.2"
  11379. },
  11380. "type": "library",
  11381. "extra": {
  11382. "thanks": {
  11383. "url": "https://github.com/symfony/polyfill",
  11384. "name": "symfony/polyfill"
  11385. }
  11386. },
  11387. "autoload": {
  11388. "files": [
  11389. "bootstrap.php"
  11390. ],
  11391. "psr-4": {
  11392. "Symfony\\Polyfill\\Php81\\": ""
  11393. },
  11394. "classmap": [
  11395. "Resources/stubs"
  11396. ]
  11397. },
  11398. "notification-url": "https://packagist.org/downloads/",
  11399. "license": [
  11400. "MIT"
  11401. ],
  11402. "authors": [
  11403. {
  11404. "name": "Nicolas Grekas",
  11405. "email": "p@tchwork.com"
  11406. },
  11407. {
  11408. "name": "Symfony Community",
  11409. "homepage": "https://symfony.com/contributors"
  11410. }
  11411. ],
  11412. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11413. "homepage": "https://symfony.com",
  11414. "keywords": [
  11415. "compatibility",
  11416. "polyfill",
  11417. "portable",
  11418. "shim"
  11419. ],
  11420. "support": {
  11421. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11422. },
  11423. "funding": [
  11424. {
  11425. "url": "https://symfony.com/sponsor",
  11426. "type": "custom"
  11427. },
  11428. {
  11429. "url": "https://github.com/fabpot",
  11430. "type": "github"
  11431. },
  11432. {
  11433. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11434. "type": "tidelift"
  11435. }
  11436. ],
  11437. "time": "2024-09-09T11:45:10+00:00"
  11438. },
  11439. {
  11440. "name": "symfony/polyfill-php83",
  11441. "version": "v1.31.0",
  11442. "source": {
  11443. "type": "git",
  11444. "url": "https://github.com/symfony/polyfill-php83.git",
  11445. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11446. },
  11447. "dist": {
  11448. "type": "zip",
  11449. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11450. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11451. "shasum": ""
  11452. },
  11453. "require": {
  11454. "php": ">=7.2"
  11455. },
  11456. "type": "library",
  11457. "extra": {
  11458. "thanks": {
  11459. "url": "https://github.com/symfony/polyfill",
  11460. "name": "symfony/polyfill"
  11461. }
  11462. },
  11463. "autoload": {
  11464. "files": [
  11465. "bootstrap.php"
  11466. ],
  11467. "psr-4": {
  11468. "Symfony\\Polyfill\\Php83\\": ""
  11469. },
  11470. "classmap": [
  11471. "Resources/stubs"
  11472. ]
  11473. },
  11474. "notification-url": "https://packagist.org/downloads/",
  11475. "license": [
  11476. "MIT"
  11477. ],
  11478. "authors": [
  11479. {
  11480. "name": "Nicolas Grekas",
  11481. "email": "p@tchwork.com"
  11482. },
  11483. {
  11484. "name": "Symfony Community",
  11485. "homepage": "https://symfony.com/contributors"
  11486. }
  11487. ],
  11488. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11489. "homepage": "https://symfony.com",
  11490. "keywords": [
  11491. "compatibility",
  11492. "polyfill",
  11493. "portable",
  11494. "shim"
  11495. ],
  11496. "support": {
  11497. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11498. },
  11499. "funding": [
  11500. {
  11501. "url": "https://symfony.com/sponsor",
  11502. "type": "custom"
  11503. },
  11504. {
  11505. "url": "https://github.com/fabpot",
  11506. "type": "github"
  11507. },
  11508. {
  11509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11510. "type": "tidelift"
  11511. }
  11512. ],
  11513. "time": "2024-09-09T11:45:10+00:00"
  11514. },
  11515. {
  11516. "name": "symfony/process",
  11517. "version": "v6.4.15",
  11518. "source": {
  11519. "type": "git",
  11520. "url": "https://github.com/symfony/process.git",
  11521. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11522. },
  11523. "dist": {
  11524. "type": "zip",
  11525. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11526. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11527. "shasum": ""
  11528. },
  11529. "require": {
  11530. "php": ">=8.1"
  11531. },
  11532. "type": "library",
  11533. "autoload": {
  11534. "psr-4": {
  11535. "Symfony\\Component\\Process\\": ""
  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": "Executes commands in sub-processes",
  11556. "homepage": "https://symfony.com",
  11557. "support": {
  11558. "source": "https://github.com/symfony/process/tree/v6.4.15"
  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-11-06T14:19:14+00:00"
  11575. },
  11576. {
  11577. "name": "symfony/stopwatch",
  11578. "version": "v6.4.13",
  11579. "source": {
  11580. "type": "git",
  11581. "url": "https://github.com/symfony/stopwatch.git",
  11582. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11583. },
  11584. "dist": {
  11585. "type": "zip",
  11586. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11587. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11588. "shasum": ""
  11589. },
  11590. "require": {
  11591. "php": ">=8.1",
  11592. "symfony/service-contracts": "^2.5|^3"
  11593. },
  11594. "type": "library",
  11595. "autoload": {
  11596. "psr-4": {
  11597. "Symfony\\Component\\Stopwatch\\": ""
  11598. },
  11599. "exclude-from-classmap": [
  11600. "/Tests/"
  11601. ]
  11602. },
  11603. "notification-url": "https://packagist.org/downloads/",
  11604. "license": [
  11605. "MIT"
  11606. ],
  11607. "authors": [
  11608. {
  11609. "name": "Fabien Potencier",
  11610. "email": "fabien@symfony.com"
  11611. },
  11612. {
  11613. "name": "Symfony Community",
  11614. "homepage": "https://symfony.com/contributors"
  11615. }
  11616. ],
  11617. "description": "Provides a way to profile code",
  11618. "homepage": "https://symfony.com",
  11619. "support": {
  11620. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11621. },
  11622. "funding": [
  11623. {
  11624. "url": "https://symfony.com/sponsor",
  11625. "type": "custom"
  11626. },
  11627. {
  11628. "url": "https://github.com/fabpot",
  11629. "type": "github"
  11630. },
  11631. {
  11632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11633. "type": "tidelift"
  11634. }
  11635. ],
  11636. "time": "2024-09-25T14:18:03+00:00"
  11637. },
  11638. {
  11639. "name": "theseer/tokenizer",
  11640. "version": "1.2.3",
  11641. "source": {
  11642. "type": "git",
  11643. "url": "https://github.com/theseer/tokenizer.git",
  11644. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11645. },
  11646. "dist": {
  11647. "type": "zip",
  11648. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11649. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11650. "shasum": ""
  11651. },
  11652. "require": {
  11653. "ext-dom": "*",
  11654. "ext-tokenizer": "*",
  11655. "ext-xmlwriter": "*",
  11656. "php": "^7.2 || ^8.0"
  11657. },
  11658. "type": "library",
  11659. "autoload": {
  11660. "classmap": [
  11661. "src/"
  11662. ]
  11663. },
  11664. "notification-url": "https://packagist.org/downloads/",
  11665. "license": [
  11666. "BSD-3-Clause"
  11667. ],
  11668. "authors": [
  11669. {
  11670. "name": "Arne Blankerts",
  11671. "email": "arne@blankerts.de",
  11672. "role": "Developer"
  11673. }
  11674. ],
  11675. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11676. "support": {
  11677. "issues": "https://github.com/theseer/tokenizer/issues",
  11678. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11679. },
  11680. "funding": [
  11681. {
  11682. "url": "https://github.com/theseer",
  11683. "type": "github"
  11684. }
  11685. ],
  11686. "time": "2024-03-03T12:36:25+00:00"
  11687. },
  11688. {
  11689. "name": "zx/php-tools",
  11690. "version": "v0.0.1",
  11691. "source": {
  11692. "type": "git",
  11693. "url": "https://gitee.com/open-php/php-tools.git",
  11694. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11695. },
  11696. "require": {
  11697. "php": ">=7.0"
  11698. },
  11699. "type": "library",
  11700. "autoload": {
  11701. "psr-4": {
  11702. "ZX\\": "src/"
  11703. }
  11704. },
  11705. "notification-url": "https://packagist.org/downloads/",
  11706. "license": [
  11707. "mit"
  11708. ],
  11709. "authors": [
  11710. {
  11711. "name": "zx",
  11712. "email": "903464207@qq.com"
  11713. }
  11714. ],
  11715. "description": "php-tools",
  11716. "time": "2023-06-25T06:24:10+00:00"
  11717. }
  11718. ],
  11719. "aliases": [],
  11720. "minimum-stability": "dev",
  11721. "stability-flags": {},
  11722. "prefer-stable": true,
  11723. "prefer-lowest": false,
  11724. "platform": {
  11725. "php": ">=8.1"
  11726. },
  11727. "platform-dev": {},
  11728. "plugin-api-version": "2.6.0"
  11729. }