composer.lock 377 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652
  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": "6fc437c88f7dd6b81abfce2f28c92f05",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.343.19",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "00b44b1a9d570bc945d223b20886c1ac13b54641"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/00b44b1a9d570bc945d223b20886c1ac13b54641",
  74. "reference": "00b44b1a9d570bc945d223b20886c1ac13b54641",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^7.4.5",
  83. "guzzlehttp/promises": "^2.0",
  84. "guzzlehttp/psr7": "^2.4.5",
  85. "mtdowling/jmespath.php": "^2.8.0",
  86. "php": ">=8.1",
  87. "psr/http-message": "^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^2.7.8",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  101. "psr/cache": "^2.0 || ^3.0",
  102. "psr/simple-cache": "^2.0 || ^3.0",
  103. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  104. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  105. "yoast/phpunit-polyfills": "^2.0"
  106. },
  107. "suggest": {
  108. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  109. "doctrine/cache": "To use the DoctrineCacheAdapter",
  110. "ext-curl": "To send requests using cURL",
  111. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  112. "ext-sockets": "To use client-side monitoring"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "3.0-dev"
  118. }
  119. },
  120. "autoload": {
  121. "files": [
  122. "src/functions.php"
  123. ],
  124. "psr-4": {
  125. "Aws\\": "src/"
  126. },
  127. "exclude-from-classmap": [
  128. "src/data/"
  129. ]
  130. },
  131. "notification-url": "https://packagist.org/downloads/",
  132. "license": [
  133. "Apache-2.0"
  134. ],
  135. "authors": [
  136. {
  137. "name": "Amazon Web Services",
  138. "homepage": "http://aws.amazon.com"
  139. }
  140. ],
  141. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  142. "homepage": "http://aws.amazon.com/sdkforphp",
  143. "keywords": [
  144. "amazon",
  145. "aws",
  146. "cloud",
  147. "dynamodb",
  148. "ec2",
  149. "glacier",
  150. "s3",
  151. "sdk"
  152. ],
  153. "support": {
  154. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  155. "issues": "https://github.com/aws/aws-sdk-php/issues",
  156. "source": "https://github.com/aws/aws-sdk-php/tree/3.343.19"
  157. },
  158. "time": "2025-05-27T18:10:12+00:00"
  159. },
  160. {
  161. "name": "carbonphp/carbon-doctrine-types",
  162. "version": "3.2.0",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  166. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  171. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "php": "^8.1"
  176. },
  177. "conflict": {
  178. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  179. },
  180. "require-dev": {
  181. "doctrine/dbal": "^4.0.0",
  182. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  183. "phpunit/phpunit": "^10.3"
  184. },
  185. "type": "library",
  186. "autoload": {
  187. "psr-4": {
  188. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  189. }
  190. },
  191. "notification-url": "https://packagist.org/downloads/",
  192. "license": [
  193. "MIT"
  194. ],
  195. "authors": [
  196. {
  197. "name": "KyleKatarn",
  198. "email": "kylekatarnls@gmail.com"
  199. }
  200. ],
  201. "description": "Types to use Carbon in Doctrine",
  202. "keywords": [
  203. "carbon",
  204. "date",
  205. "datetime",
  206. "doctrine",
  207. "time"
  208. ],
  209. "support": {
  210. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  211. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  212. },
  213. "funding": [
  214. {
  215. "url": "https://github.com/kylekatarnls",
  216. "type": "github"
  217. },
  218. {
  219. "url": "https://opencollective.com/Carbon",
  220. "type": "open_collective"
  221. },
  222. {
  223. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  224. "type": "tidelift"
  225. }
  226. ],
  227. "time": "2024-02-09T16:56:22+00:00"
  228. },
  229. {
  230. "name": "doctrine/annotations",
  231. "version": "2.0.2",
  232. "source": {
  233. "type": "git",
  234. "url": "https://github.com/doctrine/annotations.git",
  235. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  236. },
  237. "dist": {
  238. "type": "zip",
  239. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  240. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  241. "shasum": ""
  242. },
  243. "require": {
  244. "doctrine/lexer": "^2 || ^3",
  245. "ext-tokenizer": "*",
  246. "php": "^7.2 || ^8.0",
  247. "psr/cache": "^1 || ^2 || ^3"
  248. },
  249. "require-dev": {
  250. "doctrine/cache": "^2.0",
  251. "doctrine/coding-standard": "^10",
  252. "phpstan/phpstan": "^1.10.28",
  253. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  254. "symfony/cache": "^5.4 || ^6.4 || ^7",
  255. "vimeo/psalm": "^4.30 || ^5.14"
  256. },
  257. "suggest": {
  258. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  259. },
  260. "type": "library",
  261. "autoload": {
  262. "psr-4": {
  263. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  264. }
  265. },
  266. "notification-url": "https://packagist.org/downloads/",
  267. "license": [
  268. "MIT"
  269. ],
  270. "authors": [
  271. {
  272. "name": "Guilherme Blanco",
  273. "email": "guilhermeblanco@gmail.com"
  274. },
  275. {
  276. "name": "Roman Borschel",
  277. "email": "roman@code-factory.org"
  278. },
  279. {
  280. "name": "Benjamin Eberlei",
  281. "email": "kontakt@beberlei.de"
  282. },
  283. {
  284. "name": "Jonathan Wage",
  285. "email": "jonwage@gmail.com"
  286. },
  287. {
  288. "name": "Johannes Schmitt",
  289. "email": "schmittjoh@gmail.com"
  290. }
  291. ],
  292. "description": "Docblock Annotations Parser",
  293. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  294. "keywords": [
  295. "annotations",
  296. "docblock",
  297. "parser"
  298. ],
  299. "support": {
  300. "issues": "https://github.com/doctrine/annotations/issues",
  301. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  302. },
  303. "time": "2024-09-05T10:17:24+00:00"
  304. },
  305. {
  306. "name": "doctrine/inflector",
  307. "version": "2.0.10",
  308. "source": {
  309. "type": "git",
  310. "url": "https://github.com/doctrine/inflector.git",
  311. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  312. },
  313. "dist": {
  314. "type": "zip",
  315. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  316. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  317. "shasum": ""
  318. },
  319. "require": {
  320. "php": "^7.2 || ^8.0"
  321. },
  322. "require-dev": {
  323. "doctrine/coding-standard": "^11.0",
  324. "phpstan/phpstan": "^1.8",
  325. "phpstan/phpstan-phpunit": "^1.1",
  326. "phpstan/phpstan-strict-rules": "^1.3",
  327. "phpunit/phpunit": "^8.5 || ^9.5",
  328. "vimeo/psalm": "^4.25 || ^5.4"
  329. },
  330. "type": "library",
  331. "autoload": {
  332. "psr-4": {
  333. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  334. }
  335. },
  336. "notification-url": "https://packagist.org/downloads/",
  337. "license": [
  338. "MIT"
  339. ],
  340. "authors": [
  341. {
  342. "name": "Guilherme Blanco",
  343. "email": "guilhermeblanco@gmail.com"
  344. },
  345. {
  346. "name": "Roman Borschel",
  347. "email": "roman@code-factory.org"
  348. },
  349. {
  350. "name": "Benjamin Eberlei",
  351. "email": "kontakt@beberlei.de"
  352. },
  353. {
  354. "name": "Jonathan Wage",
  355. "email": "jonwage@gmail.com"
  356. },
  357. {
  358. "name": "Johannes Schmitt",
  359. "email": "schmittjoh@gmail.com"
  360. }
  361. ],
  362. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  363. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  364. "keywords": [
  365. "inflection",
  366. "inflector",
  367. "lowercase",
  368. "manipulation",
  369. "php",
  370. "plural",
  371. "singular",
  372. "strings",
  373. "uppercase",
  374. "words"
  375. ],
  376. "support": {
  377. "issues": "https://github.com/doctrine/inflector/issues",
  378. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  379. },
  380. "funding": [
  381. {
  382. "url": "https://www.doctrine-project.org/sponsorship.html",
  383. "type": "custom"
  384. },
  385. {
  386. "url": "https://www.patreon.com/phpdoctrine",
  387. "type": "patreon"
  388. },
  389. {
  390. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  391. "type": "tidelift"
  392. }
  393. ],
  394. "time": "2024-02-18T20:23:39+00:00"
  395. },
  396. {
  397. "name": "doctrine/instantiator",
  398. "version": "1.5.0",
  399. "source": {
  400. "type": "git",
  401. "url": "https://github.com/doctrine/instantiator.git",
  402. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  403. },
  404. "dist": {
  405. "type": "zip",
  406. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  407. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  408. "shasum": ""
  409. },
  410. "require": {
  411. "php": "^7.1 || ^8.0"
  412. },
  413. "require-dev": {
  414. "doctrine/coding-standard": "^9 || ^11",
  415. "ext-pdo": "*",
  416. "ext-phar": "*",
  417. "phpbench/phpbench": "^0.16 || ^1",
  418. "phpstan/phpstan": "^1.4",
  419. "phpstan/phpstan-phpunit": "^1",
  420. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  421. "vimeo/psalm": "^4.30 || ^5.4"
  422. },
  423. "type": "library",
  424. "autoload": {
  425. "psr-4": {
  426. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  427. }
  428. },
  429. "notification-url": "https://packagist.org/downloads/",
  430. "license": [
  431. "MIT"
  432. ],
  433. "authors": [
  434. {
  435. "name": "Marco Pivetta",
  436. "email": "ocramius@gmail.com",
  437. "homepage": "https://ocramius.github.io/"
  438. }
  439. ],
  440. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  441. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  442. "keywords": [
  443. "constructor",
  444. "instantiate"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/instantiator/issues",
  448. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2022-12-30T00:15:36+00:00"
  465. },
  466. {
  467. "name": "doctrine/lexer",
  468. "version": "3.0.1",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/lexer.git",
  472. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  477. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  478. "shasum": ""
  479. },
  480. "require": {
  481. "php": "^8.1"
  482. },
  483. "require-dev": {
  484. "doctrine/coding-standard": "^12",
  485. "phpstan/phpstan": "^1.10",
  486. "phpunit/phpunit": "^10.5",
  487. "psalm/plugin-phpunit": "^0.18.3",
  488. "vimeo/psalm": "^5.21"
  489. },
  490. "type": "library",
  491. "autoload": {
  492. "psr-4": {
  493. "Doctrine\\Common\\Lexer\\": "src"
  494. }
  495. },
  496. "notification-url": "https://packagist.org/downloads/",
  497. "license": [
  498. "MIT"
  499. ],
  500. "authors": [
  501. {
  502. "name": "Guilherme Blanco",
  503. "email": "guilhermeblanco@gmail.com"
  504. },
  505. {
  506. "name": "Roman Borschel",
  507. "email": "roman@code-factory.org"
  508. },
  509. {
  510. "name": "Johannes Schmitt",
  511. "email": "schmittjoh@gmail.com"
  512. }
  513. ],
  514. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  515. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  516. "keywords": [
  517. "annotations",
  518. "docblock",
  519. "lexer",
  520. "parser",
  521. "php"
  522. ],
  523. "support": {
  524. "issues": "https://github.com/doctrine/lexer/issues",
  525. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  526. },
  527. "funding": [
  528. {
  529. "url": "https://www.doctrine-project.org/sponsorship.html",
  530. "type": "custom"
  531. },
  532. {
  533. "url": "https://www.patreon.com/phpdoctrine",
  534. "type": "patreon"
  535. },
  536. {
  537. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  538. "type": "tidelift"
  539. }
  540. ],
  541. "time": "2024-02-05T11:56:58+00:00"
  542. },
  543. {
  544. "name": "fig/http-message-util",
  545. "version": "1.1.5",
  546. "source": {
  547. "type": "git",
  548. "url": "https://github.com/php-fig/http-message-util.git",
  549. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  550. },
  551. "dist": {
  552. "type": "zip",
  553. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  554. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  555. "shasum": ""
  556. },
  557. "require": {
  558. "php": "^5.3 || ^7.0 || ^8.0"
  559. },
  560. "suggest": {
  561. "psr/http-message": "The package containing the PSR-7 interfaces"
  562. },
  563. "type": "library",
  564. "extra": {
  565. "branch-alias": {
  566. "dev-master": "1.1.x-dev"
  567. }
  568. },
  569. "autoload": {
  570. "psr-4": {
  571. "Fig\\Http\\Message\\": "src/"
  572. }
  573. },
  574. "notification-url": "https://packagist.org/downloads/",
  575. "license": [
  576. "MIT"
  577. ],
  578. "authors": [
  579. {
  580. "name": "PHP-FIG",
  581. "homepage": "https://www.php-fig.org/"
  582. }
  583. ],
  584. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  585. "keywords": [
  586. "http",
  587. "http-message",
  588. "psr",
  589. "psr-7",
  590. "request",
  591. "response"
  592. ],
  593. "support": {
  594. "issues": "https://github.com/php-fig/http-message-util/issues",
  595. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  596. },
  597. "time": "2020-11-24T22:02:12+00:00"
  598. },
  599. {
  600. "name": "graham-campbell/result-type",
  601. "version": "v1.1.3",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  605. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  610. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "php": "^7.2.5 || ^8.0",
  615. "phpoption/phpoption": "^1.9.3"
  616. },
  617. "require-dev": {
  618. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  619. },
  620. "type": "library",
  621. "autoload": {
  622. "psr-4": {
  623. "GrahamCampbell\\ResultType\\": "src/"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Graham Campbell",
  633. "email": "hello@gjcampbell.co.uk",
  634. "homepage": "https://github.com/GrahamCampbell"
  635. }
  636. ],
  637. "description": "An Implementation Of The Result Type",
  638. "keywords": [
  639. "Graham Campbell",
  640. "GrahamCampbell",
  641. "Result Type",
  642. "Result-Type",
  643. "result"
  644. ],
  645. "support": {
  646. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  647. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  648. },
  649. "funding": [
  650. {
  651. "url": "https://github.com/GrahamCampbell",
  652. "type": "github"
  653. },
  654. {
  655. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  656. "type": "tidelift"
  657. }
  658. ],
  659. "time": "2024-07-20T21:45:45+00:00"
  660. },
  661. {
  662. "name": "guzzlehttp/guzzle",
  663. "version": "7.9.3",
  664. "source": {
  665. "type": "git",
  666. "url": "https://github.com/guzzle/guzzle.git",
  667. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  668. },
  669. "dist": {
  670. "type": "zip",
  671. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  672. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  673. "shasum": ""
  674. },
  675. "require": {
  676. "ext-json": "*",
  677. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  678. "guzzlehttp/psr7": "^2.7.0",
  679. "php": "^7.2.5 || ^8.0",
  680. "psr/http-client": "^1.0",
  681. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  682. },
  683. "provide": {
  684. "psr/http-client-implementation": "1.0"
  685. },
  686. "require-dev": {
  687. "bamarni/composer-bin-plugin": "^1.8.2",
  688. "ext-curl": "*",
  689. "guzzle/client-integration-tests": "3.0.2",
  690. "php-http/message-factory": "^1.1",
  691. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  692. "psr/log": "^1.1 || ^2.0 || ^3.0"
  693. },
  694. "suggest": {
  695. "ext-curl": "Required for CURL handler support",
  696. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  697. "psr/log": "Required for using the Log middleware"
  698. },
  699. "type": "library",
  700. "extra": {
  701. "bamarni-bin": {
  702. "bin-links": true,
  703. "forward-command": false
  704. }
  705. },
  706. "autoload": {
  707. "files": [
  708. "src/functions_include.php"
  709. ],
  710. "psr-4": {
  711. "GuzzleHttp\\": "src/"
  712. }
  713. },
  714. "notification-url": "https://packagist.org/downloads/",
  715. "license": [
  716. "MIT"
  717. ],
  718. "authors": [
  719. {
  720. "name": "Graham Campbell",
  721. "email": "hello@gjcampbell.co.uk",
  722. "homepage": "https://github.com/GrahamCampbell"
  723. },
  724. {
  725. "name": "Michael Dowling",
  726. "email": "mtdowling@gmail.com",
  727. "homepage": "https://github.com/mtdowling"
  728. },
  729. {
  730. "name": "Jeremy Lindblom",
  731. "email": "jeremeamia@gmail.com",
  732. "homepage": "https://github.com/jeremeamia"
  733. },
  734. {
  735. "name": "George Mponos",
  736. "email": "gmponos@gmail.com",
  737. "homepage": "https://github.com/gmponos"
  738. },
  739. {
  740. "name": "Tobias Nyholm",
  741. "email": "tobias.nyholm@gmail.com",
  742. "homepage": "https://github.com/Nyholm"
  743. },
  744. {
  745. "name": "Márk Sági-Kazár",
  746. "email": "mark.sagikazar@gmail.com",
  747. "homepage": "https://github.com/sagikazarmark"
  748. },
  749. {
  750. "name": "Tobias Schultze",
  751. "email": "webmaster@tubo-world.de",
  752. "homepage": "https://github.com/Tobion"
  753. }
  754. ],
  755. "description": "Guzzle is a PHP HTTP client library",
  756. "keywords": [
  757. "client",
  758. "curl",
  759. "framework",
  760. "http",
  761. "http client",
  762. "psr-18",
  763. "psr-7",
  764. "rest",
  765. "web service"
  766. ],
  767. "support": {
  768. "issues": "https://github.com/guzzle/guzzle/issues",
  769. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  770. },
  771. "funding": [
  772. {
  773. "url": "https://github.com/GrahamCampbell",
  774. "type": "github"
  775. },
  776. {
  777. "url": "https://github.com/Nyholm",
  778. "type": "github"
  779. },
  780. {
  781. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  782. "type": "tidelift"
  783. }
  784. ],
  785. "time": "2025-03-27T13:37:11+00:00"
  786. },
  787. {
  788. "name": "guzzlehttp/promises",
  789. "version": "2.2.0",
  790. "source": {
  791. "type": "git",
  792. "url": "https://github.com/guzzle/promises.git",
  793. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  794. },
  795. "dist": {
  796. "type": "zip",
  797. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  798. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  799. "shasum": ""
  800. },
  801. "require": {
  802. "php": "^7.2.5 || ^8.0"
  803. },
  804. "require-dev": {
  805. "bamarni/composer-bin-plugin": "^1.8.2",
  806. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  807. },
  808. "type": "library",
  809. "extra": {
  810. "bamarni-bin": {
  811. "bin-links": true,
  812. "forward-command": false
  813. }
  814. },
  815. "autoload": {
  816. "psr-4": {
  817. "GuzzleHttp\\Promise\\": "src/"
  818. }
  819. },
  820. "notification-url": "https://packagist.org/downloads/",
  821. "license": [
  822. "MIT"
  823. ],
  824. "authors": [
  825. {
  826. "name": "Graham Campbell",
  827. "email": "hello@gjcampbell.co.uk",
  828. "homepage": "https://github.com/GrahamCampbell"
  829. },
  830. {
  831. "name": "Michael Dowling",
  832. "email": "mtdowling@gmail.com",
  833. "homepage": "https://github.com/mtdowling"
  834. },
  835. {
  836. "name": "Tobias Nyholm",
  837. "email": "tobias.nyholm@gmail.com",
  838. "homepage": "https://github.com/Nyholm"
  839. },
  840. {
  841. "name": "Tobias Schultze",
  842. "email": "webmaster@tubo-world.de",
  843. "homepage": "https://github.com/Tobion"
  844. }
  845. ],
  846. "description": "Guzzle promises library",
  847. "keywords": [
  848. "promise"
  849. ],
  850. "support": {
  851. "issues": "https://github.com/guzzle/promises/issues",
  852. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  853. },
  854. "funding": [
  855. {
  856. "url": "https://github.com/GrahamCampbell",
  857. "type": "github"
  858. },
  859. {
  860. "url": "https://github.com/Nyholm",
  861. "type": "github"
  862. },
  863. {
  864. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  865. "type": "tidelift"
  866. }
  867. ],
  868. "time": "2025-03-27T13:27:01+00:00"
  869. },
  870. {
  871. "name": "guzzlehttp/psr7",
  872. "version": "2.7.1",
  873. "source": {
  874. "type": "git",
  875. "url": "https://github.com/guzzle/psr7.git",
  876. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  877. },
  878. "dist": {
  879. "type": "zip",
  880. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  881. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  882. "shasum": ""
  883. },
  884. "require": {
  885. "php": "^7.2.5 || ^8.0",
  886. "psr/http-factory": "^1.0",
  887. "psr/http-message": "^1.1 || ^2.0",
  888. "ralouphie/getallheaders": "^3.0"
  889. },
  890. "provide": {
  891. "psr/http-factory-implementation": "1.0",
  892. "psr/http-message-implementation": "1.0"
  893. },
  894. "require-dev": {
  895. "bamarni/composer-bin-plugin": "^1.8.2",
  896. "http-interop/http-factory-tests": "0.9.0",
  897. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  898. },
  899. "suggest": {
  900. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  901. },
  902. "type": "library",
  903. "extra": {
  904. "bamarni-bin": {
  905. "bin-links": true,
  906. "forward-command": false
  907. }
  908. },
  909. "autoload": {
  910. "psr-4": {
  911. "GuzzleHttp\\Psr7\\": "src/"
  912. }
  913. },
  914. "notification-url": "https://packagist.org/downloads/",
  915. "license": [
  916. "MIT"
  917. ],
  918. "authors": [
  919. {
  920. "name": "Graham Campbell",
  921. "email": "hello@gjcampbell.co.uk",
  922. "homepage": "https://github.com/GrahamCampbell"
  923. },
  924. {
  925. "name": "Michael Dowling",
  926. "email": "mtdowling@gmail.com",
  927. "homepage": "https://github.com/mtdowling"
  928. },
  929. {
  930. "name": "George Mponos",
  931. "email": "gmponos@gmail.com",
  932. "homepage": "https://github.com/gmponos"
  933. },
  934. {
  935. "name": "Tobias Nyholm",
  936. "email": "tobias.nyholm@gmail.com",
  937. "homepage": "https://github.com/Nyholm"
  938. },
  939. {
  940. "name": "Márk Sági-Kazár",
  941. "email": "mark.sagikazar@gmail.com",
  942. "homepage": "https://github.com/sagikazarmark"
  943. },
  944. {
  945. "name": "Tobias Schultze",
  946. "email": "webmaster@tubo-world.de",
  947. "homepage": "https://github.com/Tobion"
  948. },
  949. {
  950. "name": "Márk Sági-Kazár",
  951. "email": "mark.sagikazar@gmail.com",
  952. "homepage": "https://sagikazarmark.hu"
  953. }
  954. ],
  955. "description": "PSR-7 message implementation that also provides common utility methods",
  956. "keywords": [
  957. "http",
  958. "message",
  959. "psr-7",
  960. "request",
  961. "response",
  962. "stream",
  963. "uri",
  964. "url"
  965. ],
  966. "support": {
  967. "issues": "https://github.com/guzzle/psr7/issues",
  968. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  969. },
  970. "funding": [
  971. {
  972. "url": "https://github.com/GrahamCampbell",
  973. "type": "github"
  974. },
  975. {
  976. "url": "https://github.com/Nyholm",
  977. "type": "github"
  978. },
  979. {
  980. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  981. "type": "tidelift"
  982. }
  983. ],
  984. "time": "2025-03-27T12:30:47+00:00"
  985. },
  986. {
  987. "name": "hyperf/cache",
  988. "version": "v3.1.43",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/hyperf/cache.git",
  992. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  997. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "hyperf/codec": "~3.1.0",
  1002. "hyperf/collection": "~3.1.0",
  1003. "hyperf/contract": "~3.1.0",
  1004. "hyperf/support": "~3.1.0",
  1005. "hyperf/utils": "~3.1.0",
  1006. "php": ">=8.1",
  1007. "psr/container": "^1.0 || ^2.0",
  1008. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1009. },
  1010. "suggest": {
  1011. "hyperf/di": "Use cache annotations.",
  1012. "hyperf/event": "Use listener to delete annotation cache."
  1013. },
  1014. "type": "library",
  1015. "extra": {
  1016. "hyperf": {
  1017. "config": "Hyperf\\Cache\\ConfigProvider"
  1018. },
  1019. "branch-alias": {
  1020. "dev-master": "3.1-dev"
  1021. }
  1022. },
  1023. "autoload": {
  1024. "psr-4": {
  1025. "Hyperf\\Cache\\": "src/"
  1026. }
  1027. },
  1028. "notification-url": "https://packagist.org/downloads/",
  1029. "license": [
  1030. "MIT"
  1031. ],
  1032. "description": "A cache component for hyperf.",
  1033. "homepage": "https://hyperf.io",
  1034. "keywords": [
  1035. "cache",
  1036. "hyperf",
  1037. "php"
  1038. ],
  1039. "support": {
  1040. "docs": "https://hyperf.wiki",
  1041. "issues": "https://github.com/hyperf/hyperf/issues",
  1042. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1043. "source": "https://github.com/hyperf/hyperf"
  1044. },
  1045. "funding": [
  1046. {
  1047. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1048. "type": "custom"
  1049. },
  1050. {
  1051. "url": "https://opencollective.com/hyperf",
  1052. "type": "open_collective"
  1053. }
  1054. ],
  1055. "time": "2024-10-09T10:22:39+00:00"
  1056. },
  1057. {
  1058. "name": "hyperf/code-parser",
  1059. "version": "v3.1.52",
  1060. "source": {
  1061. "type": "git",
  1062. "url": "https://github.com/hyperf/code-parser.git",
  1063. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57"
  1064. },
  1065. "dist": {
  1066. "type": "zip",
  1067. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1068. "reference": "340fb9902465bfc6d26d8b5a6d8d369590ea6e57",
  1069. "shasum": ""
  1070. },
  1071. "require": {
  1072. "hyperf/collection": "~3.1.0",
  1073. "hyperf/stringable": "~3.1.0",
  1074. "hyperf/support": "~3.1.0",
  1075. "php": ">=8.1"
  1076. },
  1077. "suggest": {
  1078. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1079. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1080. },
  1081. "type": "library",
  1082. "extra": {
  1083. "branch-alias": {
  1084. "dev-master": "3.1-dev"
  1085. }
  1086. },
  1087. "autoload": {
  1088. "psr-4": {
  1089. "Hyperf\\CodeParser\\": "src/"
  1090. }
  1091. },
  1092. "notification-url": "https://packagist.org/downloads/",
  1093. "license": [
  1094. "MIT"
  1095. ],
  1096. "description": "A code parser component for Hyperf.",
  1097. "homepage": "https://hyperf.io",
  1098. "keywords": [
  1099. "code-parser",
  1100. "hyperf",
  1101. "php",
  1102. "swoole"
  1103. ],
  1104. "support": {
  1105. "docs": "https://hyperf.wiki",
  1106. "issues": "https://github.com/hyperf/hyperf/issues",
  1107. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1108. "source": "https://github.com/hyperf/hyperf"
  1109. },
  1110. "funding": [
  1111. {
  1112. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1113. "type": "custom"
  1114. },
  1115. {
  1116. "url": "https://opencollective.com/hyperf",
  1117. "type": "open_collective"
  1118. }
  1119. ],
  1120. "time": "2025-02-27T07:40:13+00:00"
  1121. },
  1122. {
  1123. "name": "hyperf/codec",
  1124. "version": "v3.1.42",
  1125. "source": {
  1126. "type": "git",
  1127. "url": "https://github.com/hyperf/codec.git",
  1128. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1129. },
  1130. "dist": {
  1131. "type": "zip",
  1132. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1133. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1134. "shasum": ""
  1135. },
  1136. "require": {
  1137. "ext-json": "*",
  1138. "ext-xml": "*",
  1139. "hyperf/contract": "~3.1.0",
  1140. "php": ">=8.1"
  1141. },
  1142. "suggest": {
  1143. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1144. },
  1145. "type": "library",
  1146. "extra": {
  1147. "branch-alias": {
  1148. "dev-master": "3.1-dev"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Codec\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A codec component for Hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "codec",
  1164. "hyperf",
  1165. "php",
  1166. "swoole"
  1167. ],
  1168. "support": {
  1169. "docs": "https://hyperf.wiki",
  1170. "issues": "https://github.com/hyperf/hyperf/issues",
  1171. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1172. "source": "https://github.com/hyperf/hyperf"
  1173. },
  1174. "funding": [
  1175. {
  1176. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1177. "type": "custom"
  1178. },
  1179. {
  1180. "url": "https://opencollective.com/hyperf",
  1181. "type": "open_collective"
  1182. }
  1183. ],
  1184. "time": "2024-09-25T02:54:12+00:00"
  1185. },
  1186. {
  1187. "name": "hyperf/collection",
  1188. "version": "v3.1.52",
  1189. "source": {
  1190. "type": "git",
  1191. "url": "https://github.com/hyperf/collection.git",
  1192. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a"
  1193. },
  1194. "dist": {
  1195. "type": "zip",
  1196. "url": "https://api.github.com/repos/hyperf/collection/zipball/a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1197. "reference": "a56bfce5002c7d69838f7e82184a2e135e98e80a",
  1198. "shasum": ""
  1199. },
  1200. "require": {
  1201. "hyperf/conditionable": "~3.1.0",
  1202. "hyperf/contract": "~3.1.0",
  1203. "hyperf/macroable": "~3.1.0",
  1204. "hyperf/stringable": "~3.1.0",
  1205. "php": ">=8.1"
  1206. },
  1207. "type": "library",
  1208. "extra": {
  1209. "branch-alias": {
  1210. "dev-master": "3.1-dev"
  1211. }
  1212. },
  1213. "autoload": {
  1214. "files": [
  1215. "src/Functions.php"
  1216. ],
  1217. "psr-4": {
  1218. "Hyperf\\Collection\\": "src/"
  1219. }
  1220. },
  1221. "notification-url": "https://packagist.org/downloads/",
  1222. "license": [
  1223. "MIT"
  1224. ],
  1225. "description": "Hyperf Collection package which come from illuminate/collections",
  1226. "homepage": "https://hyperf.io",
  1227. "keywords": [
  1228. "collection",
  1229. "hyperf",
  1230. "php",
  1231. "swoole"
  1232. ],
  1233. "support": {
  1234. "docs": "https://hyperf.wiki",
  1235. "issues": "https://github.com/hyperf/hyperf/issues",
  1236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1237. "source": "https://github.com/hyperf/hyperf"
  1238. },
  1239. "funding": [
  1240. {
  1241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1242. "type": "custom"
  1243. },
  1244. {
  1245. "url": "https://opencollective.com/hyperf",
  1246. "type": "open_collective"
  1247. }
  1248. ],
  1249. "time": "2025-02-17T03:58:59+00:00"
  1250. },
  1251. {
  1252. "name": "hyperf/command",
  1253. "version": "v3.1.51",
  1254. "source": {
  1255. "type": "git",
  1256. "url": "https://github.com/hyperf/command.git",
  1257. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe"
  1258. },
  1259. "dist": {
  1260. "type": "zip",
  1261. "url": "https://api.github.com/repos/hyperf/command/zipball/e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1262. "reference": "e71af684e6f01140221b608b3d4f4cf6f78144fe",
  1263. "shasum": ""
  1264. },
  1265. "require": {
  1266. "hyperf/collection": "~3.1.0",
  1267. "hyperf/context": "~3.1.0",
  1268. "hyperf/contract": "~3.1.0",
  1269. "hyperf/coroutine": "~3.1.0",
  1270. "hyperf/di": "~3.1.0",
  1271. "hyperf/stringable": "~3.1.0",
  1272. "hyperf/support": "~3.1.0",
  1273. "hyperf/tappable": "~3.1.0",
  1274. "php": ">=8.1",
  1275. "psr/event-dispatcher": "^1.0",
  1276. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1277. },
  1278. "suggest": {
  1279. "hyperf/di": "Required to use annotations.",
  1280. "hyperf/event": "Required to use listeners."
  1281. },
  1282. "type": "library",
  1283. "extra": {
  1284. "hyperf": {
  1285. "config": "Hyperf\\Command\\ConfigProvider"
  1286. },
  1287. "branch-alias": {
  1288. "dev-master": "3.1-dev"
  1289. }
  1290. },
  1291. "autoload": {
  1292. "psr-4": {
  1293. "Hyperf\\Command\\": "src/"
  1294. }
  1295. },
  1296. "notification-url": "https://packagist.org/downloads/",
  1297. "license": [
  1298. "MIT"
  1299. ],
  1300. "description": "Command for hyperf",
  1301. "keywords": [
  1302. "command",
  1303. "php",
  1304. "swoole"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/hyperf/command/issues",
  1308. "source": "https://github.com/hyperf/command/tree/v3.1.51"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://opencollective.com/hyperf",
  1317. "type": "open_collective"
  1318. }
  1319. ],
  1320. "time": "2025-02-06T03:40:37+00:00"
  1321. },
  1322. {
  1323. "name": "hyperf/conditionable",
  1324. "version": "v3.1.42",
  1325. "source": {
  1326. "type": "git",
  1327. "url": "https://github.com/hyperf/conditionable.git",
  1328. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1329. },
  1330. "dist": {
  1331. "type": "zip",
  1332. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1333. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1334. "shasum": ""
  1335. },
  1336. "require": {
  1337. "php": ">=8.1"
  1338. },
  1339. "type": "library",
  1340. "extra": {
  1341. "branch-alias": {
  1342. "dev-master": "3.1-dev"
  1343. }
  1344. },
  1345. "autoload": {
  1346. "psr-4": {
  1347. "Hyperf\\Conditionable\\": "src/"
  1348. }
  1349. },
  1350. "notification-url": "https://packagist.org/downloads/",
  1351. "license": [
  1352. "MIT"
  1353. ],
  1354. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1355. "homepage": "https://hyperf.io",
  1356. "keywords": [
  1357. "conditionable",
  1358. "hyperf",
  1359. "php",
  1360. "swoole"
  1361. ],
  1362. "support": {
  1363. "docs": "https://hyperf.wiki",
  1364. "issues": "https://github.com/hyperf/hyperf/issues",
  1365. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1366. "source": "https://github.com/hyperf/hyperf"
  1367. },
  1368. "funding": [
  1369. {
  1370. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1371. "type": "custom"
  1372. },
  1373. {
  1374. "url": "https://opencollective.com/hyperf",
  1375. "type": "open_collective"
  1376. }
  1377. ],
  1378. "time": "2024-09-25T02:54:12+00:00"
  1379. },
  1380. {
  1381. "name": "hyperf/config",
  1382. "version": "v3.1.42",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/hyperf/config.git",
  1386. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1391. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1392. "shasum": ""
  1393. },
  1394. "require": {
  1395. "hyperf/collection": "~3.1.0",
  1396. "hyperf/contract": "~3.1.0",
  1397. "hyperf/support": "~3.1.0",
  1398. "php": ">=8.1",
  1399. "psr/container": "^1.0 || ^2.0",
  1400. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1401. },
  1402. "suggest": {
  1403. "hyperf/context": "Required to use config()",
  1404. "hyperf/di": "Allows using @Value annotation",
  1405. "hyperf/event": "Allows using @Value annotation",
  1406. "hyperf/framework": "Allows using @Value annotation",
  1407. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1408. },
  1409. "type": "library",
  1410. "extra": {
  1411. "hyperf": {
  1412. "config": "Hyperf\\Config\\ConfigProvider"
  1413. },
  1414. "branch-alias": {
  1415. "dev-master": "3.1-dev"
  1416. }
  1417. },
  1418. "autoload": {
  1419. "files": [
  1420. "./src/Functions.php"
  1421. ],
  1422. "psr-4": {
  1423. "Hyperf\\Config\\": "src/"
  1424. }
  1425. },
  1426. "notification-url": "https://packagist.org/downloads/",
  1427. "license": [
  1428. "MIT"
  1429. ],
  1430. "description": "An independent component that provides configuration container.",
  1431. "homepage": "https://hyperf.io",
  1432. "keywords": [
  1433. "config",
  1434. "configuration",
  1435. "hyperf",
  1436. "php",
  1437. "swoole"
  1438. ],
  1439. "support": {
  1440. "docs": "https://hyperf.wiki",
  1441. "issues": "https://github.com/hyperf/hyperf/issues",
  1442. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1443. "source": "https://github.com/hyperf/hyperf"
  1444. },
  1445. "funding": [
  1446. {
  1447. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1448. "type": "custom"
  1449. },
  1450. {
  1451. "url": "https://opencollective.com/hyperf",
  1452. "type": "open_collective"
  1453. }
  1454. ],
  1455. "time": "2024-09-25T02:54:12+00:00"
  1456. },
  1457. {
  1458. "name": "hyperf/config-center",
  1459. "version": "v3.1.42",
  1460. "source": {
  1461. "type": "git",
  1462. "url": "https://github.com/hyperf/config-center.git",
  1463. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1464. },
  1465. "dist": {
  1466. "type": "zip",
  1467. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1468. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1469. "shasum": ""
  1470. },
  1471. "require": {
  1472. "hyperf/support": "~3.1.0",
  1473. "php": ">=8.1"
  1474. },
  1475. "suggest": {
  1476. "hyperf/process": "^2.1"
  1477. },
  1478. "type": "library",
  1479. "extra": {
  1480. "hyperf": {
  1481. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1482. },
  1483. "branch-alias": {
  1484. "dev-master": "3.1-dev"
  1485. }
  1486. },
  1487. "autoload": {
  1488. "psr-4": {
  1489. "Hyperf\\ConfigCenter\\": "src/"
  1490. }
  1491. },
  1492. "notification-url": "https://packagist.org/downloads/",
  1493. "license": [
  1494. "MIT"
  1495. ],
  1496. "description": "The abstraction component of config center",
  1497. "homepage": "https://hyperf.io",
  1498. "keywords": [
  1499. "config-center",
  1500. "hyperf",
  1501. "php"
  1502. ],
  1503. "support": {
  1504. "docs": "https://hyperf.wiki",
  1505. "issues": "https://github.com/hyperf/hyperf/issues",
  1506. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1507. "source": "https://github.com/hyperf/hyperf"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://opencollective.com/hyperf",
  1516. "type": "open_collective"
  1517. }
  1518. ],
  1519. "time": "2024-09-25T02:54:12+00:00"
  1520. },
  1521. {
  1522. "name": "hyperf/config-nacos",
  1523. "version": "v3.1.42",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/hyperf/config-nacos.git",
  1527. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1532. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "hyperf/codec": "~3.1.0",
  1537. "hyperf/config-center": "~3.1.0",
  1538. "hyperf/contract": "~3.1.0",
  1539. "hyperf/guzzle": "~3.1.0",
  1540. "hyperf/nacos": "~3.1.0",
  1541. "hyperf/support": "~3.1.0",
  1542. "hyperf/utils": "~3.1.0",
  1543. "jetbrains/phpstorm-attributes": "^1.0",
  1544. "php": ">=8.1"
  1545. },
  1546. "suggest": {
  1547. "ext-json": "*",
  1548. "ext-simplexml": "*",
  1549. "ext-yaml": "*",
  1550. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1551. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1552. "hyperf/process": "Required to use processes. (~2.2.0)"
  1553. },
  1554. "type": "library",
  1555. "extra": {
  1556. "hyperf": {
  1557. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1558. },
  1559. "branch-alias": {
  1560. "dev-master": "3.1-dev"
  1561. }
  1562. },
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Hyperf\\ConfigNacos\\": "src/"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "description": "A nacos adapter for config center component.",
  1573. "homepage": "https://hyperf.io",
  1574. "keywords": [
  1575. "hyperf",
  1576. "nacos",
  1577. "php",
  1578. "swoole"
  1579. ],
  1580. "support": {
  1581. "docs": "https://hyperf.wiki",
  1582. "issues": "https://github.com/hyperf/hyperf/issues",
  1583. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1584. "source": "https://github.com/hyperf/hyperf"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1589. "type": "custom"
  1590. },
  1591. {
  1592. "url": "https://opencollective.com/hyperf",
  1593. "type": "open_collective"
  1594. }
  1595. ],
  1596. "time": "2024-09-25T02:54:12+00:00"
  1597. },
  1598. {
  1599. "name": "hyperf/constants",
  1600. "version": "v3.1.42",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/hyperf/constants.git",
  1604. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1609. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "hyperf/di": "~3.1.0",
  1614. "hyperf/support": "~3.1.0",
  1615. "hyperf/utils": "~3.1.0",
  1616. "php": ">=8.1"
  1617. },
  1618. "suggest": {
  1619. "hyperf/translation": "Required to use translation."
  1620. },
  1621. "type": "library",
  1622. "extra": {
  1623. "hyperf": {
  1624. "config": "Hyperf\\Constants\\ConfigProvider"
  1625. },
  1626. "branch-alias": {
  1627. "dev-master": "3.1-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Hyperf\\Constants\\": "src/"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "description": "A constants component for hyperf.",
  1640. "homepage": "https://hyperf.io",
  1641. "keywords": [
  1642. "constants",
  1643. "hyperf",
  1644. "php"
  1645. ],
  1646. "support": {
  1647. "docs": "https://hyperf.wiki",
  1648. "issues": "https://github.com/hyperf/hyperf/issues",
  1649. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1650. "source": "https://github.com/hyperf/hyperf"
  1651. },
  1652. "funding": [
  1653. {
  1654. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1655. "type": "custom"
  1656. },
  1657. {
  1658. "url": "https://opencollective.com/hyperf",
  1659. "type": "open_collective"
  1660. }
  1661. ],
  1662. "time": "2024-09-25T02:54:12+00:00"
  1663. },
  1664. {
  1665. "name": "hyperf/consul",
  1666. "version": "v3.1.42",
  1667. "source": {
  1668. "type": "git",
  1669. "url": "https://github.com/hyperf/consul.git",
  1670. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1671. },
  1672. "dist": {
  1673. "type": "zip",
  1674. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1675. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1676. "shasum": ""
  1677. },
  1678. "require": {
  1679. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1680. "php": ">=8.1"
  1681. },
  1682. "type": "library",
  1683. "extra": {
  1684. "hyperf": {
  1685. "config": "Hyperf\\Consul\\ConfigProvider"
  1686. },
  1687. "branch-alias": {
  1688. "dev-master": "3.1-dev"
  1689. }
  1690. },
  1691. "autoload": {
  1692. "psr-4": {
  1693. "Hyperf\\Consul\\": "src/"
  1694. }
  1695. },
  1696. "notification-url": "https://packagist.org/downloads/",
  1697. "license": [
  1698. "MIT"
  1699. ],
  1700. "description": "A Consul Client for Hyperf.",
  1701. "homepage": "https://hyperf.io",
  1702. "keywords": [
  1703. "consul",
  1704. "consul-client",
  1705. "hyperf",
  1706. "php",
  1707. "swoole"
  1708. ],
  1709. "support": {
  1710. "docs": "https://hyperf.wiki",
  1711. "issues": "https://github.com/hyperf/hyperf/issues",
  1712. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1713. "source": "https://github.com/hyperf/hyperf"
  1714. },
  1715. "funding": [
  1716. {
  1717. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1718. "type": "custom"
  1719. },
  1720. {
  1721. "url": "https://opencollective.com/hyperf",
  1722. "type": "open_collective"
  1723. }
  1724. ],
  1725. "time": "2024-09-25T02:54:12+00:00"
  1726. },
  1727. {
  1728. "name": "hyperf/context",
  1729. "version": "v3.1.42",
  1730. "source": {
  1731. "type": "git",
  1732. "url": "https://github.com/hyperf/context.git",
  1733. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1734. },
  1735. "dist": {
  1736. "type": "zip",
  1737. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1738. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1739. "shasum": ""
  1740. },
  1741. "require": {
  1742. "hyperf/engine": "^2.0",
  1743. "php": ">=8.1"
  1744. },
  1745. "suggest": {
  1746. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1747. },
  1748. "type": "library",
  1749. "extra": {
  1750. "branch-alias": {
  1751. "dev-master": "3.1-dev"
  1752. }
  1753. },
  1754. "autoload": {
  1755. "psr-4": {
  1756. "Hyperf\\Context\\": "src/"
  1757. }
  1758. },
  1759. "notification-url": "https://packagist.org/downloads/",
  1760. "license": [
  1761. "MIT"
  1762. ],
  1763. "description": "A coroutine/application context library.",
  1764. "homepage": "https://hyperf.io",
  1765. "keywords": [
  1766. "Context",
  1767. "hyperf",
  1768. "php",
  1769. "swoole"
  1770. ],
  1771. "support": {
  1772. "docs": "https://hyperf.wiki",
  1773. "issues": "https://github.com/hyperf/hyperf/issues",
  1774. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1775. "source": "https://github.com/hyperf/hyperf"
  1776. },
  1777. "funding": [
  1778. {
  1779. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1780. "type": "custom"
  1781. },
  1782. {
  1783. "url": "https://opencollective.com/hyperf",
  1784. "type": "open_collective"
  1785. }
  1786. ],
  1787. "time": "2024-09-25T02:54:12+00:00"
  1788. },
  1789. {
  1790. "name": "hyperf/contract",
  1791. "version": "v3.1.42",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/hyperf/contract.git",
  1795. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1800. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "php": ">=8.1"
  1805. },
  1806. "type": "library",
  1807. "extra": {
  1808. "branch-alias": {
  1809. "dev-master": "3.1-dev"
  1810. }
  1811. },
  1812. "autoload": {
  1813. "psr-4": {
  1814. "Hyperf\\Contract\\": "src/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "description": "The contracts of Hyperf.",
  1822. "homepage": "https://hyperf.io",
  1823. "keywords": [
  1824. "hyperf",
  1825. "php",
  1826. "swoole"
  1827. ],
  1828. "support": {
  1829. "docs": "https://hyperf.wiki",
  1830. "issues": "https://github.com/hyperf/hyperf/issues",
  1831. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1832. "source": "https://github.com/hyperf/hyperf"
  1833. },
  1834. "funding": [
  1835. {
  1836. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1837. "type": "custom"
  1838. },
  1839. {
  1840. "url": "https://opencollective.com/hyperf",
  1841. "type": "open_collective"
  1842. }
  1843. ],
  1844. "time": "2024-09-25T02:54:12+00:00"
  1845. },
  1846. {
  1847. "name": "hyperf/coordinator",
  1848. "version": "v3.1.42",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://github.com/hyperf/coordinator.git",
  1852. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1857. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1858. "shasum": ""
  1859. },
  1860. "require": {
  1861. "hyperf/engine": "^2.0",
  1862. "php": ">=8.1"
  1863. },
  1864. "type": "library",
  1865. "extra": {
  1866. "branch-alias": {
  1867. "dev-master": "3.1-dev"
  1868. }
  1869. },
  1870. "autoload": {
  1871. "files": [
  1872. "src/Functions.php"
  1873. ],
  1874. "psr-4": {
  1875. "Hyperf\\Coordinator\\": "src/"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "description": "Hyperf Coordinator",
  1883. "homepage": "https://hyperf.io",
  1884. "keywords": [
  1885. "Coordinator",
  1886. "hyperf",
  1887. "php",
  1888. "swoole"
  1889. ],
  1890. "support": {
  1891. "docs": "https://hyperf.wiki",
  1892. "issues": "https://github.com/hyperf/hyperf/issues",
  1893. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1894. "source": "https://github.com/hyperf/hyperf"
  1895. },
  1896. "funding": [
  1897. {
  1898. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1899. "type": "custom"
  1900. },
  1901. {
  1902. "url": "https://opencollective.com/hyperf",
  1903. "type": "open_collective"
  1904. }
  1905. ],
  1906. "time": "2024-09-25T02:54:12+00:00"
  1907. },
  1908. {
  1909. "name": "hyperf/coroutine",
  1910. "version": "v3.1.54",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/hyperf/coroutine.git",
  1914. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/5b474c4bb46be015f1340939d92931b96a0b0cad",
  1919. "reference": "5b474c4bb46be015f1340939d92931b96a0b0cad",
  1920. "shasum": ""
  1921. },
  1922. "require": {
  1923. "hyperf/context": "~3.1.0",
  1924. "hyperf/contract": "~3.1.0",
  1925. "hyperf/engine": "^2.14.0",
  1926. "php": ">=8.1"
  1927. },
  1928. "type": "library",
  1929. "extra": {
  1930. "branch-alias": {
  1931. "dev-master": "3.1-dev"
  1932. }
  1933. },
  1934. "autoload": {
  1935. "files": [
  1936. "src/Functions.php"
  1937. ],
  1938. "psr-4": {
  1939. "Hyperf\\Coroutine\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "description": "Hyperf Coroutine",
  1947. "homepage": "https://hyperf.io",
  1948. "keywords": [
  1949. "coroutine",
  1950. "hyperf",
  1951. "php",
  1952. "swoole"
  1953. ],
  1954. "support": {
  1955. "docs": "https://hyperf.wiki",
  1956. "issues": "https://github.com/hyperf/hyperf/issues",
  1957. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1958. "source": "https://github.com/hyperf/hyperf"
  1959. },
  1960. "funding": [
  1961. {
  1962. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1963. "type": "custom"
  1964. },
  1965. {
  1966. "url": "https://opencollective.com/hyperf",
  1967. "type": "open_collective"
  1968. }
  1969. ],
  1970. "time": "2025-04-14T01:38:29+00:00"
  1971. },
  1972. {
  1973. "name": "hyperf/database",
  1974. "version": "v3.1.54",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/hyperf/database.git",
  1978. "reference": "efae6d4694652fe3bb61e2f39c7f0a2e6813762d"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/hyperf/database/zipball/efae6d4694652fe3bb61e2f39c7f0a2e6813762d",
  1983. "reference": "efae6d4694652fe3bb61e2f39c7f0a2e6813762d",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "hyperf/code-parser": "~3.1.0",
  1988. "hyperf/collection": "~3.1.23",
  1989. "hyperf/conditionable": "~3.1.0",
  1990. "hyperf/macroable": "~3.1.0",
  1991. "hyperf/support": "~3.1.0",
  1992. "hyperf/tappable": "~3.1.0",
  1993. "hyperf/utils": "~3.1.0",
  1994. "nesbot/carbon": "^2.0",
  1995. "php": ">=8.1",
  1996. "psr/container": "^1.0 || ^2.0",
  1997. "psr/event-dispatcher": "^1.0"
  1998. },
  1999. "suggest": {
  2000. "doctrine/dbal": "Required to rename columns (^3.0).",
  2001. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2002. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2003. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "3.1-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Hyperf\\Database\\": "src/"
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "description": "A flexible database library.",
  2021. "homepage": "https://hyperf.io",
  2022. "keywords": [
  2023. "database",
  2024. "hyperf",
  2025. "php"
  2026. ],
  2027. "support": {
  2028. "docs": "https://hyperf.wiki",
  2029. "issues": "https://github.com/hyperf/hyperf/issues",
  2030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2031. "source": "https://github.com/hyperf/hyperf"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2036. "type": "custom"
  2037. },
  2038. {
  2039. "url": "https://opencollective.com/hyperf",
  2040. "type": "open_collective"
  2041. }
  2042. ],
  2043. "time": "2025-04-14T01:39:13+00:00"
  2044. },
  2045. {
  2046. "name": "hyperf/db-connection",
  2047. "version": "v3.1.44",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/hyperf/db-connection.git",
  2051. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2056. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "hyperf/database": "~3.1.0",
  2061. "hyperf/di": "~3.1.0",
  2062. "hyperf/framework": "~3.1.0",
  2063. "hyperf/model-listener": "~3.1.0",
  2064. "hyperf/pool": "~3.1.0",
  2065. "hyperf/support": "~3.1.0",
  2066. "hyperf/utils": "~3.1.0",
  2067. "php": ">=8.1",
  2068. "psr/container": "^1.0 || ^2.0"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "hyperf": {
  2073. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2074. },
  2075. "branch-alias": {
  2076. "dev-master": "3.1-dev"
  2077. }
  2078. },
  2079. "autoload": {
  2080. "psr-4": {
  2081. "Hyperf\\DbConnection\\": "src/"
  2082. }
  2083. },
  2084. "notification-url": "https://packagist.org/downloads/",
  2085. "license": [
  2086. "MIT"
  2087. ],
  2088. "description": "A hyperf db connection handler for hyperf/database.",
  2089. "homepage": "https://hyperf.io",
  2090. "keywords": [
  2091. "Connection",
  2092. "database",
  2093. "hyperf",
  2094. "php"
  2095. ],
  2096. "support": {
  2097. "docs": "https://hyperf.wiki",
  2098. "issues": "https://github.com/hyperf/hyperf/issues",
  2099. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2100. "source": "https://github.com/hyperf/hyperf"
  2101. },
  2102. "funding": [
  2103. {
  2104. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2105. "type": "custom"
  2106. },
  2107. {
  2108. "url": "https://opencollective.com/hyperf",
  2109. "type": "open_collective"
  2110. }
  2111. ],
  2112. "time": "2024-10-11T08:58:16+00:00"
  2113. },
  2114. {
  2115. "name": "hyperf/di",
  2116. "version": "v3.1.53",
  2117. "source": {
  2118. "type": "git",
  2119. "url": "https://github.com/hyperf/di.git",
  2120. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b"
  2121. },
  2122. "dist": {
  2123. "type": "zip",
  2124. "url": "https://api.github.com/repos/hyperf/di/zipball/13a89409da739102c7fc308ef53bdd2694cb220b",
  2125. "reference": "13a89409da739102c7fc308ef53bdd2694cb220b",
  2126. "shasum": ""
  2127. },
  2128. "require": {
  2129. "doctrine/instantiator": "^1.0",
  2130. "hyperf/code-parser": "~3.1.0",
  2131. "hyperf/pipeline": "~3.1.0",
  2132. "hyperf/stdlib": "~3.1.0",
  2133. "hyperf/support": "~3.1.0",
  2134. "nikic/php-parser": "^4.1",
  2135. "php": ">=8.1",
  2136. "php-di/phpdoc-reader": "^2.2",
  2137. "psr/container": "^1.0 || ^2.0",
  2138. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2139. "vlucas/phpdotenv": "^5.0"
  2140. },
  2141. "suggest": {
  2142. "ext-pcntl": "Required to scan annotations.",
  2143. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2144. },
  2145. "type": "library",
  2146. "extra": {
  2147. "hyperf": {
  2148. "config": "Hyperf\\Di\\ConfigProvider"
  2149. },
  2150. "branch-alias": {
  2151. "dev-master": "3.1-dev"
  2152. }
  2153. },
  2154. "autoload": {
  2155. "psr-4": {
  2156. "Hyperf\\Di\\": "src/"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "description": "A DI for Hyperf.",
  2164. "homepage": "https://hyperf.io",
  2165. "keywords": [
  2166. "annotation",
  2167. "di",
  2168. "hyperf",
  2169. "php",
  2170. "swoole"
  2171. ],
  2172. "support": {
  2173. "docs": "https://hyperf.wiki",
  2174. "issues": "https://github.com/hyperf/hyperf/issues",
  2175. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2176. "source": "https://github.com/hyperf/hyperf"
  2177. },
  2178. "funding": [
  2179. {
  2180. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2181. "type": "custom"
  2182. },
  2183. {
  2184. "url": "https://opencollective.com/hyperf",
  2185. "type": "open_collective"
  2186. }
  2187. ],
  2188. "time": "2025-04-03T08:36:04+00:00"
  2189. },
  2190. {
  2191. "name": "hyperf/dispatcher",
  2192. "version": "v3.1.42",
  2193. "source": {
  2194. "type": "git",
  2195. "url": "https://github.com/hyperf/dispatcher.git",
  2196. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2197. },
  2198. "dist": {
  2199. "type": "zip",
  2200. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2201. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2202. "shasum": ""
  2203. },
  2204. "require": {
  2205. "hyperf/contract": "~3.1.0",
  2206. "php": ">=8.1",
  2207. "psr/container": "^1.0 || ^2.0",
  2208. "psr/http-message": "^1.0 || ^2.0",
  2209. "psr/http-server-middleware": "^1.0"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "hyperf": {
  2214. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2215. },
  2216. "branch-alias": {
  2217. "dev-master": "3.1-dev"
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-4": {
  2222. "Hyperf\\Dispatcher\\": "src/"
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "MIT"
  2228. ],
  2229. "description": "A HTTP Server for Hyperf.",
  2230. "homepage": "https://hyperf.io",
  2231. "keywords": [
  2232. "dispatcher",
  2233. "filter",
  2234. "hyperf",
  2235. "middleware",
  2236. "php",
  2237. "swoole"
  2238. ],
  2239. "support": {
  2240. "docs": "https://hyperf.wiki",
  2241. "issues": "https://github.com/hyperf/hyperf/issues",
  2242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2243. "source": "https://github.com/hyperf/hyperf"
  2244. },
  2245. "funding": [
  2246. {
  2247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2248. "type": "custom"
  2249. },
  2250. {
  2251. "url": "https://opencollective.com/hyperf",
  2252. "type": "open_collective"
  2253. }
  2254. ],
  2255. "time": "2024-09-25T02:54:12+00:00"
  2256. },
  2257. {
  2258. "name": "hyperf/engine",
  2259. "version": "v2.14.0",
  2260. "source": {
  2261. "type": "git",
  2262. "url": "https://github.com/hyperf/engine.git",
  2263. "reference": "74ec5130fa0838e285a24292a232ce455edccff8"
  2264. },
  2265. "dist": {
  2266. "type": "zip",
  2267. "url": "https://api.github.com/repos/hyperf/engine/zipball/74ec5130fa0838e285a24292a232ce455edccff8",
  2268. "reference": "74ec5130fa0838e285a24292a232ce455edccff8",
  2269. "shasum": ""
  2270. },
  2271. "require": {
  2272. "hyperf/engine-contract": "~1.13.0",
  2273. "php": ">=8.0"
  2274. },
  2275. "conflict": {
  2276. "ext-swoole": "<5.0"
  2277. },
  2278. "require-dev": {
  2279. "friendsofphp/php-cs-fixer": "^3.0",
  2280. "hyperf/guzzle": "^3.0",
  2281. "hyperf/http-message": "^3.0",
  2282. "mockery/mockery": "^1.5",
  2283. "phpstan/phpstan": "^1.0",
  2284. "phpunit/phpunit": "^9.4",
  2285. "swoole/ide-helper": "5.*"
  2286. },
  2287. "suggest": {
  2288. "ext-sockets": "*",
  2289. "ext-swoole": ">=5.0",
  2290. "hyperf/http-message": "Required to use ResponseEmitter.",
  2291. "psr/http-message": "Required to use WebSocket Frame."
  2292. },
  2293. "type": "library",
  2294. "extra": {
  2295. "hyperf": {
  2296. "config": "Hyperf\\Engine\\ConfigProvider"
  2297. },
  2298. "branch-alias": {
  2299. "dev-master": "2.14-dev"
  2300. }
  2301. },
  2302. "autoload": {
  2303. "files": [
  2304. "src/Functions.php"
  2305. ],
  2306. "psr-4": {
  2307. "Hyperf\\Engine\\": "src/"
  2308. }
  2309. },
  2310. "notification-url": "https://packagist.org/downloads/",
  2311. "license": [
  2312. "MIT"
  2313. ],
  2314. "description": "Coroutine engine provided by swoole.",
  2315. "keywords": [
  2316. "engine",
  2317. "hyperf",
  2318. "php",
  2319. "swoole"
  2320. ],
  2321. "support": {
  2322. "issues": "https://github.com/hyperf/engine/issues",
  2323. "source": "https://github.com/hyperf/engine/tree/v2.14.0"
  2324. },
  2325. "funding": [
  2326. {
  2327. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2328. "type": "custom"
  2329. },
  2330. {
  2331. "url": "https://opencollective.com/hyperf",
  2332. "type": "open_collective"
  2333. }
  2334. ],
  2335. "time": "2025-04-13T15:11:22+00:00"
  2336. },
  2337. {
  2338. "name": "hyperf/engine-contract",
  2339. "version": "v1.13.0",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://github.com/hyperf/engine-contract.git",
  2343. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2348. "reference": "26a18ec0375147546bf9702b0fd737fdd2cec1d6",
  2349. "shasum": ""
  2350. },
  2351. "require": {
  2352. "php": ">=8.0"
  2353. },
  2354. "require-dev": {
  2355. "friendsofphp/php-cs-fixer": "^3.0",
  2356. "mockery/mockery": "^1.0",
  2357. "phpstan/phpstan": "^1.0",
  2358. "phpunit/phpunit": ">=7.0",
  2359. "psr/http-message": "^1.0",
  2360. "swoole/ide-helper": "^4.5"
  2361. },
  2362. "suggest": {
  2363. "psr/http-message": "Required to use WebSocket Frame."
  2364. },
  2365. "type": "library",
  2366. "extra": {
  2367. "branch-alias": {
  2368. "dev-master": "1.11-dev"
  2369. }
  2370. },
  2371. "autoload": {
  2372. "psr-4": {
  2373. "Hyperf\\Engine\\Contract\\": "src/"
  2374. }
  2375. },
  2376. "notification-url": "https://packagist.org/downloads/",
  2377. "license": [
  2378. "MIT"
  2379. ],
  2380. "description": "Contract for Coroutine Engine",
  2381. "keywords": [
  2382. "contract",
  2383. "coroutine",
  2384. "engine",
  2385. "hyperf",
  2386. "php"
  2387. ],
  2388. "support": {
  2389. "issues": "https://github.com/hyperf/engine-contract/issues",
  2390. "source": "https://github.com/hyperf/engine-contract/tree/v1.13.0"
  2391. },
  2392. "funding": [
  2393. {
  2394. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2395. "type": "custom"
  2396. },
  2397. {
  2398. "url": "https://opencollective.com/hyperf",
  2399. "type": "open_collective"
  2400. }
  2401. ],
  2402. "time": "2025-04-13T14:48:14+00:00"
  2403. },
  2404. {
  2405. "name": "hyperf/event",
  2406. "version": "v3.1.42",
  2407. "source": {
  2408. "type": "git",
  2409. "url": "https://github.com/hyperf/event.git",
  2410. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2411. },
  2412. "dist": {
  2413. "type": "zip",
  2414. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2415. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2416. "shasum": ""
  2417. },
  2418. "require": {
  2419. "hyperf/contract": "~3.1.0",
  2420. "hyperf/stdlib": "~3.1.0",
  2421. "php": ">=8.1",
  2422. "psr/event-dispatcher": "^1.0"
  2423. },
  2424. "suggest": {
  2425. "hyperf/di": "Required to use annotatioins."
  2426. },
  2427. "type": "library",
  2428. "extra": {
  2429. "hyperf": {
  2430. "config": "Hyperf\\Event\\ConfigProvider"
  2431. },
  2432. "branch-alias": {
  2433. "dev-master": "3.1-dev"
  2434. }
  2435. },
  2436. "autoload": {
  2437. "psr-4": {
  2438. "Hyperf\\Event\\": "src/"
  2439. }
  2440. },
  2441. "notification-url": "https://packagist.org/downloads/",
  2442. "license": [
  2443. "MIT"
  2444. ],
  2445. "description": "an event manager that implements PSR-14.",
  2446. "homepage": "https://hyperf.io",
  2447. "keywords": [
  2448. "event",
  2449. "hyperf",
  2450. "php",
  2451. "swoole"
  2452. ],
  2453. "support": {
  2454. "docs": "https://hyperf.wiki",
  2455. "issues": "https://github.com/hyperf/hyperf/issues",
  2456. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2457. "source": "https://github.com/hyperf/hyperf"
  2458. },
  2459. "funding": [
  2460. {
  2461. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2462. "type": "custom"
  2463. },
  2464. {
  2465. "url": "https://opencollective.com/hyperf",
  2466. "type": "open_collective"
  2467. }
  2468. ],
  2469. "time": "2024-09-25T02:54:12+00:00"
  2470. },
  2471. {
  2472. "name": "hyperf/exception-handler",
  2473. "version": "v3.1.42",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/hyperf/exception-handler.git",
  2477. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2482. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "hyperf/context": "~3.1.0",
  2487. "hyperf/contract": "~3.1.0",
  2488. "hyperf/dispatcher": "~3.1.0",
  2489. "hyperf/http-message": "~3.1.0",
  2490. "hyperf/stdlib": "~3.1.0",
  2491. "hyperf/support": "~3.1.0",
  2492. "php": ">=8.1",
  2493. "psr/container": "^1.0 || ^2.0",
  2494. "psr/http-message": "^1.0 || ^2.0",
  2495. "swow/psr7-plus": "^1.0"
  2496. },
  2497. "suggest": {
  2498. "hyperf/di": "Required to use #[ExceptionHandler]",
  2499. "hyperf/event": "Required to use listeners",
  2500. "hyperf/framework": "Required to use listeners",
  2501. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2502. },
  2503. "type": "library",
  2504. "extra": {
  2505. "hyperf": {
  2506. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2507. },
  2508. "branch-alias": {
  2509. "dev-master": "3.1-dev"
  2510. }
  2511. },
  2512. "autoload": {
  2513. "psr-4": {
  2514. "Hyperf\\ExceptionHandler\\": "src/"
  2515. }
  2516. },
  2517. "notification-url": "https://packagist.org/downloads/",
  2518. "license": [
  2519. "MIT"
  2520. ],
  2521. "description": "Exception handler for hyperf",
  2522. "homepage": "https://hyperf.io",
  2523. "keywords": [
  2524. "exception-handler",
  2525. "php",
  2526. "swoole"
  2527. ],
  2528. "support": {
  2529. "docs": "https://hyperf.wiki",
  2530. "issues": "https://github.com/hyperf/hyperf/issues",
  2531. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2532. "source": "https://github.com/hyperf/hyperf"
  2533. },
  2534. "funding": [
  2535. {
  2536. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2537. "type": "custom"
  2538. },
  2539. {
  2540. "url": "https://opencollective.com/hyperf",
  2541. "type": "open_collective"
  2542. }
  2543. ],
  2544. "time": "2024-09-25T02:54:12+00:00"
  2545. },
  2546. {
  2547. "name": "hyperf/framework",
  2548. "version": "v3.1.42",
  2549. "source": {
  2550. "type": "git",
  2551. "url": "https://github.com/hyperf/framework.git",
  2552. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2553. },
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2557. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "fig/http-message-util": "^1.1.2",
  2562. "hyperf/contract": "~3.1.0",
  2563. "hyperf/coordinator": "~3.1.0",
  2564. "hyperf/coroutine": "~3.1.0",
  2565. "php": ">=8.1",
  2566. "psr/container": "^1.0 || ^2.0",
  2567. "psr/event-dispatcher": "^1.0",
  2568. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2569. },
  2570. "suggest": {
  2571. "ext-swoole": "Required to use swoole engine.",
  2572. "hyperf/command": "Required to use Command annotation.",
  2573. "hyperf/di": "Required to use Command annotation.",
  2574. "hyperf/dispatcher": "Required to use BootApplication event.",
  2575. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2576. },
  2577. "type": "library",
  2578. "extra": {
  2579. "hyperf": {
  2580. "config": "Hyperf\\Framework\\ConfigProvider"
  2581. },
  2582. "branch-alias": {
  2583. "dev-master": "3.1-dev"
  2584. }
  2585. },
  2586. "autoload": {
  2587. "psr-4": {
  2588. "Hyperf\\Framework\\": "src/"
  2589. }
  2590. },
  2591. "notification-url": "https://packagist.org/downloads/",
  2592. "license": [
  2593. "MIT"
  2594. ],
  2595. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2596. "homepage": "https://hyperf.io",
  2597. "keywords": [
  2598. "Microservice",
  2599. "framework",
  2600. "hyperf",
  2601. "middleware",
  2602. "php",
  2603. "swoole"
  2604. ],
  2605. "support": {
  2606. "docs": "https://hyperf.wiki",
  2607. "issues": "https://github.com/hyperf/hyperf/issues",
  2608. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2609. "source": "https://github.com/hyperf/hyperf"
  2610. },
  2611. "funding": [
  2612. {
  2613. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2614. "type": "custom"
  2615. },
  2616. {
  2617. "url": "https://opencollective.com/hyperf",
  2618. "type": "open_collective"
  2619. }
  2620. ],
  2621. "time": "2024-09-25T02:54:12+00:00"
  2622. },
  2623. {
  2624. "name": "hyperf/guzzle",
  2625. "version": "v3.1.42",
  2626. "source": {
  2627. "type": "git",
  2628. "url": "https://github.com/hyperf/guzzle.git",
  2629. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2630. },
  2631. "dist": {
  2632. "type": "zip",
  2633. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2634. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2635. "shasum": ""
  2636. },
  2637. "require": {
  2638. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2639. "php": ">=8.1",
  2640. "psr/container": "^1.0 || ^2.0",
  2641. "psr/http-message": "^1.0 || ^2.0"
  2642. },
  2643. "suggest": {
  2644. "ext-curl": "Required for CURL handler support",
  2645. "hyperf/pool": "Required to use pool handler."
  2646. },
  2647. "type": "library",
  2648. "extra": {
  2649. "hyperf": {
  2650. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2651. },
  2652. "branch-alias": {
  2653. "dev-master": "3.1-dev"
  2654. }
  2655. },
  2656. "autoload": {
  2657. "psr-4": {
  2658. "Hyperf\\Guzzle\\": "src/"
  2659. }
  2660. },
  2661. "notification-url": "https://packagist.org/downloads/",
  2662. "license": [
  2663. "MIT"
  2664. ],
  2665. "description": "Swoole coroutine handler for guzzle",
  2666. "keywords": [
  2667. "Guzzle",
  2668. "handler",
  2669. "php",
  2670. "swoole"
  2671. ],
  2672. "support": {
  2673. "issues": "https://github.com/hyperf/guzzle/issues",
  2674. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2675. },
  2676. "funding": [
  2677. {
  2678. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2679. "type": "custom"
  2680. },
  2681. {
  2682. "url": "https://opencollective.com/hyperf",
  2683. "type": "open_collective"
  2684. }
  2685. ],
  2686. "time": "2024-09-25T02:54:12+00:00"
  2687. },
  2688. {
  2689. "name": "hyperf/http-message",
  2690. "version": "v3.1.48",
  2691. "source": {
  2692. "type": "git",
  2693. "url": "https://github.com/hyperf/http-message.git",
  2694. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85"
  2695. },
  2696. "dist": {
  2697. "type": "zip",
  2698. "url": "https://api.github.com/repos/hyperf/http-message/zipball/534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2699. "reference": "534ce81af0feaa0c4a9e132af1c6a9c5527a8d85",
  2700. "shasum": ""
  2701. },
  2702. "require": {
  2703. "hyperf/codec": "~3.1.0",
  2704. "hyperf/engine": "^2.11",
  2705. "hyperf/support": "~3.1.0",
  2706. "laminas/laminas-mime": "^2.7",
  2707. "php": ">=8.1",
  2708. "psr/http-message": "^1.0 || ^2.0",
  2709. "swow/psr7-plus": "^1.0"
  2710. },
  2711. "suggest": {
  2712. "psr/container": "Required to replace RequestParserInterface."
  2713. },
  2714. "type": "library",
  2715. "extra": {
  2716. "hyperf": {
  2717. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2718. },
  2719. "branch-alias": {
  2720. "dev-master": "3.1-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Hyperf\\HttpMessage\\": "src/"
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "description": "microservice framework base on swoole",
  2733. "keywords": [
  2734. "http-message",
  2735. "hyperf",
  2736. "php",
  2737. "swoole"
  2738. ],
  2739. "support": {
  2740. "issues": "https://github.com/hyperf/http-message/issues",
  2741. "source": "https://github.com/hyperf/http-message/tree/v3.1.48"
  2742. },
  2743. "funding": [
  2744. {
  2745. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2746. "type": "custom"
  2747. },
  2748. {
  2749. "url": "https://opencollective.com/hyperf",
  2750. "type": "open_collective"
  2751. }
  2752. ],
  2753. "time": "2024-12-05T02:41:08+00:00"
  2754. },
  2755. {
  2756. "name": "hyperf/http-server",
  2757. "version": "v3.1.55",
  2758. "source": {
  2759. "type": "git",
  2760. "url": "https://github.com/hyperf/http-server.git",
  2761. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce"
  2762. },
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://api.github.com/repos/hyperf/http-server/zipball/96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2766. "reference": "96a1d80cd9482942899d7068af0e6ecb78d382ce",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "hyperf/codec": "~3.1.0",
  2771. "hyperf/collection": "~3.1.0",
  2772. "hyperf/context": "~3.1.0",
  2773. "hyperf/contract": "~3.1.0",
  2774. "hyperf/coroutine": "~3.1.0",
  2775. "hyperf/dispatcher": "~3.1.0",
  2776. "hyperf/event": "~3.1.0",
  2777. "hyperf/exception-handler": "~3.1.0",
  2778. "hyperf/http-message": "~3.1.0",
  2779. "hyperf/macroable": "~3.1.0",
  2780. "hyperf/serializer": "~3.1.0",
  2781. "hyperf/server": "~3.1.0",
  2782. "hyperf/stdlib": "~3.1.0",
  2783. "hyperf/support": "~3.1.0",
  2784. "nikic/fast-route": "^1.3",
  2785. "php": ">=8.1",
  2786. "psr/container": "^1.0 || ^2.0",
  2787. "swow/psr7-plus": "^1.0"
  2788. },
  2789. "suggest": {
  2790. "hyperf/di": "Required to use annotations."
  2791. },
  2792. "type": "library",
  2793. "extra": {
  2794. "hyperf": {
  2795. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2796. },
  2797. "branch-alias": {
  2798. "dev-master": "3.1-dev"
  2799. }
  2800. },
  2801. "autoload": {
  2802. "psr-4": {
  2803. "Hyperf\\HttpServer\\": "src/"
  2804. }
  2805. },
  2806. "notification-url": "https://packagist.org/downloads/",
  2807. "license": [
  2808. "MIT"
  2809. ],
  2810. "description": "A HTTP Server for Hyperf.",
  2811. "homepage": "https://hyperf.io",
  2812. "keywords": [
  2813. "http",
  2814. "http-server",
  2815. "hyperf",
  2816. "php",
  2817. "swoole"
  2818. ],
  2819. "support": {
  2820. "docs": "https://hyperf.wiki",
  2821. "issues": "https://github.com/hyperf/hyperf/issues",
  2822. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2823. "source": "https://github.com/hyperf/hyperf"
  2824. },
  2825. "funding": [
  2826. {
  2827. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2828. "type": "custom"
  2829. },
  2830. {
  2831. "url": "https://opencollective.com/hyperf",
  2832. "type": "open_collective"
  2833. }
  2834. ],
  2835. "time": "2025-05-14T07:44:25+00:00"
  2836. },
  2837. {
  2838. "name": "hyperf/json-rpc",
  2839. "version": "v3.1.47",
  2840. "source": {
  2841. "type": "git",
  2842. "url": "https://github.com/hyperf/json-rpc.git",
  2843. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b"
  2844. },
  2845. "dist": {
  2846. "type": "zip",
  2847. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2848. "reference": "daa987e9e58fcbbf676ae266de2d428301a74d1b",
  2849. "shasum": ""
  2850. },
  2851. "require": {
  2852. "hyperf/codec": "~3.1.0",
  2853. "hyperf/context": "~3.1.0",
  2854. "hyperf/contract": "~3.1.0",
  2855. "hyperf/engine": "^2.0",
  2856. "hyperf/http-message": "~3.1.0",
  2857. "hyperf/load-balancer": "~3.1.0",
  2858. "hyperf/rpc": "~3.1.0",
  2859. "hyperf/serializer": "~3.1.0",
  2860. "hyperf/support": "~3.1.0",
  2861. "hyperf/utils": "~3.1.0",
  2862. "php": ">=8.1",
  2863. "psr/container": "^1.0 || ^2.0",
  2864. "swow/psr7-plus": "^1.0"
  2865. },
  2866. "suggest": {
  2867. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2868. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2869. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2870. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2871. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2872. },
  2873. "type": "library",
  2874. "extra": {
  2875. "hyperf": {
  2876. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2877. },
  2878. "branch-alias": {
  2879. "dev-master": "3.1-dev"
  2880. }
  2881. },
  2882. "autoload": {
  2883. "psr-4": {
  2884. "Hyperf\\JsonRpc\\": "src/"
  2885. }
  2886. },
  2887. "notification-url": "https://packagist.org/downloads/",
  2888. "license": [
  2889. "MIT"
  2890. ],
  2891. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2892. "homepage": "https://hyperf.io",
  2893. "keywords": [
  2894. "hyperf",
  2895. "json-rpc",
  2896. "php",
  2897. "swoole"
  2898. ],
  2899. "support": {
  2900. "docs": "https://hyperf.wiki",
  2901. "issues": "https://github.com/hyperf/hyperf/issues",
  2902. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2903. "source": "https://github.com/hyperf/hyperf"
  2904. },
  2905. "funding": [
  2906. {
  2907. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2908. "type": "custom"
  2909. },
  2910. {
  2911. "url": "https://opencollective.com/hyperf",
  2912. "type": "open_collective"
  2913. }
  2914. ],
  2915. "time": "2024-11-28T01:51:55+00:00"
  2916. },
  2917. {
  2918. "name": "hyperf/load-balancer",
  2919. "version": "v3.1.42",
  2920. "source": {
  2921. "type": "git",
  2922. "url": "https://github.com/hyperf/load-balancer.git",
  2923. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2924. },
  2925. "dist": {
  2926. "type": "zip",
  2927. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2928. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2929. "shasum": ""
  2930. },
  2931. "require": {
  2932. "hyperf/coordinator": "~3.1.0",
  2933. "hyperf/coroutine": "~3.1.0",
  2934. "markrogoyski/math-php": "^2.0",
  2935. "php": ">=8.1",
  2936. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2937. },
  2938. "type": "library",
  2939. "extra": {
  2940. "hyperf": {
  2941. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2942. },
  2943. "branch-alias": {
  2944. "dev-master": "3.1-dev"
  2945. }
  2946. },
  2947. "autoload": {
  2948. "psr-4": {
  2949. "Hyperf\\LoadBalancer\\": "src/"
  2950. }
  2951. },
  2952. "notification-url": "https://packagist.org/downloads/",
  2953. "license": [
  2954. "MIT"
  2955. ],
  2956. "description": "A load balancer library for Hyperf.",
  2957. "homepage": "https://hyperf.io",
  2958. "keywords": [
  2959. "hyperf",
  2960. "load-balancer",
  2961. "php",
  2962. "swoole"
  2963. ],
  2964. "support": {
  2965. "docs": "https://hyperf.wiki",
  2966. "issues": "https://github.com/hyperf/hyperf/issues",
  2967. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2968. "source": "https://github.com/hyperf/hyperf"
  2969. },
  2970. "funding": [
  2971. {
  2972. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2973. "type": "custom"
  2974. },
  2975. {
  2976. "url": "https://opencollective.com/hyperf",
  2977. "type": "open_collective"
  2978. }
  2979. ],
  2980. "time": "2024-09-25T02:54:12+00:00"
  2981. },
  2982. {
  2983. "name": "hyperf/logger",
  2984. "version": "v3.1.55",
  2985. "source": {
  2986. "type": "git",
  2987. "url": "https://github.com/hyperf/logger.git",
  2988. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6"
  2989. },
  2990. "dist": {
  2991. "type": "zip",
  2992. "url": "https://api.github.com/repos/hyperf/logger/zipball/8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  2993. "reference": "8a80e2fab1521a08e2b8061a5dd65f5105f88ed6",
  2994. "shasum": ""
  2995. },
  2996. "require": {
  2997. "hyperf/contract": "~3.1.0",
  2998. "hyperf/support": "~3.1.0",
  2999. "hyperf/utils": "~3.1.0",
  3000. "monolog/monolog": "^2.7 || ^3.1",
  3001. "php": ">=8.1",
  3002. "psr/container": "^1.0 || ^2.0",
  3003. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3004. },
  3005. "type": "library",
  3006. "extra": {
  3007. "hyperf": {
  3008. "config": "Hyperf\\Logger\\ConfigProvider"
  3009. },
  3010. "branch-alias": {
  3011. "dev-master": "3.1-dev"
  3012. }
  3013. },
  3014. "autoload": {
  3015. "psr-4": {
  3016. "Hyperf\\Logger\\": "src/"
  3017. }
  3018. },
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "MIT"
  3022. ],
  3023. "description": "A logger component for hyperf.",
  3024. "homepage": "https://hyperf.io",
  3025. "keywords": [
  3026. "hyperf",
  3027. "logger",
  3028. "php"
  3029. ],
  3030. "support": {
  3031. "docs": "https://hyperf.wiki",
  3032. "issues": "https://github.com/hyperf/hyperf/issues",
  3033. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3034. "source": "https://github.com/hyperf/hyperf"
  3035. },
  3036. "funding": [
  3037. {
  3038. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3039. "type": "custom"
  3040. },
  3041. {
  3042. "url": "https://opencollective.com/hyperf",
  3043. "type": "open_collective"
  3044. }
  3045. ],
  3046. "time": "2025-05-14T08:25:19+00:00"
  3047. },
  3048. {
  3049. "name": "hyperf/macroable",
  3050. "version": "v3.1.42",
  3051. "source": {
  3052. "type": "git",
  3053. "url": "https://github.com/hyperf/macroable.git",
  3054. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3055. },
  3056. "dist": {
  3057. "type": "zip",
  3058. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3059. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3060. "shasum": ""
  3061. },
  3062. "require": {
  3063. "php": ">=8.1"
  3064. },
  3065. "type": "library",
  3066. "extra": {
  3067. "branch-alias": {
  3068. "dev-master": "3.1-dev"
  3069. }
  3070. },
  3071. "autoload": {
  3072. "psr-4": {
  3073. "Hyperf\\Macroable\\": "src/"
  3074. }
  3075. },
  3076. "notification-url": "https://packagist.org/downloads/",
  3077. "license": [
  3078. "MIT"
  3079. ],
  3080. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3081. "homepage": "https://hyperf.io",
  3082. "keywords": [
  3083. "hyperf",
  3084. "macroable",
  3085. "php",
  3086. "swoole"
  3087. ],
  3088. "support": {
  3089. "docs": "https://hyperf.wiki",
  3090. "issues": "https://github.com/hyperf/hyperf/issues",
  3091. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3092. "source": "https://github.com/hyperf/hyperf"
  3093. },
  3094. "funding": [
  3095. {
  3096. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3097. "type": "custom"
  3098. },
  3099. {
  3100. "url": "https://opencollective.com/hyperf",
  3101. "type": "open_collective"
  3102. }
  3103. ],
  3104. "time": "2024-09-25T02:54:12+00:00"
  3105. },
  3106. {
  3107. "name": "hyperf/memory",
  3108. "version": "v3.1.53",
  3109. "source": {
  3110. "type": "git",
  3111. "url": "https://github.com/hyperf/memory.git",
  3112. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b"
  3113. },
  3114. "dist": {
  3115. "type": "zip",
  3116. "url": "https://api.github.com/repos/hyperf/memory/zipball/74a3093ee766e18f912269f6846a63ae21a4360b",
  3117. "reference": "74a3093ee766e18f912269f6846a63ae21a4360b",
  3118. "shasum": ""
  3119. },
  3120. "require": {
  3121. "php": ">=8.1"
  3122. },
  3123. "type": "library",
  3124. "extra": {
  3125. "hyperf": {
  3126. "config": "Hyperf\\Memory\\ConfigProvider"
  3127. },
  3128. "branch-alias": {
  3129. "dev-master": "3.1-dev"
  3130. }
  3131. },
  3132. "autoload": {
  3133. "psr-4": {
  3134. "Hyperf\\Memory\\": "src/"
  3135. }
  3136. },
  3137. "notification-url": "https://packagist.org/downloads/",
  3138. "license": [
  3139. "MIT"
  3140. ],
  3141. "description": "An independent component that use to operate and manage memory.",
  3142. "homepage": "https://hyperf.io",
  3143. "keywords": [
  3144. "hyperf",
  3145. "memory",
  3146. "php",
  3147. "swoole"
  3148. ],
  3149. "support": {
  3150. "docs": "https://hyperf.wiki",
  3151. "issues": "https://github.com/hyperf/hyperf/issues",
  3152. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3153. "source": "https://github.com/hyperf/hyperf"
  3154. },
  3155. "funding": [
  3156. {
  3157. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3158. "type": "custom"
  3159. },
  3160. {
  3161. "url": "https://opencollective.com/hyperf",
  3162. "type": "open_collective"
  3163. }
  3164. ],
  3165. "time": "2025-04-03T09:12:55+00:00"
  3166. },
  3167. {
  3168. "name": "hyperf/model-listener",
  3169. "version": "v3.1.42",
  3170. "source": {
  3171. "type": "git",
  3172. "url": "https://github.com/hyperf/model-listener.git",
  3173. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3174. },
  3175. "dist": {
  3176. "type": "zip",
  3177. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3178. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3179. "shasum": ""
  3180. },
  3181. "require": {
  3182. "hyperf/contract": "~3.1.0",
  3183. "hyperf/database": "~3.1.0",
  3184. "hyperf/di": "~3.1.0",
  3185. "hyperf/event": "~3.1.0",
  3186. "hyperf/support": "~3.1.0",
  3187. "hyperf/utils": "~3.1.0",
  3188. "php": ">=8.1",
  3189. "psr/container": "^1.0 || ^2.0"
  3190. },
  3191. "type": "library",
  3192. "extra": {
  3193. "hyperf": {
  3194. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3195. },
  3196. "branch-alias": {
  3197. "dev-master": "3.1-dev"
  3198. }
  3199. },
  3200. "autoload": {
  3201. "psr-4": {
  3202. "Hyperf\\ModelListener\\": "src/"
  3203. }
  3204. },
  3205. "notification-url": "https://packagist.org/downloads/",
  3206. "license": [
  3207. "MIT"
  3208. ],
  3209. "description": "A model listener for Hyperf.",
  3210. "homepage": "https://hyperf.io",
  3211. "keywords": [
  3212. "hyperf",
  3213. "model-listener",
  3214. "php",
  3215. "swoole"
  3216. ],
  3217. "support": {
  3218. "docs": "https://hyperf.wiki",
  3219. "issues": "https://github.com/hyperf/hyperf/issues",
  3220. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3221. "source": "https://github.com/hyperf/hyperf"
  3222. },
  3223. "funding": [
  3224. {
  3225. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3226. "type": "custom"
  3227. },
  3228. {
  3229. "url": "https://opencollective.com/hyperf",
  3230. "type": "open_collective"
  3231. }
  3232. ],
  3233. "time": "2024-09-25T02:54:12+00:00"
  3234. },
  3235. {
  3236. "name": "hyperf/nacos",
  3237. "version": "v3.1.52",
  3238. "source": {
  3239. "type": "git",
  3240. "url": "https://github.com/hyperf/nacos.git",
  3241. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01"
  3242. },
  3243. "dist": {
  3244. "type": "zip",
  3245. "url": "https://api.github.com/repos/hyperf/nacos/zipball/6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3246. "reference": "6d4bd0551ce4d4581ebe126c3e47962ce72baa01",
  3247. "shasum": ""
  3248. },
  3249. "require": {
  3250. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3251. "hyperf/codec": "~3.1.0",
  3252. "hyperf/contract": "~3.1.0",
  3253. "hyperf/support": "~3.1.0",
  3254. "hyperf/utils": "~3.1.0",
  3255. "jetbrains/phpstorm-attributes": "^1.0",
  3256. "php": ">=8.1"
  3257. },
  3258. "type": "library",
  3259. "extra": {
  3260. "hyperf": {
  3261. "config": "Hyperf\\Nacos\\ConfigProvider"
  3262. },
  3263. "branch-alias": {
  3264. "dev-master": "3.1-dev"
  3265. }
  3266. },
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Hyperf\\Nacos\\": "src/"
  3270. }
  3271. },
  3272. "notification-url": "https://packagist.org/downloads/",
  3273. "license": [
  3274. "MIT"
  3275. ],
  3276. "description": "Nacos SDK",
  3277. "keywords": [
  3278. "hyperf",
  3279. "nacos",
  3280. "php"
  3281. ],
  3282. "support": {
  3283. "issues": "https://github.com/hyperf/nacos/issues",
  3284. "source": "https://github.com/hyperf/nacos/tree/v3.1.52"
  3285. },
  3286. "funding": [
  3287. {
  3288. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3289. "type": "custom"
  3290. },
  3291. {
  3292. "url": "https://opencollective.com/hyperf",
  3293. "type": "open_collective"
  3294. }
  3295. ],
  3296. "time": "2025-02-27T06:49:30+00:00"
  3297. },
  3298. {
  3299. "name": "hyperf/paginator",
  3300. "version": "v3.1.49",
  3301. "source": {
  3302. "type": "git",
  3303. "url": "https://github.com/hyperf/paginator.git",
  3304. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b"
  3305. },
  3306. "dist": {
  3307. "type": "zip",
  3308. "url": "https://api.github.com/repos/hyperf/paginator/zipball/dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3309. "reference": "dd9d59f5601fbdaa69f488348c7debd1931feb7b",
  3310. "shasum": ""
  3311. },
  3312. "require": {
  3313. "hyperf/contract": "~3.1.0",
  3314. "hyperf/support": "~3.1.0",
  3315. "hyperf/utils": "~3.1.0",
  3316. "php": ">=8.1"
  3317. },
  3318. "suggest": {
  3319. "hyperf/event": "Reqiured to use PageResolverListener.",
  3320. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3321. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3322. },
  3323. "type": "library",
  3324. "extra": {
  3325. "hyperf": {
  3326. "config": "Hyperf\\Paginator\\ConfigProvider"
  3327. },
  3328. "branch-alias": {
  3329. "dev-master": "3.1-dev"
  3330. }
  3331. },
  3332. "autoload": {
  3333. "psr-4": {
  3334. "Hyperf\\Paginator\\": "src/"
  3335. }
  3336. },
  3337. "notification-url": "https://packagist.org/downloads/",
  3338. "license": [
  3339. "MIT"
  3340. ],
  3341. "description": "A paginator component for hyperf.",
  3342. "homepage": "https://hyperf.io",
  3343. "keywords": [
  3344. "hyperf",
  3345. "paginator",
  3346. "php"
  3347. ],
  3348. "support": {
  3349. "docs": "https://hyperf.wiki",
  3350. "issues": "https://github.com/hyperf/hyperf/issues",
  3351. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3352. "source": "https://github.com/hyperf/hyperf"
  3353. },
  3354. "funding": [
  3355. {
  3356. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3357. "type": "custom"
  3358. },
  3359. {
  3360. "url": "https://opencollective.com/hyperf",
  3361. "type": "open_collective"
  3362. }
  3363. ],
  3364. "time": "2024-12-17T09:42:13+00:00"
  3365. },
  3366. {
  3367. "name": "hyperf/pipeline",
  3368. "version": "v3.1.42",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/hyperf/pipeline.git",
  3372. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3377. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "php": ">=8.1",
  3382. "psr/container": "^1.0 || ^2.0"
  3383. },
  3384. "type": "library",
  3385. "extra": {
  3386. "branch-alias": {
  3387. "dev-master": "3.1-dev"
  3388. }
  3389. },
  3390. "autoload": {
  3391. "psr-4": {
  3392. "Hyperf\\Pipeline\\": "src/"
  3393. }
  3394. },
  3395. "notification-url": "https://packagist.org/downloads/",
  3396. "license": [
  3397. "MIT"
  3398. ],
  3399. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3400. "homepage": "https://hyperf.io",
  3401. "keywords": [
  3402. "hyperf",
  3403. "php",
  3404. "pipeline",
  3405. "swoole"
  3406. ],
  3407. "support": {
  3408. "docs": "https://hyperf.wiki",
  3409. "issues": "https://github.com/hyperf/hyperf/issues",
  3410. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3411. "source": "https://github.com/hyperf/hyperf"
  3412. },
  3413. "funding": [
  3414. {
  3415. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3416. "type": "custom"
  3417. },
  3418. {
  3419. "url": "https://opencollective.com/hyperf",
  3420. "type": "open_collective"
  3421. }
  3422. ],
  3423. "time": "2024-09-25T02:54:12+00:00"
  3424. },
  3425. {
  3426. "name": "hyperf/pool",
  3427. "version": "v3.1.42",
  3428. "source": {
  3429. "type": "git",
  3430. "url": "https://github.com/hyperf/pool.git",
  3431. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3432. },
  3433. "dist": {
  3434. "type": "zip",
  3435. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3436. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3437. "shasum": ""
  3438. },
  3439. "require": {
  3440. "hyperf/contract": "~3.1.0",
  3441. "hyperf/support": "~3.1.0",
  3442. "hyperf/utils": "~3.1.0",
  3443. "php": ">=8.1",
  3444. "psr/container": "^1.0 || ^2.0"
  3445. },
  3446. "suggest": {
  3447. "psr/event-dispatcher": "Required to use events."
  3448. },
  3449. "type": "library",
  3450. "extra": {
  3451. "hyperf": {
  3452. "config": "Hyperf\\Pool\\ConfigProvider"
  3453. },
  3454. "branch-alias": {
  3455. "dev-master": "3.1-dev"
  3456. }
  3457. },
  3458. "autoload": {
  3459. "psr-4": {
  3460. "Hyperf\\Pool\\": "src/"
  3461. }
  3462. },
  3463. "notification-url": "https://packagist.org/downloads/",
  3464. "license": [
  3465. "MIT"
  3466. ],
  3467. "description": "An independent universal connection pool component.",
  3468. "homepage": "https://hyperf.io",
  3469. "keywords": [
  3470. "connection-pool",
  3471. "hyperf",
  3472. "php",
  3473. "swoole"
  3474. ],
  3475. "support": {
  3476. "docs": "https://hyperf.wiki",
  3477. "issues": "https://github.com/hyperf/hyperf/issues",
  3478. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3479. "source": "https://github.com/hyperf/hyperf"
  3480. },
  3481. "funding": [
  3482. {
  3483. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3484. "type": "custom"
  3485. },
  3486. {
  3487. "url": "https://opencollective.com/hyperf",
  3488. "type": "open_collective"
  3489. }
  3490. ],
  3491. "time": "2024-09-25T02:54:12+00:00"
  3492. },
  3493. {
  3494. "name": "hyperf/process",
  3495. "version": "v3.1.48",
  3496. "source": {
  3497. "type": "git",
  3498. "url": "https://github.com/hyperf/process.git",
  3499. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c"
  3500. },
  3501. "dist": {
  3502. "type": "zip",
  3503. "url": "https://api.github.com/repos/hyperf/process/zipball/8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3504. "reference": "8d68398bdb4f2623af1bec846399b6ce29bd7d2c",
  3505. "shasum": ""
  3506. },
  3507. "require": {
  3508. "hyperf/contract": "~3.1.0",
  3509. "hyperf/support": "~3.1.0",
  3510. "hyperf/utils": "~3.1.0",
  3511. "php": ">=8.1",
  3512. "psr/container": "^1.0 || ^2.0",
  3513. "psr/event-dispatcher": "^1.0"
  3514. },
  3515. "suggest": {
  3516. "hyperf/di": "Required to use annotations.",
  3517. "hyperf/event": "Required to dump the message before and after process.",
  3518. "hyperf/framework": "Required to use BootProcessListener."
  3519. },
  3520. "type": "library",
  3521. "extra": {
  3522. "hyperf": {
  3523. "config": "Hyperf\\Process\\ConfigProvider"
  3524. },
  3525. "branch-alias": {
  3526. "dev-master": "3.1-dev"
  3527. }
  3528. },
  3529. "autoload": {
  3530. "psr-4": {
  3531. "Hyperf\\Process\\": "src/"
  3532. }
  3533. },
  3534. "notification-url": "https://packagist.org/downloads/",
  3535. "license": [
  3536. "MIT"
  3537. ],
  3538. "description": "A process component for hyperf.",
  3539. "homepage": "https://hyperf.io",
  3540. "keywords": [
  3541. "hyperf",
  3542. "php",
  3543. "process"
  3544. ],
  3545. "support": {
  3546. "docs": "https://hyperf.wiki",
  3547. "issues": "https://github.com/hyperf/hyperf/issues",
  3548. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3549. "source": "https://github.com/hyperf/hyperf"
  3550. },
  3551. "funding": [
  3552. {
  3553. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3554. "type": "custom"
  3555. },
  3556. {
  3557. "url": "https://opencollective.com/hyperf",
  3558. "type": "open_collective"
  3559. }
  3560. ],
  3561. "time": "2024-12-02T10:54:30+00:00"
  3562. },
  3563. {
  3564. "name": "hyperf/redis",
  3565. "version": "v3.1.53",
  3566. "source": {
  3567. "type": "git",
  3568. "url": "https://github.com/hyperf/redis.git",
  3569. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64"
  3570. },
  3571. "dist": {
  3572. "type": "zip",
  3573. "url": "https://api.github.com/repos/hyperf/redis/zipball/d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3574. "reference": "d481e97926d8e12b41bfeb1ebf5d88e66482da64",
  3575. "shasum": ""
  3576. },
  3577. "require": {
  3578. "ext-redis": "^5.0 || ^6.0",
  3579. "hyperf/contract": "~3.1.0",
  3580. "hyperf/pool": "~3.1.0",
  3581. "hyperf/support": "~3.1.0",
  3582. "hyperf/tappable": "~3.1.0",
  3583. "hyperf/utils": "~3.1.0",
  3584. "php": ">=8.1",
  3585. "psr/container": "^1.0 || ^2.0"
  3586. },
  3587. "suggest": {
  3588. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3589. "hyperf/di": "Create the RedisPool via dependency injection."
  3590. },
  3591. "type": "library",
  3592. "extra": {
  3593. "hyperf": {
  3594. "config": "Hyperf\\Redis\\ConfigProvider"
  3595. },
  3596. "branch-alias": {
  3597. "dev-master": "3.1-dev"
  3598. }
  3599. },
  3600. "autoload": {
  3601. "psr-4": {
  3602. "Hyperf\\Redis\\": "src/"
  3603. }
  3604. },
  3605. "notification-url": "https://packagist.org/downloads/",
  3606. "license": [
  3607. "MIT"
  3608. ],
  3609. "description": "A redis component for hyperf.",
  3610. "homepage": "https://hyperf.io",
  3611. "keywords": [
  3612. "hyperf",
  3613. "php",
  3614. "pool",
  3615. "redis"
  3616. ],
  3617. "support": {
  3618. "docs": "https://hyperf.wiki",
  3619. "issues": "https://github.com/hyperf/hyperf/issues",
  3620. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3621. "source": "https://github.com/hyperf/hyperf"
  3622. },
  3623. "funding": [
  3624. {
  3625. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3626. "type": "custom"
  3627. },
  3628. {
  3629. "url": "https://opencollective.com/hyperf",
  3630. "type": "open_collective"
  3631. }
  3632. ],
  3633. "time": "2025-04-03T07:31:20+00:00"
  3634. },
  3635. {
  3636. "name": "hyperf/rpc",
  3637. "version": "v3.1.42",
  3638. "source": {
  3639. "type": "git",
  3640. "url": "https://github.com/hyperf/rpc.git",
  3641. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3642. },
  3643. "dist": {
  3644. "type": "zip",
  3645. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3646. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3647. "shasum": ""
  3648. },
  3649. "require": {
  3650. "hyperf/codec": "~3.1.0",
  3651. "hyperf/contract": "~3.1.0",
  3652. "hyperf/support": "~3.1.0",
  3653. "jetbrains/phpstorm-attributes": "^1.0",
  3654. "php": ">=8.1"
  3655. },
  3656. "type": "library",
  3657. "extra": {
  3658. "hyperf": [],
  3659. "branch-alias": {
  3660. "dev-master": "3.1-dev"
  3661. }
  3662. },
  3663. "autoload": {
  3664. "psr-4": {
  3665. "Hyperf\\Rpc\\": "src/"
  3666. }
  3667. },
  3668. "notification-url": "https://packagist.org/downloads/",
  3669. "license": [
  3670. "MIT"
  3671. ],
  3672. "description": "A rpc basic library for Hyperf.",
  3673. "homepage": "https://hyperf.io",
  3674. "keywords": [
  3675. "hyperf",
  3676. "php",
  3677. "rpc",
  3678. "swoole"
  3679. ],
  3680. "support": {
  3681. "docs": "https://hyperf.wiki",
  3682. "issues": "https://github.com/hyperf/hyperf/issues",
  3683. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3684. "source": "https://github.com/hyperf/hyperf"
  3685. },
  3686. "funding": [
  3687. {
  3688. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3689. "type": "custom"
  3690. },
  3691. {
  3692. "url": "https://opencollective.com/hyperf",
  3693. "type": "open_collective"
  3694. }
  3695. ],
  3696. "time": "2024-09-25T02:54:12+00:00"
  3697. },
  3698. {
  3699. "name": "hyperf/rpc-server",
  3700. "version": "v3.1.42",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/hyperf/rpc-server.git",
  3704. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3709. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3710. "shasum": ""
  3711. },
  3712. "require": {
  3713. "hyperf/http-server": "~3.1.0",
  3714. "hyperf/rpc": "~3.1.0",
  3715. "php": ">=8.1"
  3716. },
  3717. "suggest": {
  3718. "hyperf/di": "Required to use annotations."
  3719. },
  3720. "type": "library",
  3721. "extra": {
  3722. "hyperf": {
  3723. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3724. },
  3725. "branch-alias": {
  3726. "dev-master": "3.1-dev"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "Hyperf\\RpcServer\\": "src/"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "description": "An abstract rpc server component for Hyperf.",
  3739. "homepage": "https://hyperf.io",
  3740. "keywords": [
  3741. "hyperf",
  3742. "php",
  3743. "rpc",
  3744. "rpc-server",
  3745. "swoole"
  3746. ],
  3747. "support": {
  3748. "docs": "https://hyperf.wiki",
  3749. "issues": "https://github.com/hyperf/hyperf/issues",
  3750. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3751. "source": "https://github.com/hyperf/hyperf"
  3752. },
  3753. "funding": [
  3754. {
  3755. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3756. "type": "custom"
  3757. },
  3758. {
  3759. "url": "https://opencollective.com/hyperf",
  3760. "type": "open_collective"
  3761. }
  3762. ],
  3763. "time": "2024-09-25T02:54:12+00:00"
  3764. },
  3765. {
  3766. "name": "hyperf/serializer",
  3767. "version": "v3.1.42",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/hyperf/serializer.git",
  3771. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3776. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3777. "shasum": ""
  3778. },
  3779. "require": {
  3780. "hyperf/contract": "~3.1.0",
  3781. "php": ">=8.1"
  3782. },
  3783. "suggest": {
  3784. "hyperf/di": "Required to use ExceptionNormalizer",
  3785. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3786. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "hyperf": {
  3791. "config": "Hyperf\\Serializer\\ConfigProvider"
  3792. },
  3793. "branch-alias": {
  3794. "dev-master": "3.1-dev"
  3795. }
  3796. },
  3797. "autoload": {
  3798. "psr-4": {
  3799. "Hyperf\\Serializer\\": "src/"
  3800. }
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "description": "A serializer component for Hyperf.",
  3807. "homepage": "https://hyperf.io",
  3808. "keywords": [
  3809. "hyperf",
  3810. "php",
  3811. "swoole",
  3812. "tappable"
  3813. ],
  3814. "support": {
  3815. "docs": "https://hyperf.wiki",
  3816. "issues": "https://github.com/hyperf/hyperf/issues",
  3817. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3818. "source": "https://github.com/hyperf/hyperf"
  3819. },
  3820. "funding": [
  3821. {
  3822. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3823. "type": "custom"
  3824. },
  3825. {
  3826. "url": "https://opencollective.com/hyperf",
  3827. "type": "open_collective"
  3828. }
  3829. ],
  3830. "time": "2024-09-25T02:54:12+00:00"
  3831. },
  3832. {
  3833. "name": "hyperf/server",
  3834. "version": "v3.1.42",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/hyperf/server.git",
  3838. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3843. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3844. "shasum": ""
  3845. },
  3846. "require": {
  3847. "hyperf/contract": "~3.1.0",
  3848. "hyperf/coordinator": "~3.1.0",
  3849. "hyperf/engine": "^2.8",
  3850. "hyperf/support": "~3.1.0",
  3851. "hyperf/tappable": "~3.1.0",
  3852. "php": ">=8.1",
  3853. "psr/container": "^1.0 || ^2.0",
  3854. "psr/event-dispatcher": "^1.0",
  3855. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3856. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3857. },
  3858. "suggest": {
  3859. "hyperf/event": "Dump the info after server start.",
  3860. "hyperf/framework": "Dump the info after server start."
  3861. },
  3862. "type": "library",
  3863. "extra": {
  3864. "hyperf": {
  3865. "config": "Hyperf\\Server\\ConfigProvider"
  3866. },
  3867. "branch-alias": {
  3868. "dev-master": "3.1-dev"
  3869. }
  3870. },
  3871. "autoload": {
  3872. "psr-4": {
  3873. "Hyperf\\Server\\": "src/"
  3874. }
  3875. },
  3876. "notification-url": "https://packagist.org/downloads/",
  3877. "license": [
  3878. "MIT"
  3879. ],
  3880. "description": "A base server library for Hyperf.",
  3881. "homepage": "https://hyperf.io",
  3882. "keywords": [
  3883. "hyperf",
  3884. "php",
  3885. "server",
  3886. "swoole"
  3887. ],
  3888. "support": {
  3889. "docs": "https://hyperf.wiki",
  3890. "issues": "https://github.com/hyperf/hyperf/issues",
  3891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3892. "source": "https://github.com/hyperf/hyperf"
  3893. },
  3894. "funding": [
  3895. {
  3896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3897. "type": "custom"
  3898. },
  3899. {
  3900. "url": "https://opencollective.com/hyperf",
  3901. "type": "open_collective"
  3902. }
  3903. ],
  3904. "time": "2024-09-25T02:54:12+00:00"
  3905. },
  3906. {
  3907. "name": "hyperf/service-governance",
  3908. "version": "v3.1.42",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/hyperf/service-governance.git",
  3912. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3917. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3918. "shasum": ""
  3919. },
  3920. "require": {
  3921. "hyperf/contract": "~3.1.0",
  3922. "hyperf/support": "~3.1.0",
  3923. "jetbrains/phpstorm-attributes": "^1.0",
  3924. "php": ">=8.1"
  3925. },
  3926. "suggest": {
  3927. "hyperf/event": "Required to use RegisterServiceListener.",
  3928. "hyperf/framework": "Required to use RegisterServiceListener.",
  3929. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3930. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3931. },
  3932. "type": "library",
  3933. "extra": {
  3934. "hyperf": {
  3935. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3936. },
  3937. "branch-alias": {
  3938. "dev-master": "3.1-dev"
  3939. }
  3940. },
  3941. "autoload": {
  3942. "psr-4": {
  3943. "Hyperf\\ServiceGovernance\\": "src/"
  3944. }
  3945. },
  3946. "notification-url": "https://packagist.org/downloads/",
  3947. "license": [
  3948. "MIT"
  3949. ],
  3950. "description": "A service governance component for Hyperf.",
  3951. "homepage": "https://hyperf.io",
  3952. "keywords": [
  3953. "hyperf",
  3954. "php",
  3955. "service-governance",
  3956. "swoole"
  3957. ],
  3958. "support": {
  3959. "docs": "https://hyperf.wiki",
  3960. "issues": "https://github.com/hyperf/hyperf/issues",
  3961. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3962. "source": "https://github.com/hyperf/hyperf"
  3963. },
  3964. "funding": [
  3965. {
  3966. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3967. "type": "custom"
  3968. },
  3969. {
  3970. "url": "https://opencollective.com/hyperf",
  3971. "type": "open_collective"
  3972. }
  3973. ],
  3974. "time": "2024-09-25T02:54:12+00:00"
  3975. },
  3976. {
  3977. "name": "hyperf/service-governance-consul",
  3978. "version": "v3.1.42",
  3979. "source": {
  3980. "type": "git",
  3981. "url": "https://github.com/hyperf/service-governance-consul.git",
  3982. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3983. },
  3984. "dist": {
  3985. "type": "zip",
  3986. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3987. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3988. "shasum": ""
  3989. },
  3990. "require": {
  3991. "hyperf/consul": "~3.1.0",
  3992. "hyperf/contract": "~3.1.0",
  3993. "hyperf/service-governance": "~3.1.0",
  3994. "hyperf/support": "~3.1.0",
  3995. "hyperf/utils": "~3.1.0",
  3996. "php": ">=8.1"
  3997. },
  3998. "type": "library",
  3999. "extra": {
  4000. "hyperf": {
  4001. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4002. },
  4003. "branch-alias": {
  4004. "dev-master": "3.1-dev"
  4005. }
  4006. },
  4007. "autoload": {
  4008. "psr-4": {
  4009. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4010. }
  4011. },
  4012. "notification-url": "https://packagist.org/downloads/",
  4013. "license": [
  4014. "MIT"
  4015. ],
  4016. "description": "A consul adapter for service governance.",
  4017. "homepage": "https://hyperf.io",
  4018. "keywords": [
  4019. "consul-adapter",
  4020. "hyperf",
  4021. "php",
  4022. "service-governance",
  4023. "swoole"
  4024. ],
  4025. "support": {
  4026. "docs": "https://hyperf.wiki",
  4027. "issues": "https://github.com/hyperf/hyperf/issues",
  4028. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4029. "source": "https://github.com/hyperf/hyperf"
  4030. },
  4031. "funding": [
  4032. {
  4033. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4034. "type": "custom"
  4035. },
  4036. {
  4037. "url": "https://opencollective.com/hyperf",
  4038. "type": "open_collective"
  4039. }
  4040. ],
  4041. "time": "2024-09-25T02:54:12+00:00"
  4042. },
  4043. {
  4044. "name": "hyperf/service-governance-nacos",
  4045. "version": "v3.1.42",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4049. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4054. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "hyperf/codec": "~3.1.0",
  4059. "hyperf/contract": "~3.1.0",
  4060. "hyperf/nacos": "~3.1.0",
  4061. "hyperf/service-governance": "~3.1.0",
  4062. "hyperf/support": "~3.1.0",
  4063. "hyperf/utils": "~3.1.0",
  4064. "php": ">=8.1"
  4065. },
  4066. "type": "library",
  4067. "extra": {
  4068. "hyperf": {
  4069. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4070. },
  4071. "branch-alias": {
  4072. "dev-master": "3.1-dev"
  4073. }
  4074. },
  4075. "autoload": {
  4076. "psr-4": {
  4077. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4078. }
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "MIT"
  4083. ],
  4084. "description": "A nacos adapter for service governance.",
  4085. "homepage": "https://hyperf.io",
  4086. "keywords": [
  4087. "hyperf",
  4088. "nacos-adapter",
  4089. "php",
  4090. "service-governance",
  4091. "swoole"
  4092. ],
  4093. "support": {
  4094. "docs": "https://hyperf.wiki",
  4095. "issues": "https://github.com/hyperf/hyperf/issues",
  4096. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4097. "source": "https://github.com/hyperf/hyperf"
  4098. },
  4099. "funding": [
  4100. {
  4101. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4102. "type": "custom"
  4103. },
  4104. {
  4105. "url": "https://opencollective.com/hyperf",
  4106. "type": "open_collective"
  4107. }
  4108. ],
  4109. "time": "2024-09-25T02:54:12+00:00"
  4110. },
  4111. {
  4112. "name": "hyperf/stdlib",
  4113. "version": "v3.1.42",
  4114. "source": {
  4115. "type": "git",
  4116. "url": "https://github.com/hyperf/stdlib.git",
  4117. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4118. },
  4119. "dist": {
  4120. "type": "zip",
  4121. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4122. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4123. "shasum": ""
  4124. },
  4125. "require": {
  4126. "php": ">=8.1"
  4127. },
  4128. "type": "library",
  4129. "extra": {
  4130. "branch-alias": {
  4131. "dev-master": "3.1-dev"
  4132. }
  4133. },
  4134. "autoload": {
  4135. "psr-4": {
  4136. "Hyperf\\Stdlib\\": "src/"
  4137. }
  4138. },
  4139. "notification-url": "https://packagist.org/downloads/",
  4140. "license": [
  4141. "MIT"
  4142. ],
  4143. "description": "A stdlib component for Hyperf.",
  4144. "homepage": "https://hyperf.io",
  4145. "keywords": [
  4146. "hyperf",
  4147. "php",
  4148. "stdlib",
  4149. "swoole"
  4150. ],
  4151. "support": {
  4152. "docs": "https://hyperf.wiki",
  4153. "issues": "https://github.com/hyperf/hyperf/issues",
  4154. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4155. "source": "https://github.com/hyperf/hyperf"
  4156. },
  4157. "funding": [
  4158. {
  4159. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4160. "type": "custom"
  4161. },
  4162. {
  4163. "url": "https://opencollective.com/hyperf",
  4164. "type": "open_collective"
  4165. }
  4166. ],
  4167. "time": "2024-09-25T02:54:12+00:00"
  4168. },
  4169. {
  4170. "name": "hyperf/stringable",
  4171. "version": "v3.1.55",
  4172. "source": {
  4173. "type": "git",
  4174. "url": "https://github.com/hyperf/stringable.git",
  4175. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7"
  4176. },
  4177. "dist": {
  4178. "type": "zip",
  4179. "url": "https://api.github.com/repos/hyperf/stringable/zipball/1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4180. "reference": "1ce51e8c73609898da6b0b9ab80a14508fa671d7",
  4181. "shasum": ""
  4182. },
  4183. "require": {
  4184. "ext-mbstring": "*",
  4185. "hyperf/collection": "~3.1.0",
  4186. "hyperf/conditionable": "~3.1.0",
  4187. "hyperf/macroable": "~3.1.0",
  4188. "hyperf/tappable": "~3.1.0",
  4189. "php": ">=8.1"
  4190. },
  4191. "suggest": {
  4192. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4193. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4194. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4195. },
  4196. "type": "library",
  4197. "extra": {
  4198. "branch-alias": {
  4199. "dev-master": "3.1-dev"
  4200. }
  4201. },
  4202. "autoload": {
  4203. "files": [
  4204. "src/Functions.php"
  4205. ],
  4206. "psr-4": {
  4207. "Hyperf\\Stringable\\": "src/"
  4208. }
  4209. },
  4210. "notification-url": "https://packagist.org/downloads/",
  4211. "license": [
  4212. "MIT"
  4213. ],
  4214. "description": "Hyperf Stringable package which come from illuminate/support",
  4215. "homepage": "https://hyperf.io",
  4216. "keywords": [
  4217. "hyperf",
  4218. "php",
  4219. "stringable",
  4220. "swoole"
  4221. ],
  4222. "support": {
  4223. "docs": "https://hyperf.wiki",
  4224. "issues": "https://github.com/hyperf/hyperf/issues",
  4225. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4226. "source": "https://github.com/hyperf/hyperf"
  4227. },
  4228. "funding": [
  4229. {
  4230. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4231. "type": "custom"
  4232. },
  4233. {
  4234. "url": "https://opencollective.com/hyperf",
  4235. "type": "open_collective"
  4236. }
  4237. ],
  4238. "time": "2025-05-02T14:13:24+00:00"
  4239. },
  4240. {
  4241. "name": "hyperf/support",
  4242. "version": "v3.1.51",
  4243. "source": {
  4244. "type": "git",
  4245. "url": "https://github.com/hyperf/support.git",
  4246. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed"
  4247. },
  4248. "dist": {
  4249. "type": "zip",
  4250. "url": "https://api.github.com/repos/hyperf/support/zipball/8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4251. "reference": "8d630b496945f3ac791a570fe6c1bf481c3f28ed",
  4252. "shasum": ""
  4253. },
  4254. "require": {
  4255. "hyperf/collection": "~3.1.0",
  4256. "hyperf/context": "~3.1.0",
  4257. "hyperf/contract": "~3.1.0",
  4258. "hyperf/coroutine": "~3.1.0",
  4259. "hyperf/macroable": "~3.1.0",
  4260. "hyperf/stringable": "~3.1.0",
  4261. "php": ">=8.1"
  4262. },
  4263. "suggest": {
  4264. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4265. },
  4266. "type": "library",
  4267. "extra": {
  4268. "branch-alias": {
  4269. "dev-master": "3.1-dev"
  4270. }
  4271. },
  4272. "autoload": {
  4273. "files": [
  4274. "src/Functions.php"
  4275. ],
  4276. "psr-4": {
  4277. "Hyperf\\Support\\": "src/"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "description": "A support component for Hyperf.",
  4285. "homepage": "https://hyperf.io",
  4286. "keywords": [
  4287. "hyperf",
  4288. "php",
  4289. "support",
  4290. "swoole"
  4291. ],
  4292. "support": {
  4293. "docs": "https://hyperf.wiki",
  4294. "issues": "https://github.com/hyperf/hyperf/issues",
  4295. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4296. "source": "https://github.com/hyperf/hyperf"
  4297. },
  4298. "funding": [
  4299. {
  4300. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4301. "type": "custom"
  4302. },
  4303. {
  4304. "url": "https://opencollective.com/hyperf",
  4305. "type": "open_collective"
  4306. }
  4307. ],
  4308. "time": "2025-02-06T07:02:37+00:00"
  4309. },
  4310. {
  4311. "name": "hyperf/tappable",
  4312. "version": "v3.1.42",
  4313. "source": {
  4314. "type": "git",
  4315. "url": "https://github.com/hyperf/tappable.git",
  4316. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4317. },
  4318. "dist": {
  4319. "type": "zip",
  4320. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4321. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4322. "shasum": ""
  4323. },
  4324. "require": {
  4325. "php": ">=8.1"
  4326. },
  4327. "type": "library",
  4328. "extra": {
  4329. "branch-alias": {
  4330. "dev-master": "3.1-dev"
  4331. }
  4332. },
  4333. "autoload": {
  4334. "files": [
  4335. "src/Functions.php"
  4336. ],
  4337. "psr-4": {
  4338. "Hyperf\\Tappable\\": "src/"
  4339. }
  4340. },
  4341. "notification-url": "https://packagist.org/downloads/",
  4342. "license": [
  4343. "MIT"
  4344. ],
  4345. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4346. "homepage": "https://hyperf.io",
  4347. "keywords": [
  4348. "hyperf",
  4349. "php",
  4350. "swoole",
  4351. "tappable"
  4352. ],
  4353. "support": {
  4354. "docs": "https://hyperf.wiki",
  4355. "issues": "https://github.com/hyperf/hyperf/issues",
  4356. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4357. "source": "https://github.com/hyperf/hyperf"
  4358. },
  4359. "funding": [
  4360. {
  4361. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4362. "type": "custom"
  4363. },
  4364. {
  4365. "url": "https://opencollective.com/hyperf",
  4366. "type": "open_collective"
  4367. }
  4368. ],
  4369. "time": "2024-09-25T02:54:12+00:00"
  4370. },
  4371. {
  4372. "name": "hyperf/utils",
  4373. "version": "v3.1.42",
  4374. "source": {
  4375. "type": "git",
  4376. "url": "https://github.com/hyperf/utils.git",
  4377. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4378. },
  4379. "dist": {
  4380. "type": "zip",
  4381. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4382. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4383. "shasum": ""
  4384. },
  4385. "require": {
  4386. "doctrine/inflector": "^2.0",
  4387. "hyperf/code-parser": "~3.1.0",
  4388. "hyperf/codec": "~3.1.0",
  4389. "hyperf/collection": "~3.1.0",
  4390. "hyperf/context": "~3.1.0",
  4391. "hyperf/contract": "~3.1.0",
  4392. "hyperf/coordinator": "~3.1.0",
  4393. "hyperf/coroutine": "~3.1.0",
  4394. "hyperf/engine": "^2.0",
  4395. "hyperf/macroable": "~3.1.0",
  4396. "hyperf/serializer": "~3.1.0",
  4397. "hyperf/stringable": "~3.1.0",
  4398. "hyperf/support": "~3.1.0",
  4399. "php": ">=8.1"
  4400. },
  4401. "type": "library",
  4402. "extra": {
  4403. "branch-alias": {
  4404. "dev-master": "3.1-dev"
  4405. }
  4406. },
  4407. "notification-url": "https://packagist.org/downloads/",
  4408. "license": [
  4409. "MIT"
  4410. ],
  4411. "description": "A tools package that could help developer solved the problem quickly.",
  4412. "homepage": "https://hyperf.io",
  4413. "keywords": [
  4414. "hyperf",
  4415. "php",
  4416. "swoole",
  4417. "utils"
  4418. ],
  4419. "support": {
  4420. "docs": "https://hyperf.wiki",
  4421. "issues": "https://github.com/hyperf/hyperf/issues",
  4422. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4423. "source": "https://github.com/hyperf/hyperf"
  4424. },
  4425. "funding": [
  4426. {
  4427. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4428. "type": "custom"
  4429. },
  4430. {
  4431. "url": "https://opencollective.com/hyperf",
  4432. "type": "open_collective"
  4433. }
  4434. ],
  4435. "time": "2024-09-25T02:54:12+00:00"
  4436. },
  4437. {
  4438. "name": "jetbrains/phpstorm-attributes",
  4439. "version": "1.2",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4443. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  4448. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  4449. "shasum": ""
  4450. },
  4451. "type": "library",
  4452. "autoload": {
  4453. "psr-4": {
  4454. "JetBrains\\PhpStorm\\": "src/"
  4455. }
  4456. },
  4457. "notification-url": "https://packagist.org/downloads/",
  4458. "license": [
  4459. "Apache-2.0"
  4460. ],
  4461. "authors": [
  4462. {
  4463. "name": "JetBrains",
  4464. "homepage": "https://www.jetbrains.com"
  4465. }
  4466. ],
  4467. "description": "PhpStorm specific attributes",
  4468. "keywords": [
  4469. "attributes",
  4470. "jetbrains",
  4471. "phpstorm"
  4472. ],
  4473. "support": {
  4474. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4475. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  4476. },
  4477. "time": "2024-10-11T10:46:19+00:00"
  4478. },
  4479. {
  4480. "name": "laminas/laminas-mime",
  4481. "version": "2.12.0",
  4482. "source": {
  4483. "type": "git",
  4484. "url": "https://github.com/laminas/laminas-mime.git",
  4485. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4486. },
  4487. "dist": {
  4488. "type": "zip",
  4489. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4490. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4491. "shasum": ""
  4492. },
  4493. "require": {
  4494. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4495. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4496. },
  4497. "conflict": {
  4498. "zendframework/zend-mime": "*"
  4499. },
  4500. "require-dev": {
  4501. "laminas/laminas-coding-standard": "~2.4.0",
  4502. "laminas/laminas-mail": "^2.19.0",
  4503. "phpunit/phpunit": "~9.5.25"
  4504. },
  4505. "suggest": {
  4506. "laminas/laminas-mail": "Laminas\\Mail component"
  4507. },
  4508. "type": "library",
  4509. "autoload": {
  4510. "psr-4": {
  4511. "Laminas\\Mime\\": "src/"
  4512. }
  4513. },
  4514. "notification-url": "https://packagist.org/downloads/",
  4515. "license": [
  4516. "BSD-3-Clause"
  4517. ],
  4518. "description": "Create and parse MIME messages and parts",
  4519. "homepage": "https://laminas.dev",
  4520. "keywords": [
  4521. "laminas",
  4522. "mime"
  4523. ],
  4524. "support": {
  4525. "chat": "https://laminas.dev/chat",
  4526. "docs": "https://docs.laminas.dev/laminas-mime/",
  4527. "forum": "https://discourse.laminas.dev",
  4528. "issues": "https://github.com/laminas/laminas-mime/issues",
  4529. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4530. "source": "https://github.com/laminas/laminas-mime"
  4531. },
  4532. "funding": [
  4533. {
  4534. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4535. "type": "community_bridge"
  4536. }
  4537. ],
  4538. "abandoned": "symfony/mime",
  4539. "time": "2023-11-02T16:47:19+00:00"
  4540. },
  4541. {
  4542. "name": "laminas/laminas-stdlib",
  4543. "version": "3.20.0",
  4544. "source": {
  4545. "type": "git",
  4546. "url": "https://github.com/laminas/laminas-stdlib.git",
  4547. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4548. },
  4549. "dist": {
  4550. "type": "zip",
  4551. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4552. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4553. "shasum": ""
  4554. },
  4555. "require": {
  4556. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4557. },
  4558. "conflict": {
  4559. "zendframework/zend-stdlib": "*"
  4560. },
  4561. "require-dev": {
  4562. "laminas/laminas-coding-standard": "^3.0",
  4563. "phpbench/phpbench": "^1.3.1",
  4564. "phpunit/phpunit": "^10.5.38",
  4565. "psalm/plugin-phpunit": "^0.19.0",
  4566. "vimeo/psalm": "^5.26.1"
  4567. },
  4568. "type": "library",
  4569. "autoload": {
  4570. "psr-4": {
  4571. "Laminas\\Stdlib\\": "src/"
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "BSD-3-Clause"
  4577. ],
  4578. "description": "SPL extensions, array utilities, error handlers, and more",
  4579. "homepage": "https://laminas.dev",
  4580. "keywords": [
  4581. "laminas",
  4582. "stdlib"
  4583. ],
  4584. "support": {
  4585. "chat": "https://laminas.dev/chat",
  4586. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4587. "forum": "https://discourse.laminas.dev",
  4588. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4589. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4590. "source": "https://github.com/laminas/laminas-stdlib"
  4591. },
  4592. "funding": [
  4593. {
  4594. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4595. "type": "community_bridge"
  4596. }
  4597. ],
  4598. "time": "2024-10-29T13:46:07+00:00"
  4599. },
  4600. {
  4601. "name": "markrogoyski/math-php",
  4602. "version": "v2.11.0",
  4603. "source": {
  4604. "type": "git",
  4605. "url": "https://github.com/markrogoyski/math-php.git",
  4606. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591"
  4607. },
  4608. "dist": {
  4609. "type": "zip",
  4610. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  4611. "reference": "ae499f31513821a62f3d2fb8c6f0d3a333e8b591",
  4612. "shasum": ""
  4613. },
  4614. "require": {
  4615. "ext-json": "*",
  4616. "php": ">=7.2.0"
  4617. },
  4618. "require-dev": {
  4619. "php-coveralls/php-coveralls": "^2.0",
  4620. "php-parallel-lint/php-parallel-lint": "^1.2",
  4621. "phploc/phploc": "*",
  4622. "phpmd/phpmd": "^2.6",
  4623. "phpstan/phpstan": "^1.10",
  4624. "phpunit/phpunit": "^8.5",
  4625. "squizlabs/php_codesniffer": "3.*"
  4626. },
  4627. "type": "library",
  4628. "autoload": {
  4629. "psr-4": {
  4630. "MathPHP\\": "src/"
  4631. }
  4632. },
  4633. "notification-url": "https://packagist.org/downloads/",
  4634. "license": [
  4635. "MIT"
  4636. ],
  4637. "authors": [
  4638. {
  4639. "name": "Mark Rogoyski",
  4640. "email": "mark@rogoyski.com",
  4641. "homepage": "https://github.com/markrogoyski",
  4642. "role": "Lead developer"
  4643. },
  4644. {
  4645. "name": "Kevin Nowaczyk",
  4646. "homepage": "https://github.com/Beakerboy",
  4647. "role": "Developer"
  4648. },
  4649. {
  4650. "name": "MathPHP Community of Contributors",
  4651. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4652. }
  4653. ],
  4654. "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",
  4655. "homepage": "https://github.com/markrogoyski/math-php/",
  4656. "keywords": [
  4657. "algebra",
  4658. "combinatorics",
  4659. "distributions",
  4660. "linear algebra",
  4661. "math",
  4662. "mathematics",
  4663. "matrix",
  4664. "numerical analysis",
  4665. "probability",
  4666. "regressions",
  4667. "statistics"
  4668. ],
  4669. "support": {
  4670. "issues": "https://github.com/markrogoyski/math-php/issues",
  4671. "source": "https://github.com/markrogoyski/math-php/tree/v2.11.0"
  4672. },
  4673. "time": "2025-01-26T20:16:06+00:00"
  4674. },
  4675. {
  4676. "name": "monolog/monolog",
  4677. "version": "3.9.0",
  4678. "source": {
  4679. "type": "git",
  4680. "url": "https://github.com/Seldaek/monolog.git",
  4681. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  4682. },
  4683. "dist": {
  4684. "type": "zip",
  4685. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4686. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4687. "shasum": ""
  4688. },
  4689. "require": {
  4690. "php": ">=8.1",
  4691. "psr/log": "^2.0 || ^3.0"
  4692. },
  4693. "provide": {
  4694. "psr/log-implementation": "3.0.0"
  4695. },
  4696. "require-dev": {
  4697. "aws/aws-sdk-php": "^3.0",
  4698. "doctrine/couchdb": "~1.0@dev",
  4699. "elasticsearch/elasticsearch": "^7 || ^8",
  4700. "ext-json": "*",
  4701. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4702. "guzzlehttp/guzzle": "^7.4.5",
  4703. "guzzlehttp/psr7": "^2.2",
  4704. "mongodb/mongodb": "^1.8",
  4705. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4706. "php-console/php-console": "^3.1.8",
  4707. "phpstan/phpstan": "^2",
  4708. "phpstan/phpstan-deprecation-rules": "^2",
  4709. "phpstan/phpstan-strict-rules": "^2",
  4710. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4711. "predis/predis": "^1.1 || ^2",
  4712. "rollbar/rollbar": "^4.0",
  4713. "ruflin/elastica": "^7 || ^8",
  4714. "symfony/mailer": "^5.4 || ^6",
  4715. "symfony/mime": "^5.4 || ^6"
  4716. },
  4717. "suggest": {
  4718. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4719. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4720. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4721. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4722. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4723. "ext-mbstring": "Allow to work properly with unicode symbols",
  4724. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4725. "ext-openssl": "Required to send log messages using SSL",
  4726. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4727. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4728. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4729. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4730. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4731. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4732. },
  4733. "type": "library",
  4734. "extra": {
  4735. "branch-alias": {
  4736. "dev-main": "3.x-dev"
  4737. }
  4738. },
  4739. "autoload": {
  4740. "psr-4": {
  4741. "Monolog\\": "src/Monolog"
  4742. }
  4743. },
  4744. "notification-url": "https://packagist.org/downloads/",
  4745. "license": [
  4746. "MIT"
  4747. ],
  4748. "authors": [
  4749. {
  4750. "name": "Jordi Boggiano",
  4751. "email": "j.boggiano@seld.be",
  4752. "homepage": "https://seld.be"
  4753. }
  4754. ],
  4755. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4756. "homepage": "https://github.com/Seldaek/monolog",
  4757. "keywords": [
  4758. "log",
  4759. "logging",
  4760. "psr-3"
  4761. ],
  4762. "support": {
  4763. "issues": "https://github.com/Seldaek/monolog/issues",
  4764. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4765. },
  4766. "funding": [
  4767. {
  4768. "url": "https://github.com/Seldaek",
  4769. "type": "github"
  4770. },
  4771. {
  4772. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4773. "type": "tidelift"
  4774. }
  4775. ],
  4776. "time": "2025-03-24T10:02:05+00:00"
  4777. },
  4778. {
  4779. "name": "mtdowling/jmespath.php",
  4780. "version": "2.8.0",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/jmespath/jmespath.php.git",
  4784. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4789. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4790. "shasum": ""
  4791. },
  4792. "require": {
  4793. "php": "^7.2.5 || ^8.0",
  4794. "symfony/polyfill-mbstring": "^1.17"
  4795. },
  4796. "require-dev": {
  4797. "composer/xdebug-handler": "^3.0.3",
  4798. "phpunit/phpunit": "^8.5.33"
  4799. },
  4800. "bin": [
  4801. "bin/jp.php"
  4802. ],
  4803. "type": "library",
  4804. "extra": {
  4805. "branch-alias": {
  4806. "dev-master": "2.8-dev"
  4807. }
  4808. },
  4809. "autoload": {
  4810. "files": [
  4811. "src/JmesPath.php"
  4812. ],
  4813. "psr-4": {
  4814. "JmesPath\\": "src/"
  4815. }
  4816. },
  4817. "notification-url": "https://packagist.org/downloads/",
  4818. "license": [
  4819. "MIT"
  4820. ],
  4821. "authors": [
  4822. {
  4823. "name": "Graham Campbell",
  4824. "email": "hello@gjcampbell.co.uk",
  4825. "homepage": "https://github.com/GrahamCampbell"
  4826. },
  4827. {
  4828. "name": "Michael Dowling",
  4829. "email": "mtdowling@gmail.com",
  4830. "homepage": "https://github.com/mtdowling"
  4831. }
  4832. ],
  4833. "description": "Declaratively specify how to extract elements from a JSON document",
  4834. "keywords": [
  4835. "json",
  4836. "jsonpath"
  4837. ],
  4838. "support": {
  4839. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4840. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4841. },
  4842. "time": "2024-09-04T18:46:31+00:00"
  4843. },
  4844. {
  4845. "name": "nesbot/carbon",
  4846. "version": "2.73.0",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://github.com/CarbonPHP/carbon.git",
  4850. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4855. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4856. "shasum": ""
  4857. },
  4858. "require": {
  4859. "carbonphp/carbon-doctrine-types": "*",
  4860. "ext-json": "*",
  4861. "php": "^7.1.8 || ^8.0",
  4862. "psr/clock": "^1.0",
  4863. "symfony/polyfill-mbstring": "^1.0",
  4864. "symfony/polyfill-php80": "^1.16",
  4865. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4866. },
  4867. "provide": {
  4868. "psr/clock-implementation": "1.0"
  4869. },
  4870. "require-dev": {
  4871. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4872. "doctrine/orm": "^2.7 || ^3.0",
  4873. "friendsofphp/php-cs-fixer": "^3.0",
  4874. "kylekatarnls/multi-tester": "^2.0",
  4875. "ondrejmirtes/better-reflection": "<6",
  4876. "phpmd/phpmd": "^2.9",
  4877. "phpstan/extension-installer": "^1.0",
  4878. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4879. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4880. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4881. "squizlabs/php_codesniffer": "^3.4"
  4882. },
  4883. "bin": [
  4884. "bin/carbon"
  4885. ],
  4886. "type": "library",
  4887. "extra": {
  4888. "laravel": {
  4889. "providers": [
  4890. "Carbon\\Laravel\\ServiceProvider"
  4891. ]
  4892. },
  4893. "phpstan": {
  4894. "includes": [
  4895. "extension.neon"
  4896. ]
  4897. },
  4898. "branch-alias": {
  4899. "dev-2.x": "2.x-dev",
  4900. "dev-master": "3.x-dev"
  4901. }
  4902. },
  4903. "autoload": {
  4904. "psr-4": {
  4905. "Carbon\\": "src/Carbon/"
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Brian Nesbitt",
  4915. "email": "brian@nesbot.com",
  4916. "homepage": "https://markido.com"
  4917. },
  4918. {
  4919. "name": "kylekatarnls",
  4920. "homepage": "https://github.com/kylekatarnls"
  4921. }
  4922. ],
  4923. "description": "An API extension for DateTime that supports 281 different languages.",
  4924. "homepage": "https://carbon.nesbot.com",
  4925. "keywords": [
  4926. "date",
  4927. "datetime",
  4928. "time"
  4929. ],
  4930. "support": {
  4931. "docs": "https://carbon.nesbot.com/docs",
  4932. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4933. "source": "https://github.com/briannesbitt/Carbon"
  4934. },
  4935. "funding": [
  4936. {
  4937. "url": "https://github.com/sponsors/kylekatarnls",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://opencollective.com/Carbon#sponsor",
  4942. "type": "opencollective"
  4943. },
  4944. {
  4945. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4946. "type": "tidelift"
  4947. }
  4948. ],
  4949. "time": "2025-01-08T20:10:23+00:00"
  4950. },
  4951. {
  4952. "name": "nikic/fast-route",
  4953. "version": "v1.3.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/nikic/FastRoute.git",
  4957. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4962. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "php": ">=5.4.0"
  4967. },
  4968. "require-dev": {
  4969. "phpunit/phpunit": "^4.8.35|~5.7"
  4970. },
  4971. "type": "library",
  4972. "autoload": {
  4973. "files": [
  4974. "src/functions.php"
  4975. ],
  4976. "psr-4": {
  4977. "FastRoute\\": "src/"
  4978. }
  4979. },
  4980. "notification-url": "https://packagist.org/downloads/",
  4981. "license": [
  4982. "BSD-3-Clause"
  4983. ],
  4984. "authors": [
  4985. {
  4986. "name": "Nikita Popov",
  4987. "email": "nikic@php.net"
  4988. }
  4989. ],
  4990. "description": "Fast request router for PHP",
  4991. "keywords": [
  4992. "router",
  4993. "routing"
  4994. ],
  4995. "support": {
  4996. "issues": "https://github.com/nikic/FastRoute/issues",
  4997. "source": "https://github.com/nikic/FastRoute/tree/master"
  4998. },
  4999. "time": "2018-02-13T20:26:39+00:00"
  5000. },
  5001. {
  5002. "name": "nikic/php-parser",
  5003. "version": "v4.19.4",
  5004. "source": {
  5005. "type": "git",
  5006. "url": "https://github.com/nikic/PHP-Parser.git",
  5007. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5008. },
  5009. "dist": {
  5010. "type": "zip",
  5011. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5012. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5013. "shasum": ""
  5014. },
  5015. "require": {
  5016. "ext-tokenizer": "*",
  5017. "php": ">=7.1"
  5018. },
  5019. "require-dev": {
  5020. "ircmaxell/php-yacc": "^0.0.7",
  5021. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5022. },
  5023. "bin": [
  5024. "bin/php-parse"
  5025. ],
  5026. "type": "library",
  5027. "extra": {
  5028. "branch-alias": {
  5029. "dev-master": "4.9-dev"
  5030. }
  5031. },
  5032. "autoload": {
  5033. "psr-4": {
  5034. "PhpParser\\": "lib/PhpParser"
  5035. }
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "BSD-3-Clause"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Nikita Popov"
  5044. }
  5045. ],
  5046. "description": "A PHP parser written in PHP",
  5047. "keywords": [
  5048. "parser",
  5049. "php"
  5050. ],
  5051. "support": {
  5052. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5053. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5054. },
  5055. "time": "2024-09-29T15:01:53+00:00"
  5056. },
  5057. {
  5058. "name": "overtrue/pinyin",
  5059. "version": "5.3.4",
  5060. "source": {
  5061. "type": "git",
  5062. "url": "https://github.com/overtrue/pinyin.git",
  5063. "reference": "03d8697763c32595f54c855911bc77abf00fea14"
  5064. },
  5065. "dist": {
  5066. "type": "zip",
  5067. "url": "https://api.github.com/repos/overtrue/pinyin/zipball/03d8697763c32595f54c855911bc77abf00fea14",
  5068. "reference": "03d8697763c32595f54c855911bc77abf00fea14",
  5069. "shasum": ""
  5070. },
  5071. "require": {
  5072. "php": ">=8.0.2"
  5073. },
  5074. "require-dev": {
  5075. "brainmaestro/composer-git-hooks": "^3.0",
  5076. "friendsofphp/php-cs-fixer": "^3.2",
  5077. "laravel/pint": "^1.10",
  5078. "nunomaduro/termwind": "^1.0|^2.0",
  5079. "phpunit/phpunit": "^10.0|^11.2"
  5080. },
  5081. "bin": [
  5082. "bin/pinyin"
  5083. ],
  5084. "type": "library",
  5085. "extra": {
  5086. "hooks": {
  5087. "pre-push": [
  5088. "composer pint",
  5089. "composer test"
  5090. ],
  5091. "pre-commit": [
  5092. "composer pint",
  5093. "composer test"
  5094. ]
  5095. }
  5096. },
  5097. "autoload": {
  5098. "psr-4": {
  5099. "Overtrue\\Pinyin\\": "src/"
  5100. }
  5101. },
  5102. "notification-url": "https://packagist.org/downloads/",
  5103. "license": [
  5104. "MIT"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "overtrue",
  5109. "email": "anzhengchao@gmail.com",
  5110. "homepage": "http://github.com/overtrue"
  5111. }
  5112. ],
  5113. "description": "Chinese to pinyin translator.",
  5114. "homepage": "https://github.com/overtrue/pinyin",
  5115. "keywords": [
  5116. "Chinese",
  5117. "Pinyin",
  5118. "cn2pinyin"
  5119. ],
  5120. "support": {
  5121. "issues": "https://github.com/overtrue/pinyin/issues",
  5122. "source": "https://github.com/overtrue/pinyin/tree/5.3.4"
  5123. },
  5124. "funding": [
  5125. {
  5126. "url": "https://github.com/overtrue",
  5127. "type": "github"
  5128. }
  5129. ],
  5130. "time": "2025-03-16T02:16:27+00:00"
  5131. },
  5132. {
  5133. "name": "php-di/phpdoc-reader",
  5134. "version": "2.2.1",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5138. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5143. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5144. "shasum": ""
  5145. },
  5146. "require": {
  5147. "php": ">=7.2.0"
  5148. },
  5149. "require-dev": {
  5150. "mnapoli/hard-mode": "~0.3.0",
  5151. "phpunit/phpunit": "^8.5|^9.0"
  5152. },
  5153. "type": "library",
  5154. "autoload": {
  5155. "psr-4": {
  5156. "PhpDocReader\\": "src/PhpDocReader"
  5157. }
  5158. },
  5159. "notification-url": "https://packagist.org/downloads/",
  5160. "license": [
  5161. "MIT"
  5162. ],
  5163. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5164. "keywords": [
  5165. "phpdoc",
  5166. "reflection"
  5167. ],
  5168. "support": {
  5169. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5170. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5171. },
  5172. "time": "2020-10-12T12:39:22+00:00"
  5173. },
  5174. {
  5175. "name": "phpoption/phpoption",
  5176. "version": "1.9.3",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://github.com/schmittjoh/php-option.git",
  5180. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5181. },
  5182. "dist": {
  5183. "type": "zip",
  5184. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5185. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5186. "shasum": ""
  5187. },
  5188. "require": {
  5189. "php": "^7.2.5 || ^8.0"
  5190. },
  5191. "require-dev": {
  5192. "bamarni/composer-bin-plugin": "^1.8.2",
  5193. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5194. },
  5195. "type": "library",
  5196. "extra": {
  5197. "bamarni-bin": {
  5198. "bin-links": true,
  5199. "forward-command": false
  5200. },
  5201. "branch-alias": {
  5202. "dev-master": "1.9-dev"
  5203. }
  5204. },
  5205. "autoload": {
  5206. "psr-4": {
  5207. "PhpOption\\": "src/PhpOption/"
  5208. }
  5209. },
  5210. "notification-url": "https://packagist.org/downloads/",
  5211. "license": [
  5212. "Apache-2.0"
  5213. ],
  5214. "authors": [
  5215. {
  5216. "name": "Johannes M. Schmitt",
  5217. "email": "schmittjoh@gmail.com",
  5218. "homepage": "https://github.com/schmittjoh"
  5219. },
  5220. {
  5221. "name": "Graham Campbell",
  5222. "email": "hello@gjcampbell.co.uk",
  5223. "homepage": "https://github.com/GrahamCampbell"
  5224. }
  5225. ],
  5226. "description": "Option Type for PHP",
  5227. "keywords": [
  5228. "language",
  5229. "option",
  5230. "php",
  5231. "type"
  5232. ],
  5233. "support": {
  5234. "issues": "https://github.com/schmittjoh/php-option/issues",
  5235. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5236. },
  5237. "funding": [
  5238. {
  5239. "url": "https://github.com/GrahamCampbell",
  5240. "type": "github"
  5241. },
  5242. {
  5243. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5244. "type": "tidelift"
  5245. }
  5246. ],
  5247. "time": "2024-07-20T21:41:07+00:00"
  5248. },
  5249. {
  5250. "name": "psr/cache",
  5251. "version": "3.0.0",
  5252. "source": {
  5253. "type": "git",
  5254. "url": "https://github.com/php-fig/cache.git",
  5255. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5256. },
  5257. "dist": {
  5258. "type": "zip",
  5259. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5260. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5261. "shasum": ""
  5262. },
  5263. "require": {
  5264. "php": ">=8.0.0"
  5265. },
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-master": "1.0.x-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "psr-4": {
  5274. "Psr\\Cache\\": "src/"
  5275. }
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "MIT"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "PHP-FIG",
  5284. "homepage": "https://www.php-fig.org/"
  5285. }
  5286. ],
  5287. "description": "Common interface for caching libraries",
  5288. "keywords": [
  5289. "cache",
  5290. "psr",
  5291. "psr-6"
  5292. ],
  5293. "support": {
  5294. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5295. },
  5296. "time": "2021-02-03T23:26:27+00:00"
  5297. },
  5298. {
  5299. "name": "psr/clock",
  5300. "version": "1.0.0",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/php-fig/clock.git",
  5304. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5309. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "php": "^7.0 || ^8.0"
  5314. },
  5315. "type": "library",
  5316. "autoload": {
  5317. "psr-4": {
  5318. "Psr\\Clock\\": "src/"
  5319. }
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "PHP-FIG",
  5328. "homepage": "https://www.php-fig.org/"
  5329. }
  5330. ],
  5331. "description": "Common interface for reading the clock.",
  5332. "homepage": "https://github.com/php-fig/clock",
  5333. "keywords": [
  5334. "clock",
  5335. "now",
  5336. "psr",
  5337. "psr-20",
  5338. "time"
  5339. ],
  5340. "support": {
  5341. "issues": "https://github.com/php-fig/clock/issues",
  5342. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5343. },
  5344. "time": "2022-11-25T14:36:26+00:00"
  5345. },
  5346. {
  5347. "name": "psr/container",
  5348. "version": "2.0.2",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/php-fig/container.git",
  5352. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5357. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": ">=7.4.0"
  5362. },
  5363. "type": "library",
  5364. "extra": {
  5365. "branch-alias": {
  5366. "dev-master": "2.0.x-dev"
  5367. }
  5368. },
  5369. "autoload": {
  5370. "psr-4": {
  5371. "Psr\\Container\\": "src/"
  5372. }
  5373. },
  5374. "notification-url": "https://packagist.org/downloads/",
  5375. "license": [
  5376. "MIT"
  5377. ],
  5378. "authors": [
  5379. {
  5380. "name": "PHP-FIG",
  5381. "homepage": "https://www.php-fig.org/"
  5382. }
  5383. ],
  5384. "description": "Common Container Interface (PHP FIG PSR-11)",
  5385. "homepage": "https://github.com/php-fig/container",
  5386. "keywords": [
  5387. "PSR-11",
  5388. "container",
  5389. "container-interface",
  5390. "container-interop",
  5391. "psr"
  5392. ],
  5393. "support": {
  5394. "issues": "https://github.com/php-fig/container/issues",
  5395. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5396. },
  5397. "time": "2021-11-05T16:47:00+00:00"
  5398. },
  5399. {
  5400. "name": "psr/event-dispatcher",
  5401. "version": "1.0.0",
  5402. "source": {
  5403. "type": "git",
  5404. "url": "https://github.com/php-fig/event-dispatcher.git",
  5405. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5406. },
  5407. "dist": {
  5408. "type": "zip",
  5409. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5410. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5411. "shasum": ""
  5412. },
  5413. "require": {
  5414. "php": ">=7.2.0"
  5415. },
  5416. "type": "library",
  5417. "extra": {
  5418. "branch-alias": {
  5419. "dev-master": "1.0.x-dev"
  5420. }
  5421. },
  5422. "autoload": {
  5423. "psr-4": {
  5424. "Psr\\EventDispatcher\\": "src/"
  5425. }
  5426. },
  5427. "notification-url": "https://packagist.org/downloads/",
  5428. "license": [
  5429. "MIT"
  5430. ],
  5431. "authors": [
  5432. {
  5433. "name": "PHP-FIG",
  5434. "homepage": "http://www.php-fig.org/"
  5435. }
  5436. ],
  5437. "description": "Standard interfaces for event handling.",
  5438. "keywords": [
  5439. "events",
  5440. "psr",
  5441. "psr-14"
  5442. ],
  5443. "support": {
  5444. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5445. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5446. },
  5447. "time": "2019-01-08T18:20:26+00:00"
  5448. },
  5449. {
  5450. "name": "psr/http-client",
  5451. "version": "1.0.3",
  5452. "source": {
  5453. "type": "git",
  5454. "url": "https://github.com/php-fig/http-client.git",
  5455. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5456. },
  5457. "dist": {
  5458. "type": "zip",
  5459. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5460. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5461. "shasum": ""
  5462. },
  5463. "require": {
  5464. "php": "^7.0 || ^8.0",
  5465. "psr/http-message": "^1.0 || ^2.0"
  5466. },
  5467. "type": "library",
  5468. "extra": {
  5469. "branch-alias": {
  5470. "dev-master": "1.0.x-dev"
  5471. }
  5472. },
  5473. "autoload": {
  5474. "psr-4": {
  5475. "Psr\\Http\\Client\\": "src/"
  5476. }
  5477. },
  5478. "notification-url": "https://packagist.org/downloads/",
  5479. "license": [
  5480. "MIT"
  5481. ],
  5482. "authors": [
  5483. {
  5484. "name": "PHP-FIG",
  5485. "homepage": "https://www.php-fig.org/"
  5486. }
  5487. ],
  5488. "description": "Common interface for HTTP clients",
  5489. "homepage": "https://github.com/php-fig/http-client",
  5490. "keywords": [
  5491. "http",
  5492. "http-client",
  5493. "psr",
  5494. "psr-18"
  5495. ],
  5496. "support": {
  5497. "source": "https://github.com/php-fig/http-client"
  5498. },
  5499. "time": "2023-09-23T14:17:50+00:00"
  5500. },
  5501. {
  5502. "name": "psr/http-factory",
  5503. "version": "1.1.0",
  5504. "source": {
  5505. "type": "git",
  5506. "url": "https://github.com/php-fig/http-factory.git",
  5507. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5508. },
  5509. "dist": {
  5510. "type": "zip",
  5511. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5512. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5513. "shasum": ""
  5514. },
  5515. "require": {
  5516. "php": ">=7.1",
  5517. "psr/http-message": "^1.0 || ^2.0"
  5518. },
  5519. "type": "library",
  5520. "extra": {
  5521. "branch-alias": {
  5522. "dev-master": "1.0.x-dev"
  5523. }
  5524. },
  5525. "autoload": {
  5526. "psr-4": {
  5527. "Psr\\Http\\Message\\": "src/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "MIT"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "PHP-FIG",
  5537. "homepage": "https://www.php-fig.org/"
  5538. }
  5539. ],
  5540. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5541. "keywords": [
  5542. "factory",
  5543. "http",
  5544. "message",
  5545. "psr",
  5546. "psr-17",
  5547. "psr-7",
  5548. "request",
  5549. "response"
  5550. ],
  5551. "support": {
  5552. "source": "https://github.com/php-fig/http-factory"
  5553. },
  5554. "time": "2024-04-15T12:06:14+00:00"
  5555. },
  5556. {
  5557. "name": "psr/http-message",
  5558. "version": "2.0",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/php-fig/http-message.git",
  5562. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5567. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5568. "shasum": ""
  5569. },
  5570. "require": {
  5571. "php": "^7.2 || ^8.0"
  5572. },
  5573. "type": "library",
  5574. "extra": {
  5575. "branch-alias": {
  5576. "dev-master": "2.0.x-dev"
  5577. }
  5578. },
  5579. "autoload": {
  5580. "psr-4": {
  5581. "Psr\\Http\\Message\\": "src/"
  5582. }
  5583. },
  5584. "notification-url": "https://packagist.org/downloads/",
  5585. "license": [
  5586. "MIT"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "PHP-FIG",
  5591. "homepage": "https://www.php-fig.org/"
  5592. }
  5593. ],
  5594. "description": "Common interface for HTTP messages",
  5595. "homepage": "https://github.com/php-fig/http-message",
  5596. "keywords": [
  5597. "http",
  5598. "http-message",
  5599. "psr",
  5600. "psr-7",
  5601. "request",
  5602. "response"
  5603. ],
  5604. "support": {
  5605. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5606. },
  5607. "time": "2023-04-04T09:54:51+00:00"
  5608. },
  5609. {
  5610. "name": "psr/http-server-handler",
  5611. "version": "1.0.2",
  5612. "source": {
  5613. "type": "git",
  5614. "url": "https://github.com/php-fig/http-server-handler.git",
  5615. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5616. },
  5617. "dist": {
  5618. "type": "zip",
  5619. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5620. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5621. "shasum": ""
  5622. },
  5623. "require": {
  5624. "php": ">=7.0",
  5625. "psr/http-message": "^1.0 || ^2.0"
  5626. },
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "1.0.x-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Psr\\Http\\Server\\": "src/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "PHP-FIG",
  5645. "homepage": "https://www.php-fig.org/"
  5646. }
  5647. ],
  5648. "description": "Common interface for HTTP server-side request handler",
  5649. "keywords": [
  5650. "handler",
  5651. "http",
  5652. "http-interop",
  5653. "psr",
  5654. "psr-15",
  5655. "psr-7",
  5656. "request",
  5657. "response",
  5658. "server"
  5659. ],
  5660. "support": {
  5661. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5662. },
  5663. "time": "2023-04-10T20:06:20+00:00"
  5664. },
  5665. {
  5666. "name": "psr/http-server-middleware",
  5667. "version": "1.0.2",
  5668. "source": {
  5669. "type": "git",
  5670. "url": "https://github.com/php-fig/http-server-middleware.git",
  5671. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5672. },
  5673. "dist": {
  5674. "type": "zip",
  5675. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5676. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5677. "shasum": ""
  5678. },
  5679. "require": {
  5680. "php": ">=7.0",
  5681. "psr/http-message": "^1.0 || ^2.0",
  5682. "psr/http-server-handler": "^1.0"
  5683. },
  5684. "type": "library",
  5685. "extra": {
  5686. "branch-alias": {
  5687. "dev-master": "1.0.x-dev"
  5688. }
  5689. },
  5690. "autoload": {
  5691. "psr-4": {
  5692. "Psr\\Http\\Server\\": "src/"
  5693. }
  5694. },
  5695. "notification-url": "https://packagist.org/downloads/",
  5696. "license": [
  5697. "MIT"
  5698. ],
  5699. "authors": [
  5700. {
  5701. "name": "PHP-FIG",
  5702. "homepage": "https://www.php-fig.org/"
  5703. }
  5704. ],
  5705. "description": "Common interface for HTTP server-side middleware",
  5706. "keywords": [
  5707. "http",
  5708. "http-interop",
  5709. "middleware",
  5710. "psr",
  5711. "psr-15",
  5712. "psr-7",
  5713. "request",
  5714. "response"
  5715. ],
  5716. "support": {
  5717. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5718. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5719. },
  5720. "time": "2023-04-11T06:14:47+00:00"
  5721. },
  5722. {
  5723. "name": "psr/log",
  5724. "version": "3.0.2",
  5725. "source": {
  5726. "type": "git",
  5727. "url": "https://github.com/php-fig/log.git",
  5728. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5729. },
  5730. "dist": {
  5731. "type": "zip",
  5732. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5733. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5734. "shasum": ""
  5735. },
  5736. "require": {
  5737. "php": ">=8.0.0"
  5738. },
  5739. "type": "library",
  5740. "extra": {
  5741. "branch-alias": {
  5742. "dev-master": "3.x-dev"
  5743. }
  5744. },
  5745. "autoload": {
  5746. "psr-4": {
  5747. "Psr\\Log\\": "src"
  5748. }
  5749. },
  5750. "notification-url": "https://packagist.org/downloads/",
  5751. "license": [
  5752. "MIT"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "PHP-FIG",
  5757. "homepage": "https://www.php-fig.org/"
  5758. }
  5759. ],
  5760. "description": "Common interface for logging libraries",
  5761. "homepage": "https://github.com/php-fig/log",
  5762. "keywords": [
  5763. "log",
  5764. "psr",
  5765. "psr-3"
  5766. ],
  5767. "support": {
  5768. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5769. },
  5770. "time": "2024-09-11T13:17:53+00:00"
  5771. },
  5772. {
  5773. "name": "psr/simple-cache",
  5774. "version": "3.0.0",
  5775. "source": {
  5776. "type": "git",
  5777. "url": "https://github.com/php-fig/simple-cache.git",
  5778. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5779. },
  5780. "dist": {
  5781. "type": "zip",
  5782. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5783. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5784. "shasum": ""
  5785. },
  5786. "require": {
  5787. "php": ">=8.0.0"
  5788. },
  5789. "type": "library",
  5790. "extra": {
  5791. "branch-alias": {
  5792. "dev-master": "3.0.x-dev"
  5793. }
  5794. },
  5795. "autoload": {
  5796. "psr-4": {
  5797. "Psr\\SimpleCache\\": "src/"
  5798. }
  5799. },
  5800. "notification-url": "https://packagist.org/downloads/",
  5801. "license": [
  5802. "MIT"
  5803. ],
  5804. "authors": [
  5805. {
  5806. "name": "PHP-FIG",
  5807. "homepage": "https://www.php-fig.org/"
  5808. }
  5809. ],
  5810. "description": "Common interfaces for simple caching",
  5811. "keywords": [
  5812. "cache",
  5813. "caching",
  5814. "psr",
  5815. "psr-16",
  5816. "simple-cache"
  5817. ],
  5818. "support": {
  5819. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5820. },
  5821. "time": "2021-10-29T13:26:27+00:00"
  5822. },
  5823. {
  5824. "name": "ralouphie/getallheaders",
  5825. "version": "3.0.3",
  5826. "source": {
  5827. "type": "git",
  5828. "url": "https://github.com/ralouphie/getallheaders.git",
  5829. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5830. },
  5831. "dist": {
  5832. "type": "zip",
  5833. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5834. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5835. "shasum": ""
  5836. },
  5837. "require": {
  5838. "php": ">=5.6"
  5839. },
  5840. "require-dev": {
  5841. "php-coveralls/php-coveralls": "^2.1",
  5842. "phpunit/phpunit": "^5 || ^6.5"
  5843. },
  5844. "type": "library",
  5845. "autoload": {
  5846. "files": [
  5847. "src/getallheaders.php"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Ralph Khattar",
  5857. "email": "ralph.khattar@gmail.com"
  5858. }
  5859. ],
  5860. "description": "A polyfill for getallheaders.",
  5861. "support": {
  5862. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5863. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5864. },
  5865. "time": "2019-03-08T08:55:37+00:00"
  5866. },
  5867. {
  5868. "name": "swow/psr7-plus",
  5869. "version": "v1.1.2",
  5870. "source": {
  5871. "type": "git",
  5872. "url": "https://github.com/swow/psr7-plus.git",
  5873. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5874. },
  5875. "dist": {
  5876. "type": "zip",
  5877. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5878. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5879. "shasum": ""
  5880. },
  5881. "require": {
  5882. "php": ">=8.0",
  5883. "psr/http-client": "^1.0",
  5884. "psr/http-factory": "^1.0",
  5885. "psr/http-message": "^1.1|^2.0"
  5886. },
  5887. "type": "library",
  5888. "autoload": {
  5889. "psr-4": {
  5890. "Swow\\Psr7\\Message\\": "src/Message/"
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "Apache-2.0"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "twose",
  5900. "email": "twosee@php.net"
  5901. }
  5902. ],
  5903. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5904. "keywords": [
  5905. "http",
  5906. "psr17",
  5907. "psr7",
  5908. "swow",
  5909. "websocket"
  5910. ],
  5911. "support": {
  5912. "issues": "https://github.com/swow/swow",
  5913. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5914. },
  5915. "time": "2023-06-15T09:18:11+00:00"
  5916. },
  5917. {
  5918. "name": "symfony/console",
  5919. "version": "v6.4.21",
  5920. "source": {
  5921. "type": "git",
  5922. "url": "https://github.com/symfony/console.git",
  5923. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719"
  5924. },
  5925. "dist": {
  5926. "type": "zip",
  5927. "url": "https://api.github.com/repos/symfony/console/zipball/a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  5928. "reference": "a3011c7b7adb58d89f6c0d822abb641d7a5f9719",
  5929. "shasum": ""
  5930. },
  5931. "require": {
  5932. "php": ">=8.1",
  5933. "symfony/deprecation-contracts": "^2.5|^3",
  5934. "symfony/polyfill-mbstring": "~1.0",
  5935. "symfony/service-contracts": "^2.5|^3",
  5936. "symfony/string": "^5.4|^6.0|^7.0"
  5937. },
  5938. "conflict": {
  5939. "symfony/dependency-injection": "<5.4",
  5940. "symfony/dotenv": "<5.4",
  5941. "symfony/event-dispatcher": "<5.4",
  5942. "symfony/lock": "<5.4",
  5943. "symfony/process": "<5.4"
  5944. },
  5945. "provide": {
  5946. "psr/log-implementation": "1.0|2.0|3.0"
  5947. },
  5948. "require-dev": {
  5949. "psr/log": "^1|^2|^3",
  5950. "symfony/config": "^5.4|^6.0|^7.0",
  5951. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5952. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5953. "symfony/http-foundation": "^6.4|^7.0",
  5954. "symfony/http-kernel": "^6.4|^7.0",
  5955. "symfony/lock": "^5.4|^6.0|^7.0",
  5956. "symfony/messenger": "^5.4|^6.0|^7.0",
  5957. "symfony/process": "^5.4|^6.0|^7.0",
  5958. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5959. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5960. },
  5961. "type": "library",
  5962. "autoload": {
  5963. "psr-4": {
  5964. "Symfony\\Component\\Console\\": ""
  5965. },
  5966. "exclude-from-classmap": [
  5967. "/Tests/"
  5968. ]
  5969. },
  5970. "notification-url": "https://packagist.org/downloads/",
  5971. "license": [
  5972. "MIT"
  5973. ],
  5974. "authors": [
  5975. {
  5976. "name": "Fabien Potencier",
  5977. "email": "fabien@symfony.com"
  5978. },
  5979. {
  5980. "name": "Symfony Community",
  5981. "homepage": "https://symfony.com/contributors"
  5982. }
  5983. ],
  5984. "description": "Eases the creation of beautiful and testable command line interfaces",
  5985. "homepage": "https://symfony.com",
  5986. "keywords": [
  5987. "cli",
  5988. "command-line",
  5989. "console",
  5990. "terminal"
  5991. ],
  5992. "support": {
  5993. "source": "https://github.com/symfony/console/tree/v6.4.21"
  5994. },
  5995. "funding": [
  5996. {
  5997. "url": "https://symfony.com/sponsor",
  5998. "type": "custom"
  5999. },
  6000. {
  6001. "url": "https://github.com/fabpot",
  6002. "type": "github"
  6003. },
  6004. {
  6005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6006. "type": "tidelift"
  6007. }
  6008. ],
  6009. "time": "2025-04-07T15:42:41+00:00"
  6010. },
  6011. {
  6012. "name": "symfony/deprecation-contracts",
  6013. "version": "v3.6.0",
  6014. "source": {
  6015. "type": "git",
  6016. "url": "https://github.com/symfony/deprecation-contracts.git",
  6017. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6018. },
  6019. "dist": {
  6020. "type": "zip",
  6021. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6022. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6023. "shasum": ""
  6024. },
  6025. "require": {
  6026. "php": ">=8.1"
  6027. },
  6028. "type": "library",
  6029. "extra": {
  6030. "thanks": {
  6031. "url": "https://github.com/symfony/contracts",
  6032. "name": "symfony/contracts"
  6033. },
  6034. "branch-alias": {
  6035. "dev-main": "3.6-dev"
  6036. }
  6037. },
  6038. "autoload": {
  6039. "files": [
  6040. "function.php"
  6041. ]
  6042. },
  6043. "notification-url": "https://packagist.org/downloads/",
  6044. "license": [
  6045. "MIT"
  6046. ],
  6047. "authors": [
  6048. {
  6049. "name": "Nicolas Grekas",
  6050. "email": "p@tchwork.com"
  6051. },
  6052. {
  6053. "name": "Symfony Community",
  6054. "homepage": "https://symfony.com/contributors"
  6055. }
  6056. ],
  6057. "description": "A generic function and convention to trigger deprecation notices",
  6058. "homepage": "https://symfony.com",
  6059. "support": {
  6060. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6061. },
  6062. "funding": [
  6063. {
  6064. "url": "https://symfony.com/sponsor",
  6065. "type": "custom"
  6066. },
  6067. {
  6068. "url": "https://github.com/fabpot",
  6069. "type": "github"
  6070. },
  6071. {
  6072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6073. "type": "tidelift"
  6074. }
  6075. ],
  6076. "time": "2024-09-25T14:21:43+00:00"
  6077. },
  6078. {
  6079. "name": "symfony/finder",
  6080. "version": "v6.4.17",
  6081. "source": {
  6082. "type": "git",
  6083. "url": "https://github.com/symfony/finder.git",
  6084. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  6085. },
  6086. "dist": {
  6087. "type": "zip",
  6088. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  6089. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  6090. "shasum": ""
  6091. },
  6092. "require": {
  6093. "php": ">=8.1"
  6094. },
  6095. "require-dev": {
  6096. "symfony/filesystem": "^6.0|^7.0"
  6097. },
  6098. "type": "library",
  6099. "autoload": {
  6100. "psr-4": {
  6101. "Symfony\\Component\\Finder\\": ""
  6102. },
  6103. "exclude-from-classmap": [
  6104. "/Tests/"
  6105. ]
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Fabien Potencier",
  6114. "email": "fabien@symfony.com"
  6115. },
  6116. {
  6117. "name": "Symfony Community",
  6118. "homepage": "https://symfony.com/contributors"
  6119. }
  6120. ],
  6121. "description": "Finds files and directories via an intuitive fluent interface",
  6122. "homepage": "https://symfony.com",
  6123. "support": {
  6124. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  6125. },
  6126. "funding": [
  6127. {
  6128. "url": "https://symfony.com/sponsor",
  6129. "type": "custom"
  6130. },
  6131. {
  6132. "url": "https://github.com/fabpot",
  6133. "type": "github"
  6134. },
  6135. {
  6136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6137. "type": "tidelift"
  6138. }
  6139. ],
  6140. "time": "2024-12-29T13:51:37+00:00"
  6141. },
  6142. {
  6143. "name": "symfony/polyfill-ctype",
  6144. "version": "v1.32.0",
  6145. "source": {
  6146. "type": "git",
  6147. "url": "https://github.com/symfony/polyfill-ctype.git",
  6148. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6149. },
  6150. "dist": {
  6151. "type": "zip",
  6152. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6153. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6154. "shasum": ""
  6155. },
  6156. "require": {
  6157. "php": ">=7.2"
  6158. },
  6159. "provide": {
  6160. "ext-ctype": "*"
  6161. },
  6162. "suggest": {
  6163. "ext-ctype": "For best performance"
  6164. },
  6165. "type": "library",
  6166. "extra": {
  6167. "thanks": {
  6168. "url": "https://github.com/symfony/polyfill",
  6169. "name": "symfony/polyfill"
  6170. }
  6171. },
  6172. "autoload": {
  6173. "files": [
  6174. "bootstrap.php"
  6175. ],
  6176. "psr-4": {
  6177. "Symfony\\Polyfill\\Ctype\\": ""
  6178. }
  6179. },
  6180. "notification-url": "https://packagist.org/downloads/",
  6181. "license": [
  6182. "MIT"
  6183. ],
  6184. "authors": [
  6185. {
  6186. "name": "Gert de Pagter",
  6187. "email": "BackEndTea@gmail.com"
  6188. },
  6189. {
  6190. "name": "Symfony Community",
  6191. "homepage": "https://symfony.com/contributors"
  6192. }
  6193. ],
  6194. "description": "Symfony polyfill for ctype functions",
  6195. "homepage": "https://symfony.com",
  6196. "keywords": [
  6197. "compatibility",
  6198. "ctype",
  6199. "polyfill",
  6200. "portable"
  6201. ],
  6202. "support": {
  6203. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  6204. },
  6205. "funding": [
  6206. {
  6207. "url": "https://symfony.com/sponsor",
  6208. "type": "custom"
  6209. },
  6210. {
  6211. "url": "https://github.com/fabpot",
  6212. "type": "github"
  6213. },
  6214. {
  6215. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6216. "type": "tidelift"
  6217. }
  6218. ],
  6219. "time": "2024-09-09T11:45:10+00:00"
  6220. },
  6221. {
  6222. "name": "symfony/polyfill-intl-grapheme",
  6223. "version": "v1.32.0",
  6224. "source": {
  6225. "type": "git",
  6226. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6227. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  6228. },
  6229. "dist": {
  6230. "type": "zip",
  6231. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6232. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  6233. "shasum": ""
  6234. },
  6235. "require": {
  6236. "php": ">=7.2"
  6237. },
  6238. "suggest": {
  6239. "ext-intl": "For best performance"
  6240. },
  6241. "type": "library",
  6242. "extra": {
  6243. "thanks": {
  6244. "url": "https://github.com/symfony/polyfill",
  6245. "name": "symfony/polyfill"
  6246. }
  6247. },
  6248. "autoload": {
  6249. "files": [
  6250. "bootstrap.php"
  6251. ],
  6252. "psr-4": {
  6253. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6254. }
  6255. },
  6256. "notification-url": "https://packagist.org/downloads/",
  6257. "license": [
  6258. "MIT"
  6259. ],
  6260. "authors": [
  6261. {
  6262. "name": "Nicolas Grekas",
  6263. "email": "p@tchwork.com"
  6264. },
  6265. {
  6266. "name": "Symfony Community",
  6267. "homepage": "https://symfony.com/contributors"
  6268. }
  6269. ],
  6270. "description": "Symfony polyfill for intl's grapheme_* functions",
  6271. "homepage": "https://symfony.com",
  6272. "keywords": [
  6273. "compatibility",
  6274. "grapheme",
  6275. "intl",
  6276. "polyfill",
  6277. "portable",
  6278. "shim"
  6279. ],
  6280. "support": {
  6281. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  6282. },
  6283. "funding": [
  6284. {
  6285. "url": "https://symfony.com/sponsor",
  6286. "type": "custom"
  6287. },
  6288. {
  6289. "url": "https://github.com/fabpot",
  6290. "type": "github"
  6291. },
  6292. {
  6293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6294. "type": "tidelift"
  6295. }
  6296. ],
  6297. "time": "2024-09-09T11:45:10+00:00"
  6298. },
  6299. {
  6300. "name": "symfony/polyfill-intl-normalizer",
  6301. "version": "v1.32.0",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6305. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6310. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6311. "shasum": ""
  6312. },
  6313. "require": {
  6314. "php": ">=7.2"
  6315. },
  6316. "suggest": {
  6317. "ext-intl": "For best performance"
  6318. },
  6319. "type": "library",
  6320. "extra": {
  6321. "thanks": {
  6322. "url": "https://github.com/symfony/polyfill",
  6323. "name": "symfony/polyfill"
  6324. }
  6325. },
  6326. "autoload": {
  6327. "files": [
  6328. "bootstrap.php"
  6329. ],
  6330. "psr-4": {
  6331. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6332. },
  6333. "classmap": [
  6334. "Resources/stubs"
  6335. ]
  6336. },
  6337. "notification-url": "https://packagist.org/downloads/",
  6338. "license": [
  6339. "MIT"
  6340. ],
  6341. "authors": [
  6342. {
  6343. "name": "Nicolas Grekas",
  6344. "email": "p@tchwork.com"
  6345. },
  6346. {
  6347. "name": "Symfony Community",
  6348. "homepage": "https://symfony.com/contributors"
  6349. }
  6350. ],
  6351. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6352. "homepage": "https://symfony.com",
  6353. "keywords": [
  6354. "compatibility",
  6355. "intl",
  6356. "normalizer",
  6357. "polyfill",
  6358. "portable",
  6359. "shim"
  6360. ],
  6361. "support": {
  6362. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6363. },
  6364. "funding": [
  6365. {
  6366. "url": "https://symfony.com/sponsor",
  6367. "type": "custom"
  6368. },
  6369. {
  6370. "url": "https://github.com/fabpot",
  6371. "type": "github"
  6372. },
  6373. {
  6374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6375. "type": "tidelift"
  6376. }
  6377. ],
  6378. "time": "2024-09-09T11:45:10+00:00"
  6379. },
  6380. {
  6381. "name": "symfony/polyfill-mbstring",
  6382. "version": "v1.32.0",
  6383. "source": {
  6384. "type": "git",
  6385. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6386. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6387. },
  6388. "dist": {
  6389. "type": "zip",
  6390. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6391. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6392. "shasum": ""
  6393. },
  6394. "require": {
  6395. "ext-iconv": "*",
  6396. "php": ">=7.2"
  6397. },
  6398. "provide": {
  6399. "ext-mbstring": "*"
  6400. },
  6401. "suggest": {
  6402. "ext-mbstring": "For best performance"
  6403. },
  6404. "type": "library",
  6405. "extra": {
  6406. "thanks": {
  6407. "url": "https://github.com/symfony/polyfill",
  6408. "name": "symfony/polyfill"
  6409. }
  6410. },
  6411. "autoload": {
  6412. "files": [
  6413. "bootstrap.php"
  6414. ],
  6415. "psr-4": {
  6416. "Symfony\\Polyfill\\Mbstring\\": ""
  6417. }
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "Nicolas Grekas",
  6426. "email": "p@tchwork.com"
  6427. },
  6428. {
  6429. "name": "Symfony Community",
  6430. "homepage": "https://symfony.com/contributors"
  6431. }
  6432. ],
  6433. "description": "Symfony polyfill for the Mbstring extension",
  6434. "homepage": "https://symfony.com",
  6435. "keywords": [
  6436. "compatibility",
  6437. "mbstring",
  6438. "polyfill",
  6439. "portable",
  6440. "shim"
  6441. ],
  6442. "support": {
  6443. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6444. },
  6445. "funding": [
  6446. {
  6447. "url": "https://symfony.com/sponsor",
  6448. "type": "custom"
  6449. },
  6450. {
  6451. "url": "https://github.com/fabpot",
  6452. "type": "github"
  6453. },
  6454. {
  6455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6456. "type": "tidelift"
  6457. }
  6458. ],
  6459. "time": "2024-12-23T08:48:59+00:00"
  6460. },
  6461. {
  6462. "name": "symfony/polyfill-php80",
  6463. "version": "v1.32.0",
  6464. "source": {
  6465. "type": "git",
  6466. "url": "https://github.com/symfony/polyfill-php80.git",
  6467. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6468. },
  6469. "dist": {
  6470. "type": "zip",
  6471. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6472. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6473. "shasum": ""
  6474. },
  6475. "require": {
  6476. "php": ">=7.2"
  6477. },
  6478. "type": "library",
  6479. "extra": {
  6480. "thanks": {
  6481. "url": "https://github.com/symfony/polyfill",
  6482. "name": "symfony/polyfill"
  6483. }
  6484. },
  6485. "autoload": {
  6486. "files": [
  6487. "bootstrap.php"
  6488. ],
  6489. "psr-4": {
  6490. "Symfony\\Polyfill\\Php80\\": ""
  6491. },
  6492. "classmap": [
  6493. "Resources/stubs"
  6494. ]
  6495. },
  6496. "notification-url": "https://packagist.org/downloads/",
  6497. "license": [
  6498. "MIT"
  6499. ],
  6500. "authors": [
  6501. {
  6502. "name": "Ion Bazan",
  6503. "email": "ion.bazan@gmail.com"
  6504. },
  6505. {
  6506. "name": "Nicolas Grekas",
  6507. "email": "p@tchwork.com"
  6508. },
  6509. {
  6510. "name": "Symfony Community",
  6511. "homepage": "https://symfony.com/contributors"
  6512. }
  6513. ],
  6514. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6515. "homepage": "https://symfony.com",
  6516. "keywords": [
  6517. "compatibility",
  6518. "polyfill",
  6519. "portable",
  6520. "shim"
  6521. ],
  6522. "support": {
  6523. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6524. },
  6525. "funding": [
  6526. {
  6527. "url": "https://symfony.com/sponsor",
  6528. "type": "custom"
  6529. },
  6530. {
  6531. "url": "https://github.com/fabpot",
  6532. "type": "github"
  6533. },
  6534. {
  6535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6536. "type": "tidelift"
  6537. }
  6538. ],
  6539. "time": "2025-01-02T08:10:11+00:00"
  6540. },
  6541. {
  6542. "name": "symfony/service-contracts",
  6543. "version": "v3.6.0",
  6544. "source": {
  6545. "type": "git",
  6546. "url": "https://github.com/symfony/service-contracts.git",
  6547. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6548. },
  6549. "dist": {
  6550. "type": "zip",
  6551. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6552. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6553. "shasum": ""
  6554. },
  6555. "require": {
  6556. "php": ">=8.1",
  6557. "psr/container": "^1.1|^2.0",
  6558. "symfony/deprecation-contracts": "^2.5|^3"
  6559. },
  6560. "conflict": {
  6561. "ext-psr": "<1.1|>=2"
  6562. },
  6563. "type": "library",
  6564. "extra": {
  6565. "thanks": {
  6566. "url": "https://github.com/symfony/contracts",
  6567. "name": "symfony/contracts"
  6568. },
  6569. "branch-alias": {
  6570. "dev-main": "3.6-dev"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "psr-4": {
  6575. "Symfony\\Contracts\\Service\\": ""
  6576. },
  6577. "exclude-from-classmap": [
  6578. "/Test/"
  6579. ]
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "MIT"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Nicolas Grekas",
  6588. "email": "p@tchwork.com"
  6589. },
  6590. {
  6591. "name": "Symfony Community",
  6592. "homepage": "https://symfony.com/contributors"
  6593. }
  6594. ],
  6595. "description": "Generic abstractions related to writing services",
  6596. "homepage": "https://symfony.com",
  6597. "keywords": [
  6598. "abstractions",
  6599. "contracts",
  6600. "decoupling",
  6601. "interfaces",
  6602. "interoperability",
  6603. "standards"
  6604. ],
  6605. "support": {
  6606. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6607. },
  6608. "funding": [
  6609. {
  6610. "url": "https://symfony.com/sponsor",
  6611. "type": "custom"
  6612. },
  6613. {
  6614. "url": "https://github.com/fabpot",
  6615. "type": "github"
  6616. },
  6617. {
  6618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6619. "type": "tidelift"
  6620. }
  6621. ],
  6622. "time": "2025-04-25T09:37:31+00:00"
  6623. },
  6624. {
  6625. "name": "symfony/string",
  6626. "version": "v6.4.21",
  6627. "source": {
  6628. "type": "git",
  6629. "url": "https://github.com/symfony/string.git",
  6630. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  6631. },
  6632. "dist": {
  6633. "type": "zip",
  6634. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  6635. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  6636. "shasum": ""
  6637. },
  6638. "require": {
  6639. "php": ">=8.1",
  6640. "symfony/polyfill-ctype": "~1.8",
  6641. "symfony/polyfill-intl-grapheme": "~1.0",
  6642. "symfony/polyfill-intl-normalizer": "~1.0",
  6643. "symfony/polyfill-mbstring": "~1.0"
  6644. },
  6645. "conflict": {
  6646. "symfony/translation-contracts": "<2.5"
  6647. },
  6648. "require-dev": {
  6649. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6650. "symfony/http-client": "^5.4|^6.0|^7.0",
  6651. "symfony/intl": "^6.2|^7.0",
  6652. "symfony/translation-contracts": "^2.5|^3.0",
  6653. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6654. },
  6655. "type": "library",
  6656. "autoload": {
  6657. "files": [
  6658. "Resources/functions.php"
  6659. ],
  6660. "psr-4": {
  6661. "Symfony\\Component\\String\\": ""
  6662. },
  6663. "exclude-from-classmap": [
  6664. "/Tests/"
  6665. ]
  6666. },
  6667. "notification-url": "https://packagist.org/downloads/",
  6668. "license": [
  6669. "MIT"
  6670. ],
  6671. "authors": [
  6672. {
  6673. "name": "Nicolas Grekas",
  6674. "email": "p@tchwork.com"
  6675. },
  6676. {
  6677. "name": "Symfony Community",
  6678. "homepage": "https://symfony.com/contributors"
  6679. }
  6680. ],
  6681. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6682. "homepage": "https://symfony.com",
  6683. "keywords": [
  6684. "grapheme",
  6685. "i18n",
  6686. "string",
  6687. "unicode",
  6688. "utf-8",
  6689. "utf8"
  6690. ],
  6691. "support": {
  6692. "source": "https://github.com/symfony/string/tree/v6.4.21"
  6693. },
  6694. "funding": [
  6695. {
  6696. "url": "https://symfony.com/sponsor",
  6697. "type": "custom"
  6698. },
  6699. {
  6700. "url": "https://github.com/fabpot",
  6701. "type": "github"
  6702. },
  6703. {
  6704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6705. "type": "tidelift"
  6706. }
  6707. ],
  6708. "time": "2025-04-18T15:23:29+00:00"
  6709. },
  6710. {
  6711. "name": "symfony/translation",
  6712. "version": "v6.4.21",
  6713. "source": {
  6714. "type": "git",
  6715. "url": "https://github.com/symfony/translation.git",
  6716. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c"
  6717. },
  6718. "dist": {
  6719. "type": "zip",
  6720. "url": "https://api.github.com/repos/symfony/translation/zipball/bb92ea5588396b319ba43283a5a3087a034cb29c",
  6721. "reference": "bb92ea5588396b319ba43283a5a3087a034cb29c",
  6722. "shasum": ""
  6723. },
  6724. "require": {
  6725. "php": ">=8.1",
  6726. "symfony/deprecation-contracts": "^2.5|^3",
  6727. "symfony/polyfill-mbstring": "~1.0",
  6728. "symfony/translation-contracts": "^2.5|^3.0"
  6729. },
  6730. "conflict": {
  6731. "symfony/config": "<5.4",
  6732. "symfony/console": "<5.4",
  6733. "symfony/dependency-injection": "<5.4",
  6734. "symfony/http-client-contracts": "<2.5",
  6735. "symfony/http-kernel": "<5.4",
  6736. "symfony/service-contracts": "<2.5",
  6737. "symfony/twig-bundle": "<5.4",
  6738. "symfony/yaml": "<5.4"
  6739. },
  6740. "provide": {
  6741. "symfony/translation-implementation": "2.3|3.0"
  6742. },
  6743. "require-dev": {
  6744. "nikic/php-parser": "^4.18|^5.0",
  6745. "psr/log": "^1|^2|^3",
  6746. "symfony/config": "^5.4|^6.0|^7.0",
  6747. "symfony/console": "^5.4|^6.0|^7.0",
  6748. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6749. "symfony/finder": "^5.4|^6.0|^7.0",
  6750. "symfony/http-client-contracts": "^2.5|^3.0",
  6751. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6752. "symfony/intl": "^5.4|^6.0|^7.0",
  6753. "symfony/polyfill-intl-icu": "^1.21",
  6754. "symfony/routing": "^5.4|^6.0|^7.0",
  6755. "symfony/service-contracts": "^2.5|^3",
  6756. "symfony/yaml": "^5.4|^6.0|^7.0"
  6757. },
  6758. "type": "library",
  6759. "autoload": {
  6760. "files": [
  6761. "Resources/functions.php"
  6762. ],
  6763. "psr-4": {
  6764. "Symfony\\Component\\Translation\\": ""
  6765. },
  6766. "exclude-from-classmap": [
  6767. "/Tests/"
  6768. ]
  6769. },
  6770. "notification-url": "https://packagist.org/downloads/",
  6771. "license": [
  6772. "MIT"
  6773. ],
  6774. "authors": [
  6775. {
  6776. "name": "Fabien Potencier",
  6777. "email": "fabien@symfony.com"
  6778. },
  6779. {
  6780. "name": "Symfony Community",
  6781. "homepage": "https://symfony.com/contributors"
  6782. }
  6783. ],
  6784. "description": "Provides tools to internationalize your application",
  6785. "homepage": "https://symfony.com",
  6786. "support": {
  6787. "source": "https://github.com/symfony/translation/tree/v6.4.21"
  6788. },
  6789. "funding": [
  6790. {
  6791. "url": "https://symfony.com/sponsor",
  6792. "type": "custom"
  6793. },
  6794. {
  6795. "url": "https://github.com/fabpot",
  6796. "type": "github"
  6797. },
  6798. {
  6799. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6800. "type": "tidelift"
  6801. }
  6802. ],
  6803. "time": "2025-04-07T19:02:30+00:00"
  6804. },
  6805. {
  6806. "name": "symfony/translation-contracts",
  6807. "version": "v3.6.0",
  6808. "source": {
  6809. "type": "git",
  6810. "url": "https://github.com/symfony/translation-contracts.git",
  6811. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6812. },
  6813. "dist": {
  6814. "type": "zip",
  6815. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6816. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6817. "shasum": ""
  6818. },
  6819. "require": {
  6820. "php": ">=8.1"
  6821. },
  6822. "type": "library",
  6823. "extra": {
  6824. "thanks": {
  6825. "url": "https://github.com/symfony/contracts",
  6826. "name": "symfony/contracts"
  6827. },
  6828. "branch-alias": {
  6829. "dev-main": "3.6-dev"
  6830. }
  6831. },
  6832. "autoload": {
  6833. "psr-4": {
  6834. "Symfony\\Contracts\\Translation\\": ""
  6835. },
  6836. "exclude-from-classmap": [
  6837. "/Test/"
  6838. ]
  6839. },
  6840. "notification-url": "https://packagist.org/downloads/",
  6841. "license": [
  6842. "MIT"
  6843. ],
  6844. "authors": [
  6845. {
  6846. "name": "Nicolas Grekas",
  6847. "email": "p@tchwork.com"
  6848. },
  6849. {
  6850. "name": "Symfony Community",
  6851. "homepage": "https://symfony.com/contributors"
  6852. }
  6853. ],
  6854. "description": "Generic abstractions related to translation",
  6855. "homepage": "https://symfony.com",
  6856. "keywords": [
  6857. "abstractions",
  6858. "contracts",
  6859. "decoupling",
  6860. "interfaces",
  6861. "interoperability",
  6862. "standards"
  6863. ],
  6864. "support": {
  6865. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6866. },
  6867. "funding": [
  6868. {
  6869. "url": "https://symfony.com/sponsor",
  6870. "type": "custom"
  6871. },
  6872. {
  6873. "url": "https://github.com/fabpot",
  6874. "type": "github"
  6875. },
  6876. {
  6877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6878. "type": "tidelift"
  6879. }
  6880. ],
  6881. "time": "2024-09-27T08:32:26+00:00"
  6882. },
  6883. {
  6884. "name": "vlucas/phpdotenv",
  6885. "version": "v5.6.2",
  6886. "source": {
  6887. "type": "git",
  6888. "url": "https://github.com/vlucas/phpdotenv.git",
  6889. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  6890. },
  6891. "dist": {
  6892. "type": "zip",
  6893. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6894. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  6895. "shasum": ""
  6896. },
  6897. "require": {
  6898. "ext-pcre": "*",
  6899. "graham-campbell/result-type": "^1.1.3",
  6900. "php": "^7.2.5 || ^8.0",
  6901. "phpoption/phpoption": "^1.9.3",
  6902. "symfony/polyfill-ctype": "^1.24",
  6903. "symfony/polyfill-mbstring": "^1.24",
  6904. "symfony/polyfill-php80": "^1.24"
  6905. },
  6906. "require-dev": {
  6907. "bamarni/composer-bin-plugin": "^1.8.2",
  6908. "ext-filter": "*",
  6909. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6910. },
  6911. "suggest": {
  6912. "ext-filter": "Required to use the boolean validator."
  6913. },
  6914. "type": "library",
  6915. "extra": {
  6916. "bamarni-bin": {
  6917. "bin-links": true,
  6918. "forward-command": false
  6919. },
  6920. "branch-alias": {
  6921. "dev-master": "5.6-dev"
  6922. }
  6923. },
  6924. "autoload": {
  6925. "psr-4": {
  6926. "Dotenv\\": "src/"
  6927. }
  6928. },
  6929. "notification-url": "https://packagist.org/downloads/",
  6930. "license": [
  6931. "BSD-3-Clause"
  6932. ],
  6933. "authors": [
  6934. {
  6935. "name": "Graham Campbell",
  6936. "email": "hello@gjcampbell.co.uk",
  6937. "homepage": "https://github.com/GrahamCampbell"
  6938. },
  6939. {
  6940. "name": "Vance Lucas",
  6941. "email": "vance@vancelucas.com",
  6942. "homepage": "https://github.com/vlucas"
  6943. }
  6944. ],
  6945. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6946. "keywords": [
  6947. "dotenv",
  6948. "env",
  6949. "environment"
  6950. ],
  6951. "support": {
  6952. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6953. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  6954. },
  6955. "funding": [
  6956. {
  6957. "url": "https://github.com/GrahamCampbell",
  6958. "type": "github"
  6959. },
  6960. {
  6961. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6962. "type": "tidelift"
  6963. }
  6964. ],
  6965. "time": "2025-04-30T23:37:27+00:00"
  6966. }
  6967. ],
  6968. "packages-dev": [
  6969. {
  6970. "name": "clue/ndjson-react",
  6971. "version": "v1.3.0",
  6972. "source": {
  6973. "type": "git",
  6974. "url": "https://github.com/clue/reactphp-ndjson.git",
  6975. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6976. },
  6977. "dist": {
  6978. "type": "zip",
  6979. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6980. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6981. "shasum": ""
  6982. },
  6983. "require": {
  6984. "php": ">=5.3",
  6985. "react/stream": "^1.2"
  6986. },
  6987. "require-dev": {
  6988. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6989. "react/event-loop": "^1.2"
  6990. },
  6991. "type": "library",
  6992. "autoload": {
  6993. "psr-4": {
  6994. "Clue\\React\\NDJson\\": "src/"
  6995. }
  6996. },
  6997. "notification-url": "https://packagist.org/downloads/",
  6998. "license": [
  6999. "MIT"
  7000. ],
  7001. "authors": [
  7002. {
  7003. "name": "Christian Lück",
  7004. "email": "christian@clue.engineering"
  7005. }
  7006. ],
  7007. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7008. "homepage": "https://github.com/clue/reactphp-ndjson",
  7009. "keywords": [
  7010. "NDJSON",
  7011. "json",
  7012. "jsonlines",
  7013. "newline",
  7014. "reactphp",
  7015. "streaming"
  7016. ],
  7017. "support": {
  7018. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7019. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7020. },
  7021. "funding": [
  7022. {
  7023. "url": "https://clue.engineering/support",
  7024. "type": "custom"
  7025. },
  7026. {
  7027. "url": "https://github.com/clue",
  7028. "type": "github"
  7029. }
  7030. ],
  7031. "time": "2022-12-23T10:58:28+00:00"
  7032. },
  7033. {
  7034. "name": "composer/pcre",
  7035. "version": "3.3.2",
  7036. "source": {
  7037. "type": "git",
  7038. "url": "https://github.com/composer/pcre.git",
  7039. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  7040. },
  7041. "dist": {
  7042. "type": "zip",
  7043. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7044. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  7045. "shasum": ""
  7046. },
  7047. "require": {
  7048. "php": "^7.4 || ^8.0"
  7049. },
  7050. "conflict": {
  7051. "phpstan/phpstan": "<1.11.10"
  7052. },
  7053. "require-dev": {
  7054. "phpstan/phpstan": "^1.12 || ^2",
  7055. "phpstan/phpstan-strict-rules": "^1 || ^2",
  7056. "phpunit/phpunit": "^8 || ^9"
  7057. },
  7058. "type": "library",
  7059. "extra": {
  7060. "phpstan": {
  7061. "includes": [
  7062. "extension.neon"
  7063. ]
  7064. },
  7065. "branch-alias": {
  7066. "dev-main": "3.x-dev"
  7067. }
  7068. },
  7069. "autoload": {
  7070. "psr-4": {
  7071. "Composer\\Pcre\\": "src"
  7072. }
  7073. },
  7074. "notification-url": "https://packagist.org/downloads/",
  7075. "license": [
  7076. "MIT"
  7077. ],
  7078. "authors": [
  7079. {
  7080. "name": "Jordi Boggiano",
  7081. "email": "j.boggiano@seld.be",
  7082. "homepage": "http://seld.be"
  7083. }
  7084. ],
  7085. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  7086. "keywords": [
  7087. "PCRE",
  7088. "preg",
  7089. "regex",
  7090. "regular expression"
  7091. ],
  7092. "support": {
  7093. "issues": "https://github.com/composer/pcre/issues",
  7094. "source": "https://github.com/composer/pcre/tree/3.3.2"
  7095. },
  7096. "funding": [
  7097. {
  7098. "url": "https://packagist.com",
  7099. "type": "custom"
  7100. },
  7101. {
  7102. "url": "https://github.com/composer",
  7103. "type": "github"
  7104. },
  7105. {
  7106. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7107. "type": "tidelift"
  7108. }
  7109. ],
  7110. "time": "2024-11-12T16:29:46+00:00"
  7111. },
  7112. {
  7113. "name": "composer/semver",
  7114. "version": "3.4.3",
  7115. "source": {
  7116. "type": "git",
  7117. "url": "https://github.com/composer/semver.git",
  7118. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  7119. },
  7120. "dist": {
  7121. "type": "zip",
  7122. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7123. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  7124. "shasum": ""
  7125. },
  7126. "require": {
  7127. "php": "^5.3.2 || ^7.0 || ^8.0"
  7128. },
  7129. "require-dev": {
  7130. "phpstan/phpstan": "^1.11",
  7131. "symfony/phpunit-bridge": "^3 || ^7"
  7132. },
  7133. "type": "library",
  7134. "extra": {
  7135. "branch-alias": {
  7136. "dev-main": "3.x-dev"
  7137. }
  7138. },
  7139. "autoload": {
  7140. "psr-4": {
  7141. "Composer\\Semver\\": "src"
  7142. }
  7143. },
  7144. "notification-url": "https://packagist.org/downloads/",
  7145. "license": [
  7146. "MIT"
  7147. ],
  7148. "authors": [
  7149. {
  7150. "name": "Nils Adermann",
  7151. "email": "naderman@naderman.de",
  7152. "homepage": "http://www.naderman.de"
  7153. },
  7154. {
  7155. "name": "Jordi Boggiano",
  7156. "email": "j.boggiano@seld.be",
  7157. "homepage": "http://seld.be"
  7158. },
  7159. {
  7160. "name": "Rob Bast",
  7161. "email": "rob.bast@gmail.com",
  7162. "homepage": "http://robbast.nl"
  7163. }
  7164. ],
  7165. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7166. "keywords": [
  7167. "semantic",
  7168. "semver",
  7169. "validation",
  7170. "versioning"
  7171. ],
  7172. "support": {
  7173. "irc": "ircs://irc.libera.chat:6697/composer",
  7174. "issues": "https://github.com/composer/semver/issues",
  7175. "source": "https://github.com/composer/semver/tree/3.4.3"
  7176. },
  7177. "funding": [
  7178. {
  7179. "url": "https://packagist.com",
  7180. "type": "custom"
  7181. },
  7182. {
  7183. "url": "https://github.com/composer",
  7184. "type": "github"
  7185. },
  7186. {
  7187. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7188. "type": "tidelift"
  7189. }
  7190. ],
  7191. "time": "2024-09-19T14:15:21+00:00"
  7192. },
  7193. {
  7194. "name": "composer/xdebug-handler",
  7195. "version": "3.0.5",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://github.com/composer/xdebug-handler.git",
  7199. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  7200. },
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  7204. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  7205. "shasum": ""
  7206. },
  7207. "require": {
  7208. "composer/pcre": "^1 || ^2 || ^3",
  7209. "php": "^7.2.5 || ^8.0",
  7210. "psr/log": "^1 || ^2 || ^3"
  7211. },
  7212. "require-dev": {
  7213. "phpstan/phpstan": "^1.0",
  7214. "phpstan/phpstan-strict-rules": "^1.1",
  7215. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7216. },
  7217. "type": "library",
  7218. "autoload": {
  7219. "psr-4": {
  7220. "Composer\\XdebugHandler\\": "src"
  7221. }
  7222. },
  7223. "notification-url": "https://packagist.org/downloads/",
  7224. "license": [
  7225. "MIT"
  7226. ],
  7227. "authors": [
  7228. {
  7229. "name": "John Stevenson",
  7230. "email": "john-stevenson@blueyonder.co.uk"
  7231. }
  7232. ],
  7233. "description": "Restarts a process without Xdebug.",
  7234. "keywords": [
  7235. "Xdebug",
  7236. "performance"
  7237. ],
  7238. "support": {
  7239. "irc": "ircs://irc.libera.chat:6697/composer",
  7240. "issues": "https://github.com/composer/xdebug-handler/issues",
  7241. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  7242. },
  7243. "funding": [
  7244. {
  7245. "url": "https://packagist.com",
  7246. "type": "custom"
  7247. },
  7248. {
  7249. "url": "https://github.com/composer",
  7250. "type": "github"
  7251. },
  7252. {
  7253. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7254. "type": "tidelift"
  7255. }
  7256. ],
  7257. "time": "2024-05-06T16:37:16+00:00"
  7258. },
  7259. {
  7260. "name": "evenement/evenement",
  7261. "version": "v3.0.2",
  7262. "source": {
  7263. "type": "git",
  7264. "url": "https://github.com/igorw/evenement.git",
  7265. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  7266. },
  7267. "dist": {
  7268. "type": "zip",
  7269. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7270. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  7271. "shasum": ""
  7272. },
  7273. "require": {
  7274. "php": ">=7.0"
  7275. },
  7276. "require-dev": {
  7277. "phpunit/phpunit": "^9 || ^6"
  7278. },
  7279. "type": "library",
  7280. "autoload": {
  7281. "psr-4": {
  7282. "Evenement\\": "src/"
  7283. }
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Igor Wiedler",
  7292. "email": "igor@wiedler.ch"
  7293. }
  7294. ],
  7295. "description": "Événement is a very simple event dispatching library for PHP",
  7296. "keywords": [
  7297. "event-dispatcher",
  7298. "event-emitter"
  7299. ],
  7300. "support": {
  7301. "issues": "https://github.com/igorw/evenement/issues",
  7302. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  7303. },
  7304. "time": "2023-08-08T05:53:35+00:00"
  7305. },
  7306. {
  7307. "name": "fidry/cpu-core-counter",
  7308. "version": "1.2.0",
  7309. "source": {
  7310. "type": "git",
  7311. "url": "https://github.com/theofidry/cpu-core-counter.git",
  7312. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  7313. },
  7314. "dist": {
  7315. "type": "zip",
  7316. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  7317. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  7318. "shasum": ""
  7319. },
  7320. "require": {
  7321. "php": "^7.2 || ^8.0"
  7322. },
  7323. "require-dev": {
  7324. "fidry/makefile": "^0.2.0",
  7325. "fidry/php-cs-fixer-config": "^1.1.2",
  7326. "phpstan/extension-installer": "^1.2.0",
  7327. "phpstan/phpstan": "^1.9.2",
  7328. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  7329. "phpstan/phpstan-phpunit": "^1.2.2",
  7330. "phpstan/phpstan-strict-rules": "^1.4.4",
  7331. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  7332. "webmozarts/strict-phpunit": "^7.5"
  7333. },
  7334. "type": "library",
  7335. "autoload": {
  7336. "psr-4": {
  7337. "Fidry\\CpuCoreCounter\\": "src/"
  7338. }
  7339. },
  7340. "notification-url": "https://packagist.org/downloads/",
  7341. "license": [
  7342. "MIT"
  7343. ],
  7344. "authors": [
  7345. {
  7346. "name": "Théo FIDRY",
  7347. "email": "theo.fidry@gmail.com"
  7348. }
  7349. ],
  7350. "description": "Tiny utility to get the number of CPU cores.",
  7351. "keywords": [
  7352. "CPU",
  7353. "core"
  7354. ],
  7355. "support": {
  7356. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  7357. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  7358. },
  7359. "funding": [
  7360. {
  7361. "url": "https://github.com/theofidry",
  7362. "type": "github"
  7363. }
  7364. ],
  7365. "time": "2024-08-06T10:04:20+00:00"
  7366. },
  7367. {
  7368. "name": "friendsofphp/php-cs-fixer",
  7369. "version": "v3.75.0",
  7370. "source": {
  7371. "type": "git",
  7372. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7373. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c"
  7374. },
  7375. "dist": {
  7376. "type": "zip",
  7377. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/399a128ff2fdaf4281e4e79b755693286cdf325c",
  7378. "reference": "399a128ff2fdaf4281e4e79b755693286cdf325c",
  7379. "shasum": ""
  7380. },
  7381. "require": {
  7382. "clue/ndjson-react": "^1.0",
  7383. "composer/semver": "^3.4",
  7384. "composer/xdebug-handler": "^3.0.3",
  7385. "ext-filter": "*",
  7386. "ext-hash": "*",
  7387. "ext-json": "*",
  7388. "ext-tokenizer": "*",
  7389. "fidry/cpu-core-counter": "^1.2",
  7390. "php": "^7.4 || ^8.0",
  7391. "react/child-process": "^0.6.5",
  7392. "react/event-loop": "^1.0",
  7393. "react/promise": "^2.0 || ^3.0",
  7394. "react/socket": "^1.0",
  7395. "react/stream": "^1.0",
  7396. "sebastian/diff": "^4.0 || ^5.1 || ^6.0 || ^7.0",
  7397. "symfony/console": "^5.4 || ^6.4 || ^7.0",
  7398. "symfony/event-dispatcher": "^5.4 || ^6.4 || ^7.0",
  7399. "symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
  7400. "symfony/finder": "^5.4 || ^6.4 || ^7.0",
  7401. "symfony/options-resolver": "^5.4 || ^6.4 || ^7.0",
  7402. "symfony/polyfill-mbstring": "^1.31",
  7403. "symfony/polyfill-php80": "^1.31",
  7404. "symfony/polyfill-php81": "^1.31",
  7405. "symfony/process": "^5.4 || ^6.4 || ^7.2",
  7406. "symfony/stopwatch": "^5.4 || ^6.4 || ^7.0"
  7407. },
  7408. "require-dev": {
  7409. "facile-it/paraunit": "^1.3.1 || ^2.6",
  7410. "infection/infection": "^0.29.14",
  7411. "justinrainbow/json-schema": "^5.3 || ^6.2",
  7412. "keradus/cli-executor": "^2.1",
  7413. "mikey179/vfsstream": "^1.6.12",
  7414. "php-coveralls/php-coveralls": "^2.7",
  7415. "php-cs-fixer/accessible-object": "^1.1",
  7416. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.6",
  7417. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.6",
  7418. "phpunit/phpunit": "^9.6.22 || ^10.5.45 || ^11.5.12",
  7419. "symfony/var-dumper": "^5.4.48 || ^6.4.18 || ^7.2.3",
  7420. "symfony/yaml": "^5.4.45 || ^6.4.18 || ^7.2.3"
  7421. },
  7422. "suggest": {
  7423. "ext-dom": "For handling output formats in XML",
  7424. "ext-mbstring": "For handling non-UTF8 characters."
  7425. },
  7426. "bin": [
  7427. "php-cs-fixer"
  7428. ],
  7429. "type": "application",
  7430. "autoload": {
  7431. "psr-4": {
  7432. "PhpCsFixer\\": "src/"
  7433. },
  7434. "exclude-from-classmap": [
  7435. "src/Fixer/Internal/*"
  7436. ]
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "MIT"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Fabien Potencier",
  7445. "email": "fabien@symfony.com"
  7446. },
  7447. {
  7448. "name": "Dariusz Rumiński",
  7449. "email": "dariusz.ruminski@gmail.com"
  7450. }
  7451. ],
  7452. "description": "A tool to automatically fix PHP code style",
  7453. "keywords": [
  7454. "Static code analysis",
  7455. "fixer",
  7456. "standards",
  7457. "static analysis"
  7458. ],
  7459. "support": {
  7460. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7461. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.75.0"
  7462. },
  7463. "funding": [
  7464. {
  7465. "url": "https://github.com/keradus",
  7466. "type": "github"
  7467. }
  7468. ],
  7469. "time": "2025-03-31T18:40:42+00:00"
  7470. },
  7471. {
  7472. "name": "hamcrest/hamcrest-php",
  7473. "version": "v2.1.1",
  7474. "source": {
  7475. "type": "git",
  7476. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7477. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  7478. },
  7479. "dist": {
  7480. "type": "zip",
  7481. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  7482. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  7483. "shasum": ""
  7484. },
  7485. "require": {
  7486. "php": "^7.4|^8.0"
  7487. },
  7488. "replace": {
  7489. "cordoval/hamcrest-php": "*",
  7490. "davedevelopment/hamcrest-php": "*",
  7491. "kodova/hamcrest-php": "*"
  7492. },
  7493. "require-dev": {
  7494. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  7495. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  7496. },
  7497. "type": "library",
  7498. "extra": {
  7499. "branch-alias": {
  7500. "dev-master": "2.1-dev"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "classmap": [
  7505. "hamcrest"
  7506. ]
  7507. },
  7508. "notification-url": "https://packagist.org/downloads/",
  7509. "license": [
  7510. "BSD-3-Clause"
  7511. ],
  7512. "description": "This is the PHP port of Hamcrest Matchers",
  7513. "keywords": [
  7514. "test"
  7515. ],
  7516. "support": {
  7517. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7518. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  7519. },
  7520. "time": "2025-04-30T06:54:44+00:00"
  7521. },
  7522. {
  7523. "name": "hyperf/devtool",
  7524. "version": "v3.1.51",
  7525. "source": {
  7526. "type": "git",
  7527. "url": "https://github.com/hyperf/devtool.git",
  7528. "reference": "b032916fa51293f894046754f596f7d6d71352df"
  7529. },
  7530. "dist": {
  7531. "type": "zip",
  7532. "url": "https://api.github.com/repos/hyperf/devtool/zipball/b032916fa51293f894046754f596f7d6d71352df",
  7533. "reference": "b032916fa51293f894046754f596f7d6d71352df",
  7534. "shasum": ""
  7535. },
  7536. "require": {
  7537. "hyperf/code-parser": "~3.1.0",
  7538. "hyperf/command": "~3.1.0",
  7539. "hyperf/contract": "~3.1.0",
  7540. "hyperf/di": "~3.1.0",
  7541. "hyperf/support": "~3.1.0",
  7542. "hyperf/utils": "~3.1.0",
  7543. "php": ">=8.1"
  7544. },
  7545. "type": "library",
  7546. "extra": {
  7547. "hyperf": {
  7548. "config": "Hyperf\\Devtool\\ConfigProvider"
  7549. },
  7550. "branch-alias": {
  7551. "dev-master": "3.1-dev"
  7552. }
  7553. },
  7554. "autoload": {
  7555. "psr-4": {
  7556. "Hyperf\\Devtool\\": "src/"
  7557. }
  7558. },
  7559. "notification-url": "https://packagist.org/downloads/",
  7560. "license": [
  7561. "MIT"
  7562. ],
  7563. "description": "A Devtool for Hyperf.",
  7564. "homepage": "https://hyperf.io",
  7565. "keywords": [
  7566. "dev",
  7567. "devtool",
  7568. "hyperf",
  7569. "php",
  7570. "swoole"
  7571. ],
  7572. "support": {
  7573. "docs": "https://hyperf.wiki",
  7574. "issues": "https://github.com/hyperf/hyperf/issues",
  7575. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7576. "source": "https://github.com/hyperf/hyperf"
  7577. },
  7578. "funding": [
  7579. {
  7580. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7581. "type": "custom"
  7582. },
  7583. {
  7584. "url": "https://opencollective.com/hyperf",
  7585. "type": "open_collective"
  7586. }
  7587. ],
  7588. "time": "2025-02-06T06:42:00+00:00"
  7589. },
  7590. {
  7591. "name": "hyperf/testing",
  7592. "version": "v3.1.55",
  7593. "source": {
  7594. "type": "git",
  7595. "url": "https://github.com/hyperf/testing.git",
  7596. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db"
  7597. },
  7598. "dist": {
  7599. "type": "zip",
  7600. "url": "https://api.github.com/repos/hyperf/testing/zipball/f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7601. "reference": "f7daebdcc7aa4520acf61689f7e2e4049e9247db",
  7602. "shasum": ""
  7603. },
  7604. "require": {
  7605. "hyperf/codec": "~3.1.0",
  7606. "hyperf/collection": "~3.1.0",
  7607. "hyperf/contract": "~3.1.0",
  7608. "hyperf/coroutine": "~3.1.0",
  7609. "hyperf/http-message": "~3.1.0",
  7610. "hyperf/http-server": "~3.1.0",
  7611. "hyperf/support": "~3.1.0",
  7612. "hyperf/utils": "~3.1.0",
  7613. "php": ">=8.1",
  7614. "phpunit/phpunit": "^10.0",
  7615. "psr/container": "^1.0 || ^2.0",
  7616. "symfony/http-foundation": "^5.4 || ^6.0"
  7617. },
  7618. "suggest": {
  7619. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7620. },
  7621. "bin": [
  7622. "co-phpunit"
  7623. ],
  7624. "type": "library",
  7625. "extra": {
  7626. "branch-alias": {
  7627. "dev-master": "3.1-dev"
  7628. }
  7629. },
  7630. "autoload": {
  7631. "psr-4": {
  7632. "Hyperf\\Testing\\": "src/"
  7633. }
  7634. },
  7635. "notification-url": "https://packagist.org/downloads/",
  7636. "license": [
  7637. "MIT"
  7638. ],
  7639. "description": "Testing for hyperf",
  7640. "keywords": [
  7641. "dev",
  7642. "php",
  7643. "swoole",
  7644. "testing"
  7645. ],
  7646. "support": {
  7647. "source": "https://github.com/hyperf/testing/tree/v3.1.55"
  7648. },
  7649. "funding": [
  7650. {
  7651. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7652. "type": "custom"
  7653. },
  7654. {
  7655. "url": "https://opencollective.com/hyperf",
  7656. "type": "open_collective"
  7657. }
  7658. ],
  7659. "time": "2025-05-02T14:13:24+00:00"
  7660. },
  7661. {
  7662. "name": "hyperf/watcher",
  7663. "version": "v3.1.54",
  7664. "source": {
  7665. "type": "git",
  7666. "url": "https://github.com/hyperf/watcher.git",
  7667. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70"
  7668. },
  7669. "dist": {
  7670. "type": "zip",
  7671. "url": "https://api.github.com/repos/hyperf/watcher/zipball/c92dc6bd94c6e2369a3de262a700550427041b70",
  7672. "reference": "c92dc6bd94c6e2369a3de262a700550427041b70",
  7673. "shasum": ""
  7674. },
  7675. "require": {
  7676. "ext-posix": "*",
  7677. "hyperf/codec": "~3.1.0",
  7678. "hyperf/command": "~3.1.0",
  7679. "hyperf/di": "~3.1.0",
  7680. "hyperf/framework": "~3.1.0",
  7681. "hyperf/support": "~3.1.0",
  7682. "php": ">=8.1"
  7683. },
  7684. "type": "library",
  7685. "extra": {
  7686. "hyperf": {
  7687. "config": "Hyperf\\Watcher\\ConfigProvider"
  7688. },
  7689. "branch-alias": {
  7690. "dev-master": "3.1-dev"
  7691. }
  7692. },
  7693. "autoload": {
  7694. "files": [
  7695. "src/Functions.php"
  7696. ],
  7697. "psr-4": {
  7698. "Hyperf\\Watcher\\": "src/"
  7699. }
  7700. },
  7701. "notification-url": "https://packagist.org/downloads/",
  7702. "license": [
  7703. "MIT"
  7704. ],
  7705. "description": "Hot reload watcher for Hyperf",
  7706. "keywords": [
  7707. "dev",
  7708. "hyperf",
  7709. "php"
  7710. ],
  7711. "support": {
  7712. "issues": "https://github.com/hyperf/watcher/issues",
  7713. "source": "https://github.com/hyperf/watcher/tree/v3.1.54"
  7714. },
  7715. "funding": [
  7716. {
  7717. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7718. "type": "custom"
  7719. },
  7720. {
  7721. "url": "https://opencollective.com/hyperf",
  7722. "type": "open_collective"
  7723. }
  7724. ],
  7725. "time": "2025-04-26T13:02:01+00:00"
  7726. },
  7727. {
  7728. "name": "mockery/mockery",
  7729. "version": "1.6.12",
  7730. "source": {
  7731. "type": "git",
  7732. "url": "https://github.com/mockery/mockery.git",
  7733. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7734. },
  7735. "dist": {
  7736. "type": "zip",
  7737. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7738. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7739. "shasum": ""
  7740. },
  7741. "require": {
  7742. "hamcrest/hamcrest-php": "^2.0.1",
  7743. "lib-pcre": ">=7.0",
  7744. "php": ">=7.3"
  7745. },
  7746. "conflict": {
  7747. "phpunit/phpunit": "<8.0"
  7748. },
  7749. "require-dev": {
  7750. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7751. "symplify/easy-coding-standard": "^12.1.14"
  7752. },
  7753. "type": "library",
  7754. "autoload": {
  7755. "files": [
  7756. "library/helpers.php",
  7757. "library/Mockery.php"
  7758. ],
  7759. "psr-4": {
  7760. "Mockery\\": "library/Mockery"
  7761. }
  7762. },
  7763. "notification-url": "https://packagist.org/downloads/",
  7764. "license": [
  7765. "BSD-3-Clause"
  7766. ],
  7767. "authors": [
  7768. {
  7769. "name": "Pádraic Brady",
  7770. "email": "padraic.brady@gmail.com",
  7771. "homepage": "https://github.com/padraic",
  7772. "role": "Author"
  7773. },
  7774. {
  7775. "name": "Dave Marshall",
  7776. "email": "dave.marshall@atstsolutions.co.uk",
  7777. "homepage": "https://davedevelopment.co.uk",
  7778. "role": "Developer"
  7779. },
  7780. {
  7781. "name": "Nathanael Esayeas",
  7782. "email": "nathanael.esayeas@protonmail.com",
  7783. "homepage": "https://github.com/ghostwriter",
  7784. "role": "Lead Developer"
  7785. }
  7786. ],
  7787. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7788. "homepage": "https://github.com/mockery/mockery",
  7789. "keywords": [
  7790. "BDD",
  7791. "TDD",
  7792. "library",
  7793. "mock",
  7794. "mock objects",
  7795. "mockery",
  7796. "stub",
  7797. "test",
  7798. "test double",
  7799. "testing"
  7800. ],
  7801. "support": {
  7802. "docs": "https://docs.mockery.io/",
  7803. "issues": "https://github.com/mockery/mockery/issues",
  7804. "rss": "https://github.com/mockery/mockery/releases.atom",
  7805. "security": "https://github.com/mockery/mockery/security/advisories",
  7806. "source": "https://github.com/mockery/mockery"
  7807. },
  7808. "time": "2024-05-16T03:13:13+00:00"
  7809. },
  7810. {
  7811. "name": "myclabs/deep-copy",
  7812. "version": "1.13.1",
  7813. "source": {
  7814. "type": "git",
  7815. "url": "https://github.com/myclabs/DeepCopy.git",
  7816. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  7817. },
  7818. "dist": {
  7819. "type": "zip",
  7820. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7821. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  7822. "shasum": ""
  7823. },
  7824. "require": {
  7825. "php": "^7.1 || ^8.0"
  7826. },
  7827. "conflict": {
  7828. "doctrine/collections": "<1.6.8",
  7829. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7830. },
  7831. "require-dev": {
  7832. "doctrine/collections": "^1.6.8",
  7833. "doctrine/common": "^2.13.3 || ^3.2.2",
  7834. "phpspec/prophecy": "^1.10",
  7835. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7836. },
  7837. "type": "library",
  7838. "autoload": {
  7839. "files": [
  7840. "src/DeepCopy/deep_copy.php"
  7841. ],
  7842. "psr-4": {
  7843. "DeepCopy\\": "src/DeepCopy/"
  7844. }
  7845. },
  7846. "notification-url": "https://packagist.org/downloads/",
  7847. "license": [
  7848. "MIT"
  7849. ],
  7850. "description": "Create deep copies (clones) of your objects",
  7851. "keywords": [
  7852. "clone",
  7853. "copy",
  7854. "duplicate",
  7855. "object",
  7856. "object graph"
  7857. ],
  7858. "support": {
  7859. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7860. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  7861. },
  7862. "funding": [
  7863. {
  7864. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7865. "type": "tidelift"
  7866. }
  7867. ],
  7868. "time": "2025-04-29T12:36:36+00:00"
  7869. },
  7870. {
  7871. "name": "phar-io/manifest",
  7872. "version": "2.0.4",
  7873. "source": {
  7874. "type": "git",
  7875. "url": "https://github.com/phar-io/manifest.git",
  7876. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7877. },
  7878. "dist": {
  7879. "type": "zip",
  7880. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7881. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7882. "shasum": ""
  7883. },
  7884. "require": {
  7885. "ext-dom": "*",
  7886. "ext-libxml": "*",
  7887. "ext-phar": "*",
  7888. "ext-xmlwriter": "*",
  7889. "phar-io/version": "^3.0.1",
  7890. "php": "^7.2 || ^8.0"
  7891. },
  7892. "type": "library",
  7893. "extra": {
  7894. "branch-alias": {
  7895. "dev-master": "2.0.x-dev"
  7896. }
  7897. },
  7898. "autoload": {
  7899. "classmap": [
  7900. "src/"
  7901. ]
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "BSD-3-Clause"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Arne Blankerts",
  7910. "email": "arne@blankerts.de",
  7911. "role": "Developer"
  7912. },
  7913. {
  7914. "name": "Sebastian Heuer",
  7915. "email": "sebastian@phpeople.de",
  7916. "role": "Developer"
  7917. },
  7918. {
  7919. "name": "Sebastian Bergmann",
  7920. "email": "sebastian@phpunit.de",
  7921. "role": "Developer"
  7922. }
  7923. ],
  7924. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7925. "support": {
  7926. "issues": "https://github.com/phar-io/manifest/issues",
  7927. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://github.com/theseer",
  7932. "type": "github"
  7933. }
  7934. ],
  7935. "time": "2024-03-03T12:33:53+00:00"
  7936. },
  7937. {
  7938. "name": "phar-io/version",
  7939. "version": "3.2.1",
  7940. "source": {
  7941. "type": "git",
  7942. "url": "https://github.com/phar-io/version.git",
  7943. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7944. },
  7945. "dist": {
  7946. "type": "zip",
  7947. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7948. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7949. "shasum": ""
  7950. },
  7951. "require": {
  7952. "php": "^7.2 || ^8.0"
  7953. },
  7954. "type": "library",
  7955. "autoload": {
  7956. "classmap": [
  7957. "src/"
  7958. ]
  7959. },
  7960. "notification-url": "https://packagist.org/downloads/",
  7961. "license": [
  7962. "BSD-3-Clause"
  7963. ],
  7964. "authors": [
  7965. {
  7966. "name": "Arne Blankerts",
  7967. "email": "arne@blankerts.de",
  7968. "role": "Developer"
  7969. },
  7970. {
  7971. "name": "Sebastian Heuer",
  7972. "email": "sebastian@phpeople.de",
  7973. "role": "Developer"
  7974. },
  7975. {
  7976. "name": "Sebastian Bergmann",
  7977. "email": "sebastian@phpunit.de",
  7978. "role": "Developer"
  7979. }
  7980. ],
  7981. "description": "Library for handling version information and constraints",
  7982. "support": {
  7983. "issues": "https://github.com/phar-io/version/issues",
  7984. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7985. },
  7986. "time": "2022-02-21T01:04:05+00:00"
  7987. },
  7988. {
  7989. "name": "phpstan/phpstan",
  7990. "version": "1.12.27",
  7991. "source": {
  7992. "type": "git",
  7993. "url": "https://github.com/phpstan/phpstan.git",
  7994. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162"
  7995. },
  7996. "dist": {
  7997. "type": "zip",
  7998. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/3a6e423c076ab39dfedc307e2ac627ef579db162",
  7999. "reference": "3a6e423c076ab39dfedc307e2ac627ef579db162",
  8000. "shasum": ""
  8001. },
  8002. "require": {
  8003. "php": "^7.2|^8.0"
  8004. },
  8005. "conflict": {
  8006. "phpstan/phpstan-shim": "*"
  8007. },
  8008. "bin": [
  8009. "phpstan",
  8010. "phpstan.phar"
  8011. ],
  8012. "type": "library",
  8013. "autoload": {
  8014. "files": [
  8015. "bootstrap.php"
  8016. ]
  8017. },
  8018. "notification-url": "https://packagist.org/downloads/",
  8019. "license": [
  8020. "MIT"
  8021. ],
  8022. "description": "PHPStan - PHP Static Analysis Tool",
  8023. "keywords": [
  8024. "dev",
  8025. "static analysis"
  8026. ],
  8027. "support": {
  8028. "docs": "https://phpstan.org/user-guide/getting-started",
  8029. "forum": "https://github.com/phpstan/phpstan/discussions",
  8030. "issues": "https://github.com/phpstan/phpstan/issues",
  8031. "security": "https://github.com/phpstan/phpstan/security/policy",
  8032. "source": "https://github.com/phpstan/phpstan-src"
  8033. },
  8034. "funding": [
  8035. {
  8036. "url": "https://github.com/ondrejmirtes",
  8037. "type": "github"
  8038. },
  8039. {
  8040. "url": "https://github.com/phpstan",
  8041. "type": "github"
  8042. }
  8043. ],
  8044. "time": "2025-05-21T20:51:45+00:00"
  8045. },
  8046. {
  8047. "name": "phpunit/php-code-coverage",
  8048. "version": "10.1.16",
  8049. "source": {
  8050. "type": "git",
  8051. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8052. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  8053. },
  8054. "dist": {
  8055. "type": "zip",
  8056. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  8057. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  8058. "shasum": ""
  8059. },
  8060. "require": {
  8061. "ext-dom": "*",
  8062. "ext-libxml": "*",
  8063. "ext-xmlwriter": "*",
  8064. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8065. "php": ">=8.1",
  8066. "phpunit/php-file-iterator": "^4.1.0",
  8067. "phpunit/php-text-template": "^3.0.1",
  8068. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  8069. "sebastian/complexity": "^3.2.0",
  8070. "sebastian/environment": "^6.1.0",
  8071. "sebastian/lines-of-code": "^2.0.2",
  8072. "sebastian/version": "^4.0.1",
  8073. "theseer/tokenizer": "^1.2.3"
  8074. },
  8075. "require-dev": {
  8076. "phpunit/phpunit": "^10.1"
  8077. },
  8078. "suggest": {
  8079. "ext-pcov": "PHP extension that provides line coverage",
  8080. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8081. },
  8082. "type": "library",
  8083. "extra": {
  8084. "branch-alias": {
  8085. "dev-main": "10.1.x-dev"
  8086. }
  8087. },
  8088. "autoload": {
  8089. "classmap": [
  8090. "src/"
  8091. ]
  8092. },
  8093. "notification-url": "https://packagist.org/downloads/",
  8094. "license": [
  8095. "BSD-3-Clause"
  8096. ],
  8097. "authors": [
  8098. {
  8099. "name": "Sebastian Bergmann",
  8100. "email": "sebastian@phpunit.de",
  8101. "role": "lead"
  8102. }
  8103. ],
  8104. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8105. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8106. "keywords": [
  8107. "coverage",
  8108. "testing",
  8109. "xunit"
  8110. ],
  8111. "support": {
  8112. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8113. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8114. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  8115. },
  8116. "funding": [
  8117. {
  8118. "url": "https://github.com/sebastianbergmann",
  8119. "type": "github"
  8120. }
  8121. ],
  8122. "time": "2024-08-22T04:31:57+00:00"
  8123. },
  8124. {
  8125. "name": "phpunit/php-file-iterator",
  8126. "version": "4.1.0",
  8127. "source": {
  8128. "type": "git",
  8129. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8130. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8131. },
  8132. "dist": {
  8133. "type": "zip",
  8134. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8135. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8136. "shasum": ""
  8137. },
  8138. "require": {
  8139. "php": ">=8.1"
  8140. },
  8141. "require-dev": {
  8142. "phpunit/phpunit": "^10.0"
  8143. },
  8144. "type": "library",
  8145. "extra": {
  8146. "branch-alias": {
  8147. "dev-main": "4.0-dev"
  8148. }
  8149. },
  8150. "autoload": {
  8151. "classmap": [
  8152. "src/"
  8153. ]
  8154. },
  8155. "notification-url": "https://packagist.org/downloads/",
  8156. "license": [
  8157. "BSD-3-Clause"
  8158. ],
  8159. "authors": [
  8160. {
  8161. "name": "Sebastian Bergmann",
  8162. "email": "sebastian@phpunit.de",
  8163. "role": "lead"
  8164. }
  8165. ],
  8166. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8167. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8168. "keywords": [
  8169. "filesystem",
  8170. "iterator"
  8171. ],
  8172. "support": {
  8173. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8174. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8175. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://github.com/sebastianbergmann",
  8180. "type": "github"
  8181. }
  8182. ],
  8183. "time": "2023-08-31T06:24:48+00:00"
  8184. },
  8185. {
  8186. "name": "phpunit/php-invoker",
  8187. "version": "4.0.0",
  8188. "source": {
  8189. "type": "git",
  8190. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8191. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8192. },
  8193. "dist": {
  8194. "type": "zip",
  8195. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8196. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8197. "shasum": ""
  8198. },
  8199. "require": {
  8200. "php": ">=8.1"
  8201. },
  8202. "require-dev": {
  8203. "ext-pcntl": "*",
  8204. "phpunit/phpunit": "^10.0"
  8205. },
  8206. "suggest": {
  8207. "ext-pcntl": "*"
  8208. },
  8209. "type": "library",
  8210. "extra": {
  8211. "branch-alias": {
  8212. "dev-main": "4.0-dev"
  8213. }
  8214. },
  8215. "autoload": {
  8216. "classmap": [
  8217. "src/"
  8218. ]
  8219. },
  8220. "notification-url": "https://packagist.org/downloads/",
  8221. "license": [
  8222. "BSD-3-Clause"
  8223. ],
  8224. "authors": [
  8225. {
  8226. "name": "Sebastian Bergmann",
  8227. "email": "sebastian@phpunit.de",
  8228. "role": "lead"
  8229. }
  8230. ],
  8231. "description": "Invoke callables with a timeout",
  8232. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8233. "keywords": [
  8234. "process"
  8235. ],
  8236. "support": {
  8237. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8238. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8239. },
  8240. "funding": [
  8241. {
  8242. "url": "https://github.com/sebastianbergmann",
  8243. "type": "github"
  8244. }
  8245. ],
  8246. "time": "2023-02-03T06:56:09+00:00"
  8247. },
  8248. {
  8249. "name": "phpunit/php-text-template",
  8250. "version": "3.0.1",
  8251. "source": {
  8252. "type": "git",
  8253. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8254. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8255. },
  8256. "dist": {
  8257. "type": "zip",
  8258. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8259. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8260. "shasum": ""
  8261. },
  8262. "require": {
  8263. "php": ">=8.1"
  8264. },
  8265. "require-dev": {
  8266. "phpunit/phpunit": "^10.0"
  8267. },
  8268. "type": "library",
  8269. "extra": {
  8270. "branch-alias": {
  8271. "dev-main": "3.0-dev"
  8272. }
  8273. },
  8274. "autoload": {
  8275. "classmap": [
  8276. "src/"
  8277. ]
  8278. },
  8279. "notification-url": "https://packagist.org/downloads/",
  8280. "license": [
  8281. "BSD-3-Clause"
  8282. ],
  8283. "authors": [
  8284. {
  8285. "name": "Sebastian Bergmann",
  8286. "email": "sebastian@phpunit.de",
  8287. "role": "lead"
  8288. }
  8289. ],
  8290. "description": "Simple template engine.",
  8291. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8292. "keywords": [
  8293. "template"
  8294. ],
  8295. "support": {
  8296. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8297. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8298. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://github.com/sebastianbergmann",
  8303. "type": "github"
  8304. }
  8305. ],
  8306. "time": "2023-08-31T14:07:24+00:00"
  8307. },
  8308. {
  8309. "name": "phpunit/php-timer",
  8310. "version": "6.0.0",
  8311. "source": {
  8312. "type": "git",
  8313. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8314. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8315. },
  8316. "dist": {
  8317. "type": "zip",
  8318. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8319. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8320. "shasum": ""
  8321. },
  8322. "require": {
  8323. "php": ">=8.1"
  8324. },
  8325. "require-dev": {
  8326. "phpunit/phpunit": "^10.0"
  8327. },
  8328. "type": "library",
  8329. "extra": {
  8330. "branch-alias": {
  8331. "dev-main": "6.0-dev"
  8332. }
  8333. },
  8334. "autoload": {
  8335. "classmap": [
  8336. "src/"
  8337. ]
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "BSD-3-Clause"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Sebastian Bergmann",
  8346. "email": "sebastian@phpunit.de",
  8347. "role": "lead"
  8348. }
  8349. ],
  8350. "description": "Utility class for timing",
  8351. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8352. "keywords": [
  8353. "timer"
  8354. ],
  8355. "support": {
  8356. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8357. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8358. },
  8359. "funding": [
  8360. {
  8361. "url": "https://github.com/sebastianbergmann",
  8362. "type": "github"
  8363. }
  8364. ],
  8365. "time": "2023-02-03T06:57:52+00:00"
  8366. },
  8367. {
  8368. "name": "phpunit/phpunit",
  8369. "version": "10.5.46",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8373. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8080be387a5be380dda48c6f41cee4a13aadab3d",
  8378. "reference": "8080be387a5be380dda48c6f41cee4a13aadab3d",
  8379. "shasum": ""
  8380. },
  8381. "require": {
  8382. "ext-dom": "*",
  8383. "ext-json": "*",
  8384. "ext-libxml": "*",
  8385. "ext-mbstring": "*",
  8386. "ext-xml": "*",
  8387. "ext-xmlwriter": "*",
  8388. "myclabs/deep-copy": "^1.13.1",
  8389. "phar-io/manifest": "^2.0.4",
  8390. "phar-io/version": "^3.2.1",
  8391. "php": ">=8.1",
  8392. "phpunit/php-code-coverage": "^10.1.16",
  8393. "phpunit/php-file-iterator": "^4.1.0",
  8394. "phpunit/php-invoker": "^4.0.0",
  8395. "phpunit/php-text-template": "^3.0.1",
  8396. "phpunit/php-timer": "^6.0.0",
  8397. "sebastian/cli-parser": "^2.0.1",
  8398. "sebastian/code-unit": "^2.0.0",
  8399. "sebastian/comparator": "^5.0.3",
  8400. "sebastian/diff": "^5.1.1",
  8401. "sebastian/environment": "^6.1.0",
  8402. "sebastian/exporter": "^5.1.2",
  8403. "sebastian/global-state": "^6.0.2",
  8404. "sebastian/object-enumerator": "^5.0.0",
  8405. "sebastian/recursion-context": "^5.0.0",
  8406. "sebastian/type": "^4.0.0",
  8407. "sebastian/version": "^4.0.1"
  8408. },
  8409. "suggest": {
  8410. "ext-soap": "To be able to generate mocks based on WSDL files"
  8411. },
  8412. "bin": [
  8413. "phpunit"
  8414. ],
  8415. "type": "library",
  8416. "extra": {
  8417. "branch-alias": {
  8418. "dev-main": "10.5-dev"
  8419. }
  8420. },
  8421. "autoload": {
  8422. "files": [
  8423. "src/Framework/Assert/Functions.php"
  8424. ],
  8425. "classmap": [
  8426. "src/"
  8427. ]
  8428. },
  8429. "notification-url": "https://packagist.org/downloads/",
  8430. "license": [
  8431. "BSD-3-Clause"
  8432. ],
  8433. "authors": [
  8434. {
  8435. "name": "Sebastian Bergmann",
  8436. "email": "sebastian@phpunit.de",
  8437. "role": "lead"
  8438. }
  8439. ],
  8440. "description": "The PHP Unit Testing framework.",
  8441. "homepage": "https://phpunit.de/",
  8442. "keywords": [
  8443. "phpunit",
  8444. "testing",
  8445. "xunit"
  8446. ],
  8447. "support": {
  8448. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8449. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8450. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.46"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://phpunit.de/sponsors.html",
  8455. "type": "custom"
  8456. },
  8457. {
  8458. "url": "https://github.com/sebastianbergmann",
  8459. "type": "github"
  8460. },
  8461. {
  8462. "url": "https://liberapay.com/sebastianbergmann",
  8463. "type": "liberapay"
  8464. },
  8465. {
  8466. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8467. "type": "thanks_dev"
  8468. },
  8469. {
  8470. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8471. "type": "tidelift"
  8472. }
  8473. ],
  8474. "time": "2025-05-02T06:46:24+00:00"
  8475. },
  8476. {
  8477. "name": "react/cache",
  8478. "version": "v1.2.0",
  8479. "source": {
  8480. "type": "git",
  8481. "url": "https://github.com/reactphp/cache.git",
  8482. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8483. },
  8484. "dist": {
  8485. "type": "zip",
  8486. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8487. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8488. "shasum": ""
  8489. },
  8490. "require": {
  8491. "php": ">=5.3.0",
  8492. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8493. },
  8494. "require-dev": {
  8495. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8496. },
  8497. "type": "library",
  8498. "autoload": {
  8499. "psr-4": {
  8500. "React\\Cache\\": "src/"
  8501. }
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "MIT"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Christian Lück",
  8510. "email": "christian@clue.engineering",
  8511. "homepage": "https://clue.engineering/"
  8512. },
  8513. {
  8514. "name": "Cees-Jan Kiewiet",
  8515. "email": "reactphp@ceesjankiewiet.nl",
  8516. "homepage": "https://wyrihaximus.net/"
  8517. },
  8518. {
  8519. "name": "Jan Sorgalla",
  8520. "email": "jsorgalla@gmail.com",
  8521. "homepage": "https://sorgalla.com/"
  8522. },
  8523. {
  8524. "name": "Chris Boden",
  8525. "email": "cboden@gmail.com",
  8526. "homepage": "https://cboden.dev/"
  8527. }
  8528. ],
  8529. "description": "Async, Promise-based cache interface for ReactPHP",
  8530. "keywords": [
  8531. "cache",
  8532. "caching",
  8533. "promise",
  8534. "reactphp"
  8535. ],
  8536. "support": {
  8537. "issues": "https://github.com/reactphp/cache/issues",
  8538. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8539. },
  8540. "funding": [
  8541. {
  8542. "url": "https://opencollective.com/reactphp",
  8543. "type": "open_collective"
  8544. }
  8545. ],
  8546. "time": "2022-11-30T15:59:55+00:00"
  8547. },
  8548. {
  8549. "name": "react/child-process",
  8550. "version": "v0.6.6",
  8551. "source": {
  8552. "type": "git",
  8553. "url": "https://github.com/reactphp/child-process.git",
  8554. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159"
  8555. },
  8556. "dist": {
  8557. "type": "zip",
  8558. "url": "https://api.github.com/repos/reactphp/child-process/zipball/1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8559. "reference": "1721e2b93d89b745664353b9cfc8f155ba8a6159",
  8560. "shasum": ""
  8561. },
  8562. "require": {
  8563. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8564. "php": ">=5.3.0",
  8565. "react/event-loop": "^1.2",
  8566. "react/stream": "^1.4"
  8567. },
  8568. "require-dev": {
  8569. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8570. "react/socket": "^1.16",
  8571. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8572. },
  8573. "type": "library",
  8574. "autoload": {
  8575. "psr-4": {
  8576. "React\\ChildProcess\\": "src/"
  8577. }
  8578. },
  8579. "notification-url": "https://packagist.org/downloads/",
  8580. "license": [
  8581. "MIT"
  8582. ],
  8583. "authors": [
  8584. {
  8585. "name": "Christian Lück",
  8586. "email": "christian@clue.engineering",
  8587. "homepage": "https://clue.engineering/"
  8588. },
  8589. {
  8590. "name": "Cees-Jan Kiewiet",
  8591. "email": "reactphp@ceesjankiewiet.nl",
  8592. "homepage": "https://wyrihaximus.net/"
  8593. },
  8594. {
  8595. "name": "Jan Sorgalla",
  8596. "email": "jsorgalla@gmail.com",
  8597. "homepage": "https://sorgalla.com/"
  8598. },
  8599. {
  8600. "name": "Chris Boden",
  8601. "email": "cboden@gmail.com",
  8602. "homepage": "https://cboden.dev/"
  8603. }
  8604. ],
  8605. "description": "Event-driven library for executing child processes with ReactPHP.",
  8606. "keywords": [
  8607. "event-driven",
  8608. "process",
  8609. "reactphp"
  8610. ],
  8611. "support": {
  8612. "issues": "https://github.com/reactphp/child-process/issues",
  8613. "source": "https://github.com/reactphp/child-process/tree/v0.6.6"
  8614. },
  8615. "funding": [
  8616. {
  8617. "url": "https://opencollective.com/reactphp",
  8618. "type": "open_collective"
  8619. }
  8620. ],
  8621. "time": "2025-01-01T16:37:48+00:00"
  8622. },
  8623. {
  8624. "name": "react/dns",
  8625. "version": "v1.13.0",
  8626. "source": {
  8627. "type": "git",
  8628. "url": "https://github.com/reactphp/dns.git",
  8629. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8630. },
  8631. "dist": {
  8632. "type": "zip",
  8633. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8634. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8635. "shasum": ""
  8636. },
  8637. "require": {
  8638. "php": ">=5.3.0",
  8639. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8640. "react/event-loop": "^1.2",
  8641. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8642. },
  8643. "require-dev": {
  8644. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8645. "react/async": "^4.3 || ^3 || ^2",
  8646. "react/promise-timer": "^1.11"
  8647. },
  8648. "type": "library",
  8649. "autoload": {
  8650. "psr-4": {
  8651. "React\\Dns\\": "src/"
  8652. }
  8653. },
  8654. "notification-url": "https://packagist.org/downloads/",
  8655. "license": [
  8656. "MIT"
  8657. ],
  8658. "authors": [
  8659. {
  8660. "name": "Christian Lück",
  8661. "email": "christian@clue.engineering",
  8662. "homepage": "https://clue.engineering/"
  8663. },
  8664. {
  8665. "name": "Cees-Jan Kiewiet",
  8666. "email": "reactphp@ceesjankiewiet.nl",
  8667. "homepage": "https://wyrihaximus.net/"
  8668. },
  8669. {
  8670. "name": "Jan Sorgalla",
  8671. "email": "jsorgalla@gmail.com",
  8672. "homepage": "https://sorgalla.com/"
  8673. },
  8674. {
  8675. "name": "Chris Boden",
  8676. "email": "cboden@gmail.com",
  8677. "homepage": "https://cboden.dev/"
  8678. }
  8679. ],
  8680. "description": "Async DNS resolver for ReactPHP",
  8681. "keywords": [
  8682. "async",
  8683. "dns",
  8684. "dns-resolver",
  8685. "reactphp"
  8686. ],
  8687. "support": {
  8688. "issues": "https://github.com/reactphp/dns/issues",
  8689. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8690. },
  8691. "funding": [
  8692. {
  8693. "url": "https://opencollective.com/reactphp",
  8694. "type": "open_collective"
  8695. }
  8696. ],
  8697. "time": "2024-06-13T14:18:03+00:00"
  8698. },
  8699. {
  8700. "name": "react/event-loop",
  8701. "version": "v1.5.0",
  8702. "source": {
  8703. "type": "git",
  8704. "url": "https://github.com/reactphp/event-loop.git",
  8705. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8706. },
  8707. "dist": {
  8708. "type": "zip",
  8709. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8710. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8711. "shasum": ""
  8712. },
  8713. "require": {
  8714. "php": ">=5.3.0"
  8715. },
  8716. "require-dev": {
  8717. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8718. },
  8719. "suggest": {
  8720. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8721. },
  8722. "type": "library",
  8723. "autoload": {
  8724. "psr-4": {
  8725. "React\\EventLoop\\": "src/"
  8726. }
  8727. },
  8728. "notification-url": "https://packagist.org/downloads/",
  8729. "license": [
  8730. "MIT"
  8731. ],
  8732. "authors": [
  8733. {
  8734. "name": "Christian Lück",
  8735. "email": "christian@clue.engineering",
  8736. "homepage": "https://clue.engineering/"
  8737. },
  8738. {
  8739. "name": "Cees-Jan Kiewiet",
  8740. "email": "reactphp@ceesjankiewiet.nl",
  8741. "homepage": "https://wyrihaximus.net/"
  8742. },
  8743. {
  8744. "name": "Jan Sorgalla",
  8745. "email": "jsorgalla@gmail.com",
  8746. "homepage": "https://sorgalla.com/"
  8747. },
  8748. {
  8749. "name": "Chris Boden",
  8750. "email": "cboden@gmail.com",
  8751. "homepage": "https://cboden.dev/"
  8752. }
  8753. ],
  8754. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8755. "keywords": [
  8756. "asynchronous",
  8757. "event-loop"
  8758. ],
  8759. "support": {
  8760. "issues": "https://github.com/reactphp/event-loop/issues",
  8761. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8762. },
  8763. "funding": [
  8764. {
  8765. "url": "https://opencollective.com/reactphp",
  8766. "type": "open_collective"
  8767. }
  8768. ],
  8769. "time": "2023-11-13T13:48:05+00:00"
  8770. },
  8771. {
  8772. "name": "react/promise",
  8773. "version": "v3.2.0",
  8774. "source": {
  8775. "type": "git",
  8776. "url": "https://github.com/reactphp/promise.git",
  8777. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8778. },
  8779. "dist": {
  8780. "type": "zip",
  8781. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8782. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8783. "shasum": ""
  8784. },
  8785. "require": {
  8786. "php": ">=7.1.0"
  8787. },
  8788. "require-dev": {
  8789. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8790. "phpunit/phpunit": "^9.6 || ^7.5"
  8791. },
  8792. "type": "library",
  8793. "autoload": {
  8794. "files": [
  8795. "src/functions_include.php"
  8796. ],
  8797. "psr-4": {
  8798. "React\\Promise\\": "src/"
  8799. }
  8800. },
  8801. "notification-url": "https://packagist.org/downloads/",
  8802. "license": [
  8803. "MIT"
  8804. ],
  8805. "authors": [
  8806. {
  8807. "name": "Jan Sorgalla",
  8808. "email": "jsorgalla@gmail.com",
  8809. "homepage": "https://sorgalla.com/"
  8810. },
  8811. {
  8812. "name": "Christian Lück",
  8813. "email": "christian@clue.engineering",
  8814. "homepage": "https://clue.engineering/"
  8815. },
  8816. {
  8817. "name": "Cees-Jan Kiewiet",
  8818. "email": "reactphp@ceesjankiewiet.nl",
  8819. "homepage": "https://wyrihaximus.net/"
  8820. },
  8821. {
  8822. "name": "Chris Boden",
  8823. "email": "cboden@gmail.com",
  8824. "homepage": "https://cboden.dev/"
  8825. }
  8826. ],
  8827. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8828. "keywords": [
  8829. "promise",
  8830. "promises"
  8831. ],
  8832. "support": {
  8833. "issues": "https://github.com/reactphp/promise/issues",
  8834. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8835. },
  8836. "funding": [
  8837. {
  8838. "url": "https://opencollective.com/reactphp",
  8839. "type": "open_collective"
  8840. }
  8841. ],
  8842. "time": "2024-05-24T10:39:05+00:00"
  8843. },
  8844. {
  8845. "name": "react/socket",
  8846. "version": "v1.16.0",
  8847. "source": {
  8848. "type": "git",
  8849. "url": "https://github.com/reactphp/socket.git",
  8850. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8851. },
  8852. "dist": {
  8853. "type": "zip",
  8854. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8855. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8856. "shasum": ""
  8857. },
  8858. "require": {
  8859. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8860. "php": ">=5.3.0",
  8861. "react/dns": "^1.13",
  8862. "react/event-loop": "^1.2",
  8863. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8864. "react/stream": "^1.4"
  8865. },
  8866. "require-dev": {
  8867. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8868. "react/async": "^4.3 || ^3.3 || ^2",
  8869. "react/promise-stream": "^1.4",
  8870. "react/promise-timer": "^1.11"
  8871. },
  8872. "type": "library",
  8873. "autoload": {
  8874. "psr-4": {
  8875. "React\\Socket\\": "src/"
  8876. }
  8877. },
  8878. "notification-url": "https://packagist.org/downloads/",
  8879. "license": [
  8880. "MIT"
  8881. ],
  8882. "authors": [
  8883. {
  8884. "name": "Christian Lück",
  8885. "email": "christian@clue.engineering",
  8886. "homepage": "https://clue.engineering/"
  8887. },
  8888. {
  8889. "name": "Cees-Jan Kiewiet",
  8890. "email": "reactphp@ceesjankiewiet.nl",
  8891. "homepage": "https://wyrihaximus.net/"
  8892. },
  8893. {
  8894. "name": "Jan Sorgalla",
  8895. "email": "jsorgalla@gmail.com",
  8896. "homepage": "https://sorgalla.com/"
  8897. },
  8898. {
  8899. "name": "Chris Boden",
  8900. "email": "cboden@gmail.com",
  8901. "homepage": "https://cboden.dev/"
  8902. }
  8903. ],
  8904. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8905. "keywords": [
  8906. "Connection",
  8907. "Socket",
  8908. "async",
  8909. "reactphp",
  8910. "stream"
  8911. ],
  8912. "support": {
  8913. "issues": "https://github.com/reactphp/socket/issues",
  8914. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8915. },
  8916. "funding": [
  8917. {
  8918. "url": "https://opencollective.com/reactphp",
  8919. "type": "open_collective"
  8920. }
  8921. ],
  8922. "time": "2024-07-26T10:38:09+00:00"
  8923. },
  8924. {
  8925. "name": "react/stream",
  8926. "version": "v1.4.0",
  8927. "source": {
  8928. "type": "git",
  8929. "url": "https://github.com/reactphp/stream.git",
  8930. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8931. },
  8932. "dist": {
  8933. "type": "zip",
  8934. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8935. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8936. "shasum": ""
  8937. },
  8938. "require": {
  8939. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8940. "php": ">=5.3.8",
  8941. "react/event-loop": "^1.2"
  8942. },
  8943. "require-dev": {
  8944. "clue/stream-filter": "~1.2",
  8945. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8946. },
  8947. "type": "library",
  8948. "autoload": {
  8949. "psr-4": {
  8950. "React\\Stream\\": "src/"
  8951. }
  8952. },
  8953. "notification-url": "https://packagist.org/downloads/",
  8954. "license": [
  8955. "MIT"
  8956. ],
  8957. "authors": [
  8958. {
  8959. "name": "Christian Lück",
  8960. "email": "christian@clue.engineering",
  8961. "homepage": "https://clue.engineering/"
  8962. },
  8963. {
  8964. "name": "Cees-Jan Kiewiet",
  8965. "email": "reactphp@ceesjankiewiet.nl",
  8966. "homepage": "https://wyrihaximus.net/"
  8967. },
  8968. {
  8969. "name": "Jan Sorgalla",
  8970. "email": "jsorgalla@gmail.com",
  8971. "homepage": "https://sorgalla.com/"
  8972. },
  8973. {
  8974. "name": "Chris Boden",
  8975. "email": "cboden@gmail.com",
  8976. "homepage": "https://cboden.dev/"
  8977. }
  8978. ],
  8979. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8980. "keywords": [
  8981. "event-driven",
  8982. "io",
  8983. "non-blocking",
  8984. "pipe",
  8985. "reactphp",
  8986. "readable",
  8987. "stream",
  8988. "writable"
  8989. ],
  8990. "support": {
  8991. "issues": "https://github.com/reactphp/stream/issues",
  8992. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  8993. },
  8994. "funding": [
  8995. {
  8996. "url": "https://opencollective.com/reactphp",
  8997. "type": "open_collective"
  8998. }
  8999. ],
  9000. "time": "2024-06-11T12:45:25+00:00"
  9001. },
  9002. {
  9003. "name": "sebastian/cli-parser",
  9004. "version": "2.0.1",
  9005. "source": {
  9006. "type": "git",
  9007. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9008. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9009. },
  9010. "dist": {
  9011. "type": "zip",
  9012. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9013. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9014. "shasum": ""
  9015. },
  9016. "require": {
  9017. "php": ">=8.1"
  9018. },
  9019. "require-dev": {
  9020. "phpunit/phpunit": "^10.0"
  9021. },
  9022. "type": "library",
  9023. "extra": {
  9024. "branch-alias": {
  9025. "dev-main": "2.0-dev"
  9026. }
  9027. },
  9028. "autoload": {
  9029. "classmap": [
  9030. "src/"
  9031. ]
  9032. },
  9033. "notification-url": "https://packagist.org/downloads/",
  9034. "license": [
  9035. "BSD-3-Clause"
  9036. ],
  9037. "authors": [
  9038. {
  9039. "name": "Sebastian Bergmann",
  9040. "email": "sebastian@phpunit.de",
  9041. "role": "lead"
  9042. }
  9043. ],
  9044. "description": "Library for parsing CLI options",
  9045. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9046. "support": {
  9047. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9048. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9049. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  9050. },
  9051. "funding": [
  9052. {
  9053. "url": "https://github.com/sebastianbergmann",
  9054. "type": "github"
  9055. }
  9056. ],
  9057. "time": "2024-03-02T07:12:49+00:00"
  9058. },
  9059. {
  9060. "name": "sebastian/code-unit",
  9061. "version": "2.0.0",
  9062. "source": {
  9063. "type": "git",
  9064. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9065. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  9066. },
  9067. "dist": {
  9068. "type": "zip",
  9069. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  9070. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  9071. "shasum": ""
  9072. },
  9073. "require": {
  9074. "php": ">=8.1"
  9075. },
  9076. "require-dev": {
  9077. "phpunit/phpunit": "^10.0"
  9078. },
  9079. "type": "library",
  9080. "extra": {
  9081. "branch-alias": {
  9082. "dev-main": "2.0-dev"
  9083. }
  9084. },
  9085. "autoload": {
  9086. "classmap": [
  9087. "src/"
  9088. ]
  9089. },
  9090. "notification-url": "https://packagist.org/downloads/",
  9091. "license": [
  9092. "BSD-3-Clause"
  9093. ],
  9094. "authors": [
  9095. {
  9096. "name": "Sebastian Bergmann",
  9097. "email": "sebastian@phpunit.de",
  9098. "role": "lead"
  9099. }
  9100. ],
  9101. "description": "Collection of value objects that represent the PHP code units",
  9102. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9103. "support": {
  9104. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9105. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  9106. },
  9107. "funding": [
  9108. {
  9109. "url": "https://github.com/sebastianbergmann",
  9110. "type": "github"
  9111. }
  9112. ],
  9113. "time": "2023-02-03T06:58:43+00:00"
  9114. },
  9115. {
  9116. "name": "sebastian/code-unit-reverse-lookup",
  9117. "version": "3.0.0",
  9118. "source": {
  9119. "type": "git",
  9120. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9121. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  9122. },
  9123. "dist": {
  9124. "type": "zip",
  9125. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9126. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  9127. "shasum": ""
  9128. },
  9129. "require": {
  9130. "php": ">=8.1"
  9131. },
  9132. "require-dev": {
  9133. "phpunit/phpunit": "^10.0"
  9134. },
  9135. "type": "library",
  9136. "extra": {
  9137. "branch-alias": {
  9138. "dev-main": "3.0-dev"
  9139. }
  9140. },
  9141. "autoload": {
  9142. "classmap": [
  9143. "src/"
  9144. ]
  9145. },
  9146. "notification-url": "https://packagist.org/downloads/",
  9147. "license": [
  9148. "BSD-3-Clause"
  9149. ],
  9150. "authors": [
  9151. {
  9152. "name": "Sebastian Bergmann",
  9153. "email": "sebastian@phpunit.de"
  9154. }
  9155. ],
  9156. "description": "Looks up which function or method a line of code belongs to",
  9157. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9158. "support": {
  9159. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9160. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  9161. },
  9162. "funding": [
  9163. {
  9164. "url": "https://github.com/sebastianbergmann",
  9165. "type": "github"
  9166. }
  9167. ],
  9168. "time": "2023-02-03T06:59:15+00:00"
  9169. },
  9170. {
  9171. "name": "sebastian/comparator",
  9172. "version": "5.0.3",
  9173. "source": {
  9174. "type": "git",
  9175. "url": "https://github.com/sebastianbergmann/comparator.git",
  9176. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  9177. },
  9178. "dist": {
  9179. "type": "zip",
  9180. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9181. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  9182. "shasum": ""
  9183. },
  9184. "require": {
  9185. "ext-dom": "*",
  9186. "ext-mbstring": "*",
  9187. "php": ">=8.1",
  9188. "sebastian/diff": "^5.0",
  9189. "sebastian/exporter": "^5.0"
  9190. },
  9191. "require-dev": {
  9192. "phpunit/phpunit": "^10.5"
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-main": "5.0-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Sebastian Bergmann",
  9212. "email": "sebastian@phpunit.de"
  9213. },
  9214. {
  9215. "name": "Jeff Welch",
  9216. "email": "whatthejeff@gmail.com"
  9217. },
  9218. {
  9219. "name": "Volker Dusch",
  9220. "email": "github@wallbash.com"
  9221. },
  9222. {
  9223. "name": "Bernhard Schussek",
  9224. "email": "bschussek@2bepublished.at"
  9225. }
  9226. ],
  9227. "description": "Provides the functionality to compare PHP values for equality",
  9228. "homepage": "https://github.com/sebastianbergmann/comparator",
  9229. "keywords": [
  9230. "comparator",
  9231. "compare",
  9232. "equality"
  9233. ],
  9234. "support": {
  9235. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9236. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9237. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  9238. },
  9239. "funding": [
  9240. {
  9241. "url": "https://github.com/sebastianbergmann",
  9242. "type": "github"
  9243. }
  9244. ],
  9245. "time": "2024-10-18T14:56:07+00:00"
  9246. },
  9247. {
  9248. "name": "sebastian/complexity",
  9249. "version": "3.2.0",
  9250. "source": {
  9251. "type": "git",
  9252. "url": "https://github.com/sebastianbergmann/complexity.git",
  9253. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  9254. },
  9255. "dist": {
  9256. "type": "zip",
  9257. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  9258. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  9259. "shasum": ""
  9260. },
  9261. "require": {
  9262. "nikic/php-parser": "^4.18 || ^5.0",
  9263. "php": ">=8.1"
  9264. },
  9265. "require-dev": {
  9266. "phpunit/phpunit": "^10.0"
  9267. },
  9268. "type": "library",
  9269. "extra": {
  9270. "branch-alias": {
  9271. "dev-main": "3.2-dev"
  9272. }
  9273. },
  9274. "autoload": {
  9275. "classmap": [
  9276. "src/"
  9277. ]
  9278. },
  9279. "notification-url": "https://packagist.org/downloads/",
  9280. "license": [
  9281. "BSD-3-Clause"
  9282. ],
  9283. "authors": [
  9284. {
  9285. "name": "Sebastian Bergmann",
  9286. "email": "sebastian@phpunit.de",
  9287. "role": "lead"
  9288. }
  9289. ],
  9290. "description": "Library for calculating the complexity of PHP code units",
  9291. "homepage": "https://github.com/sebastianbergmann/complexity",
  9292. "support": {
  9293. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9294. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9295. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  9296. },
  9297. "funding": [
  9298. {
  9299. "url": "https://github.com/sebastianbergmann",
  9300. "type": "github"
  9301. }
  9302. ],
  9303. "time": "2023-12-21T08:37:17+00:00"
  9304. },
  9305. {
  9306. "name": "sebastian/diff",
  9307. "version": "5.1.1",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/sebastianbergmann/diff.git",
  9311. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9316. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": ">=8.1"
  9321. },
  9322. "require-dev": {
  9323. "phpunit/phpunit": "^10.0",
  9324. "symfony/process": "^6.4"
  9325. },
  9326. "type": "library",
  9327. "extra": {
  9328. "branch-alias": {
  9329. "dev-main": "5.1-dev"
  9330. }
  9331. },
  9332. "autoload": {
  9333. "classmap": [
  9334. "src/"
  9335. ]
  9336. },
  9337. "notification-url": "https://packagist.org/downloads/",
  9338. "license": [
  9339. "BSD-3-Clause"
  9340. ],
  9341. "authors": [
  9342. {
  9343. "name": "Sebastian Bergmann",
  9344. "email": "sebastian@phpunit.de"
  9345. },
  9346. {
  9347. "name": "Kore Nordmann",
  9348. "email": "mail@kore-nordmann.de"
  9349. }
  9350. ],
  9351. "description": "Diff implementation",
  9352. "homepage": "https://github.com/sebastianbergmann/diff",
  9353. "keywords": [
  9354. "diff",
  9355. "udiff",
  9356. "unidiff",
  9357. "unified diff"
  9358. ],
  9359. "support": {
  9360. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9361. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9362. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  9363. },
  9364. "funding": [
  9365. {
  9366. "url": "https://github.com/sebastianbergmann",
  9367. "type": "github"
  9368. }
  9369. ],
  9370. "time": "2024-03-02T07:15:17+00:00"
  9371. },
  9372. {
  9373. "name": "sebastian/environment",
  9374. "version": "6.1.0",
  9375. "source": {
  9376. "type": "git",
  9377. "url": "https://github.com/sebastianbergmann/environment.git",
  9378. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9379. },
  9380. "dist": {
  9381. "type": "zip",
  9382. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9383. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9384. "shasum": ""
  9385. },
  9386. "require": {
  9387. "php": ">=8.1"
  9388. },
  9389. "require-dev": {
  9390. "phpunit/phpunit": "^10.0"
  9391. },
  9392. "suggest": {
  9393. "ext-posix": "*"
  9394. },
  9395. "type": "library",
  9396. "extra": {
  9397. "branch-alias": {
  9398. "dev-main": "6.1-dev"
  9399. }
  9400. },
  9401. "autoload": {
  9402. "classmap": [
  9403. "src/"
  9404. ]
  9405. },
  9406. "notification-url": "https://packagist.org/downloads/",
  9407. "license": [
  9408. "BSD-3-Clause"
  9409. ],
  9410. "authors": [
  9411. {
  9412. "name": "Sebastian Bergmann",
  9413. "email": "sebastian@phpunit.de"
  9414. }
  9415. ],
  9416. "description": "Provides functionality to handle HHVM/PHP environments",
  9417. "homepage": "https://github.com/sebastianbergmann/environment",
  9418. "keywords": [
  9419. "Xdebug",
  9420. "environment",
  9421. "hhvm"
  9422. ],
  9423. "support": {
  9424. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9425. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9426. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://github.com/sebastianbergmann",
  9431. "type": "github"
  9432. }
  9433. ],
  9434. "time": "2024-03-23T08:47:14+00:00"
  9435. },
  9436. {
  9437. "name": "sebastian/exporter",
  9438. "version": "5.1.2",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/sebastianbergmann/exporter.git",
  9442. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9447. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9448. "shasum": ""
  9449. },
  9450. "require": {
  9451. "ext-mbstring": "*",
  9452. "php": ">=8.1",
  9453. "sebastian/recursion-context": "^5.0"
  9454. },
  9455. "require-dev": {
  9456. "phpunit/phpunit": "^10.0"
  9457. },
  9458. "type": "library",
  9459. "extra": {
  9460. "branch-alias": {
  9461. "dev-main": "5.1-dev"
  9462. }
  9463. },
  9464. "autoload": {
  9465. "classmap": [
  9466. "src/"
  9467. ]
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "BSD-3-Clause"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Sebastian Bergmann",
  9476. "email": "sebastian@phpunit.de"
  9477. },
  9478. {
  9479. "name": "Jeff Welch",
  9480. "email": "whatthejeff@gmail.com"
  9481. },
  9482. {
  9483. "name": "Volker Dusch",
  9484. "email": "github@wallbash.com"
  9485. },
  9486. {
  9487. "name": "Adam Harvey",
  9488. "email": "aharvey@php.net"
  9489. },
  9490. {
  9491. "name": "Bernhard Schussek",
  9492. "email": "bschussek@gmail.com"
  9493. }
  9494. ],
  9495. "description": "Provides the functionality to export PHP variables for visualization",
  9496. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9497. "keywords": [
  9498. "export",
  9499. "exporter"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9503. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9504. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9505. },
  9506. "funding": [
  9507. {
  9508. "url": "https://github.com/sebastianbergmann",
  9509. "type": "github"
  9510. }
  9511. ],
  9512. "time": "2024-03-02T07:17:12+00:00"
  9513. },
  9514. {
  9515. "name": "sebastian/global-state",
  9516. "version": "6.0.2",
  9517. "source": {
  9518. "type": "git",
  9519. "url": "https://github.com/sebastianbergmann/global-state.git",
  9520. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9521. },
  9522. "dist": {
  9523. "type": "zip",
  9524. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9525. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9526. "shasum": ""
  9527. },
  9528. "require": {
  9529. "php": ">=8.1",
  9530. "sebastian/object-reflector": "^3.0",
  9531. "sebastian/recursion-context": "^5.0"
  9532. },
  9533. "require-dev": {
  9534. "ext-dom": "*",
  9535. "phpunit/phpunit": "^10.0"
  9536. },
  9537. "type": "library",
  9538. "extra": {
  9539. "branch-alias": {
  9540. "dev-main": "6.0-dev"
  9541. }
  9542. },
  9543. "autoload": {
  9544. "classmap": [
  9545. "src/"
  9546. ]
  9547. },
  9548. "notification-url": "https://packagist.org/downloads/",
  9549. "license": [
  9550. "BSD-3-Clause"
  9551. ],
  9552. "authors": [
  9553. {
  9554. "name": "Sebastian Bergmann",
  9555. "email": "sebastian@phpunit.de"
  9556. }
  9557. ],
  9558. "description": "Snapshotting of global state",
  9559. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9560. "keywords": [
  9561. "global state"
  9562. ],
  9563. "support": {
  9564. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9565. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9566. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9567. },
  9568. "funding": [
  9569. {
  9570. "url": "https://github.com/sebastianbergmann",
  9571. "type": "github"
  9572. }
  9573. ],
  9574. "time": "2024-03-02T07:19:19+00:00"
  9575. },
  9576. {
  9577. "name": "sebastian/lines-of-code",
  9578. "version": "2.0.2",
  9579. "source": {
  9580. "type": "git",
  9581. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9582. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9583. },
  9584. "dist": {
  9585. "type": "zip",
  9586. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9587. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9588. "shasum": ""
  9589. },
  9590. "require": {
  9591. "nikic/php-parser": "^4.18 || ^5.0",
  9592. "php": ">=8.1"
  9593. },
  9594. "require-dev": {
  9595. "phpunit/phpunit": "^10.0"
  9596. },
  9597. "type": "library",
  9598. "extra": {
  9599. "branch-alias": {
  9600. "dev-main": "2.0-dev"
  9601. }
  9602. },
  9603. "autoload": {
  9604. "classmap": [
  9605. "src/"
  9606. ]
  9607. },
  9608. "notification-url": "https://packagist.org/downloads/",
  9609. "license": [
  9610. "BSD-3-Clause"
  9611. ],
  9612. "authors": [
  9613. {
  9614. "name": "Sebastian Bergmann",
  9615. "email": "sebastian@phpunit.de",
  9616. "role": "lead"
  9617. }
  9618. ],
  9619. "description": "Library for counting the lines of code in PHP source code",
  9620. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9621. "support": {
  9622. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9623. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9624. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9625. },
  9626. "funding": [
  9627. {
  9628. "url": "https://github.com/sebastianbergmann",
  9629. "type": "github"
  9630. }
  9631. ],
  9632. "time": "2023-12-21T08:38:20+00:00"
  9633. },
  9634. {
  9635. "name": "sebastian/object-enumerator",
  9636. "version": "5.0.0",
  9637. "source": {
  9638. "type": "git",
  9639. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9640. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9641. },
  9642. "dist": {
  9643. "type": "zip",
  9644. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9645. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9646. "shasum": ""
  9647. },
  9648. "require": {
  9649. "php": ">=8.1",
  9650. "sebastian/object-reflector": "^3.0",
  9651. "sebastian/recursion-context": "^5.0"
  9652. },
  9653. "require-dev": {
  9654. "phpunit/phpunit": "^10.0"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-main": "5.0-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "classmap": [
  9664. "src/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "BSD-3-Clause"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de"
  9675. }
  9676. ],
  9677. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9678. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9679. "support": {
  9680. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9681. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9682. },
  9683. "funding": [
  9684. {
  9685. "url": "https://github.com/sebastianbergmann",
  9686. "type": "github"
  9687. }
  9688. ],
  9689. "time": "2023-02-03T07:08:32+00:00"
  9690. },
  9691. {
  9692. "name": "sebastian/object-reflector",
  9693. "version": "3.0.0",
  9694. "source": {
  9695. "type": "git",
  9696. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9697. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9698. },
  9699. "dist": {
  9700. "type": "zip",
  9701. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9702. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9703. "shasum": ""
  9704. },
  9705. "require": {
  9706. "php": ">=8.1"
  9707. },
  9708. "require-dev": {
  9709. "phpunit/phpunit": "^10.0"
  9710. },
  9711. "type": "library",
  9712. "extra": {
  9713. "branch-alias": {
  9714. "dev-main": "3.0-dev"
  9715. }
  9716. },
  9717. "autoload": {
  9718. "classmap": [
  9719. "src/"
  9720. ]
  9721. },
  9722. "notification-url": "https://packagist.org/downloads/",
  9723. "license": [
  9724. "BSD-3-Clause"
  9725. ],
  9726. "authors": [
  9727. {
  9728. "name": "Sebastian Bergmann",
  9729. "email": "sebastian@phpunit.de"
  9730. }
  9731. ],
  9732. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9733. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9734. "support": {
  9735. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9736. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9737. },
  9738. "funding": [
  9739. {
  9740. "url": "https://github.com/sebastianbergmann",
  9741. "type": "github"
  9742. }
  9743. ],
  9744. "time": "2023-02-03T07:06:18+00:00"
  9745. },
  9746. {
  9747. "name": "sebastian/recursion-context",
  9748. "version": "5.0.0",
  9749. "source": {
  9750. "type": "git",
  9751. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9752. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9753. },
  9754. "dist": {
  9755. "type": "zip",
  9756. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9757. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9758. "shasum": ""
  9759. },
  9760. "require": {
  9761. "php": ">=8.1"
  9762. },
  9763. "require-dev": {
  9764. "phpunit/phpunit": "^10.0"
  9765. },
  9766. "type": "library",
  9767. "extra": {
  9768. "branch-alias": {
  9769. "dev-main": "5.0-dev"
  9770. }
  9771. },
  9772. "autoload": {
  9773. "classmap": [
  9774. "src/"
  9775. ]
  9776. },
  9777. "notification-url": "https://packagist.org/downloads/",
  9778. "license": [
  9779. "BSD-3-Clause"
  9780. ],
  9781. "authors": [
  9782. {
  9783. "name": "Sebastian Bergmann",
  9784. "email": "sebastian@phpunit.de"
  9785. },
  9786. {
  9787. "name": "Jeff Welch",
  9788. "email": "whatthejeff@gmail.com"
  9789. },
  9790. {
  9791. "name": "Adam Harvey",
  9792. "email": "aharvey@php.net"
  9793. }
  9794. ],
  9795. "description": "Provides functionality to recursively process PHP variables",
  9796. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9797. "support": {
  9798. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9799. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9800. },
  9801. "funding": [
  9802. {
  9803. "url": "https://github.com/sebastianbergmann",
  9804. "type": "github"
  9805. }
  9806. ],
  9807. "time": "2023-02-03T07:05:40+00:00"
  9808. },
  9809. {
  9810. "name": "sebastian/type",
  9811. "version": "4.0.0",
  9812. "source": {
  9813. "type": "git",
  9814. "url": "https://github.com/sebastianbergmann/type.git",
  9815. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9816. },
  9817. "dist": {
  9818. "type": "zip",
  9819. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9820. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9821. "shasum": ""
  9822. },
  9823. "require": {
  9824. "php": ">=8.1"
  9825. },
  9826. "require-dev": {
  9827. "phpunit/phpunit": "^10.0"
  9828. },
  9829. "type": "library",
  9830. "extra": {
  9831. "branch-alias": {
  9832. "dev-main": "4.0-dev"
  9833. }
  9834. },
  9835. "autoload": {
  9836. "classmap": [
  9837. "src/"
  9838. ]
  9839. },
  9840. "notification-url": "https://packagist.org/downloads/",
  9841. "license": [
  9842. "BSD-3-Clause"
  9843. ],
  9844. "authors": [
  9845. {
  9846. "name": "Sebastian Bergmann",
  9847. "email": "sebastian@phpunit.de",
  9848. "role": "lead"
  9849. }
  9850. ],
  9851. "description": "Collection of value objects that represent the types of the PHP type system",
  9852. "homepage": "https://github.com/sebastianbergmann/type",
  9853. "support": {
  9854. "issues": "https://github.com/sebastianbergmann/type/issues",
  9855. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9856. },
  9857. "funding": [
  9858. {
  9859. "url": "https://github.com/sebastianbergmann",
  9860. "type": "github"
  9861. }
  9862. ],
  9863. "time": "2023-02-03T07:10:45+00:00"
  9864. },
  9865. {
  9866. "name": "sebastian/version",
  9867. "version": "4.0.1",
  9868. "source": {
  9869. "type": "git",
  9870. "url": "https://github.com/sebastianbergmann/version.git",
  9871. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9872. },
  9873. "dist": {
  9874. "type": "zip",
  9875. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9876. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9877. "shasum": ""
  9878. },
  9879. "require": {
  9880. "php": ">=8.1"
  9881. },
  9882. "type": "library",
  9883. "extra": {
  9884. "branch-alias": {
  9885. "dev-main": "4.0-dev"
  9886. }
  9887. },
  9888. "autoload": {
  9889. "classmap": [
  9890. "src/"
  9891. ]
  9892. },
  9893. "notification-url": "https://packagist.org/downloads/",
  9894. "license": [
  9895. "BSD-3-Clause"
  9896. ],
  9897. "authors": [
  9898. {
  9899. "name": "Sebastian Bergmann",
  9900. "email": "sebastian@phpunit.de",
  9901. "role": "lead"
  9902. }
  9903. ],
  9904. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9905. "homepage": "https://github.com/sebastianbergmann/version",
  9906. "support": {
  9907. "issues": "https://github.com/sebastianbergmann/version/issues",
  9908. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9909. },
  9910. "funding": [
  9911. {
  9912. "url": "https://github.com/sebastianbergmann",
  9913. "type": "github"
  9914. }
  9915. ],
  9916. "time": "2023-02-07T11:34:05+00:00"
  9917. },
  9918. {
  9919. "name": "swoole/ide-helper",
  9920. "version": "5.1.7",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/swoole/ide-helper.git",
  9924. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9929. "reference": "c6f9cd0aa1a1e3691ed736253f0cdce381d96cae",
  9930. "shasum": ""
  9931. },
  9932. "type": "library",
  9933. "notification-url": "https://packagist.org/downloads/",
  9934. "license": [
  9935. "Apache-2.0"
  9936. ],
  9937. "authors": [
  9938. {
  9939. "name": "Team Swoole",
  9940. "email": "team@swoole.com"
  9941. }
  9942. ],
  9943. "description": "IDE help files for Swoole.",
  9944. "support": {
  9945. "issues": "https://github.com/swoole/ide-helper/issues",
  9946. "source": "https://github.com/swoole/ide-helper/tree/5.1.7"
  9947. },
  9948. "time": "2025-03-22T23:53:02+00:00"
  9949. },
  9950. {
  9951. "name": "symfony/event-dispatcher",
  9952. "version": "v6.4.13",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/symfony/event-dispatcher.git",
  9956. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9961. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "php": ">=8.1",
  9966. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9967. },
  9968. "conflict": {
  9969. "symfony/dependency-injection": "<5.4",
  9970. "symfony/service-contracts": "<2.5"
  9971. },
  9972. "provide": {
  9973. "psr/event-dispatcher-implementation": "1.0",
  9974. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9975. },
  9976. "require-dev": {
  9977. "psr/log": "^1|^2|^3",
  9978. "symfony/config": "^5.4|^6.0|^7.0",
  9979. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9980. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9981. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9982. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9983. "symfony/service-contracts": "^2.5|^3",
  9984. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9985. },
  9986. "type": "library",
  9987. "autoload": {
  9988. "psr-4": {
  9989. "Symfony\\Component\\EventDispatcher\\": ""
  9990. },
  9991. "exclude-from-classmap": [
  9992. "/Tests/"
  9993. ]
  9994. },
  9995. "notification-url": "https://packagist.org/downloads/",
  9996. "license": [
  9997. "MIT"
  9998. ],
  9999. "authors": [
  10000. {
  10001. "name": "Fabien Potencier",
  10002. "email": "fabien@symfony.com"
  10003. },
  10004. {
  10005. "name": "Symfony Community",
  10006. "homepage": "https://symfony.com/contributors"
  10007. }
  10008. ],
  10009. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10010. "homepage": "https://symfony.com",
  10011. "support": {
  10012. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10013. },
  10014. "funding": [
  10015. {
  10016. "url": "https://symfony.com/sponsor",
  10017. "type": "custom"
  10018. },
  10019. {
  10020. "url": "https://github.com/fabpot",
  10021. "type": "github"
  10022. },
  10023. {
  10024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10025. "type": "tidelift"
  10026. }
  10027. ],
  10028. "time": "2024-09-25T14:18:03+00:00"
  10029. },
  10030. {
  10031. "name": "symfony/event-dispatcher-contracts",
  10032. "version": "v3.6.0",
  10033. "source": {
  10034. "type": "git",
  10035. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10036. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  10037. },
  10038. "dist": {
  10039. "type": "zip",
  10040. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  10041. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  10042. "shasum": ""
  10043. },
  10044. "require": {
  10045. "php": ">=8.1",
  10046. "psr/event-dispatcher": "^1"
  10047. },
  10048. "type": "library",
  10049. "extra": {
  10050. "thanks": {
  10051. "url": "https://github.com/symfony/contracts",
  10052. "name": "symfony/contracts"
  10053. },
  10054. "branch-alias": {
  10055. "dev-main": "3.6-dev"
  10056. }
  10057. },
  10058. "autoload": {
  10059. "psr-4": {
  10060. "Symfony\\Contracts\\EventDispatcher\\": ""
  10061. }
  10062. },
  10063. "notification-url": "https://packagist.org/downloads/",
  10064. "license": [
  10065. "MIT"
  10066. ],
  10067. "authors": [
  10068. {
  10069. "name": "Nicolas Grekas",
  10070. "email": "p@tchwork.com"
  10071. },
  10072. {
  10073. "name": "Symfony Community",
  10074. "homepage": "https://symfony.com/contributors"
  10075. }
  10076. ],
  10077. "description": "Generic abstractions related to dispatching event",
  10078. "homepage": "https://symfony.com",
  10079. "keywords": [
  10080. "abstractions",
  10081. "contracts",
  10082. "decoupling",
  10083. "interfaces",
  10084. "interoperability",
  10085. "standards"
  10086. ],
  10087. "support": {
  10088. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  10089. },
  10090. "funding": [
  10091. {
  10092. "url": "https://symfony.com/sponsor",
  10093. "type": "custom"
  10094. },
  10095. {
  10096. "url": "https://github.com/fabpot",
  10097. "type": "github"
  10098. },
  10099. {
  10100. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10101. "type": "tidelift"
  10102. }
  10103. ],
  10104. "time": "2024-09-25T14:21:43+00:00"
  10105. },
  10106. {
  10107. "name": "symfony/filesystem",
  10108. "version": "v6.4.13",
  10109. "source": {
  10110. "type": "git",
  10111. "url": "https://github.com/symfony/filesystem.git",
  10112. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  10113. },
  10114. "dist": {
  10115. "type": "zip",
  10116. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10117. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  10118. "shasum": ""
  10119. },
  10120. "require": {
  10121. "php": ">=8.1",
  10122. "symfony/polyfill-ctype": "~1.8",
  10123. "symfony/polyfill-mbstring": "~1.8"
  10124. },
  10125. "require-dev": {
  10126. "symfony/process": "^5.4|^6.4|^7.0"
  10127. },
  10128. "type": "library",
  10129. "autoload": {
  10130. "psr-4": {
  10131. "Symfony\\Component\\Filesystem\\": ""
  10132. },
  10133. "exclude-from-classmap": [
  10134. "/Tests/"
  10135. ]
  10136. },
  10137. "notification-url": "https://packagist.org/downloads/",
  10138. "license": [
  10139. "MIT"
  10140. ],
  10141. "authors": [
  10142. {
  10143. "name": "Fabien Potencier",
  10144. "email": "fabien@symfony.com"
  10145. },
  10146. {
  10147. "name": "Symfony Community",
  10148. "homepage": "https://symfony.com/contributors"
  10149. }
  10150. ],
  10151. "description": "Provides basic utilities for the filesystem",
  10152. "homepage": "https://symfony.com",
  10153. "support": {
  10154. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  10155. },
  10156. "funding": [
  10157. {
  10158. "url": "https://symfony.com/sponsor",
  10159. "type": "custom"
  10160. },
  10161. {
  10162. "url": "https://github.com/fabpot",
  10163. "type": "github"
  10164. },
  10165. {
  10166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10167. "type": "tidelift"
  10168. }
  10169. ],
  10170. "time": "2024-10-25T15:07:50+00:00"
  10171. },
  10172. {
  10173. "name": "symfony/http-foundation",
  10174. "version": "v6.4.21",
  10175. "source": {
  10176. "type": "git",
  10177. "url": "https://github.com/symfony/http-foundation.git",
  10178. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99"
  10179. },
  10180. "dist": {
  10181. "type": "zip",
  10182. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f0c7ea41db479383b81d436b836d37168fd5b99",
  10183. "reference": "3f0c7ea41db479383b81d436b836d37168fd5b99",
  10184. "shasum": ""
  10185. },
  10186. "require": {
  10187. "php": ">=8.1",
  10188. "symfony/deprecation-contracts": "^2.5|^3",
  10189. "symfony/polyfill-mbstring": "~1.1",
  10190. "symfony/polyfill-php83": "^1.27"
  10191. },
  10192. "conflict": {
  10193. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  10194. },
  10195. "require-dev": {
  10196. "doctrine/dbal": "^2.13.1|^3|^4",
  10197. "predis/predis": "^1.1|^2.0",
  10198. "symfony/cache": "^6.4.12|^7.1.5",
  10199. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10200. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10201. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  10202. "symfony/mime": "^5.4|^6.0|^7.0",
  10203. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  10204. },
  10205. "type": "library",
  10206. "autoload": {
  10207. "psr-4": {
  10208. "Symfony\\Component\\HttpFoundation\\": ""
  10209. },
  10210. "exclude-from-classmap": [
  10211. "/Tests/"
  10212. ]
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "MIT"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Fabien Potencier",
  10221. "email": "fabien@symfony.com"
  10222. },
  10223. {
  10224. "name": "Symfony Community",
  10225. "homepage": "https://symfony.com/contributors"
  10226. }
  10227. ],
  10228. "description": "Defines an object-oriented layer for the HTTP specification",
  10229. "homepage": "https://symfony.com",
  10230. "support": {
  10231. "source": "https://github.com/symfony/http-foundation/tree/v6.4.21"
  10232. },
  10233. "funding": [
  10234. {
  10235. "url": "https://symfony.com/sponsor",
  10236. "type": "custom"
  10237. },
  10238. {
  10239. "url": "https://github.com/fabpot",
  10240. "type": "github"
  10241. },
  10242. {
  10243. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10244. "type": "tidelift"
  10245. }
  10246. ],
  10247. "time": "2025-04-27T13:27:38+00:00"
  10248. },
  10249. {
  10250. "name": "symfony/options-resolver",
  10251. "version": "v6.4.16",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/symfony/options-resolver.git",
  10255. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  10260. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  10261. "shasum": ""
  10262. },
  10263. "require": {
  10264. "php": ">=8.1",
  10265. "symfony/deprecation-contracts": "^2.5|^3"
  10266. },
  10267. "type": "library",
  10268. "autoload": {
  10269. "psr-4": {
  10270. "Symfony\\Component\\OptionsResolver\\": ""
  10271. },
  10272. "exclude-from-classmap": [
  10273. "/Tests/"
  10274. ]
  10275. },
  10276. "notification-url": "https://packagist.org/downloads/",
  10277. "license": [
  10278. "MIT"
  10279. ],
  10280. "authors": [
  10281. {
  10282. "name": "Fabien Potencier",
  10283. "email": "fabien@symfony.com"
  10284. },
  10285. {
  10286. "name": "Symfony Community",
  10287. "homepage": "https://symfony.com/contributors"
  10288. }
  10289. ],
  10290. "description": "Provides an improved replacement for the array_replace PHP function",
  10291. "homepage": "https://symfony.com",
  10292. "keywords": [
  10293. "config",
  10294. "configuration",
  10295. "options"
  10296. ],
  10297. "support": {
  10298. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  10299. },
  10300. "funding": [
  10301. {
  10302. "url": "https://symfony.com/sponsor",
  10303. "type": "custom"
  10304. },
  10305. {
  10306. "url": "https://github.com/fabpot",
  10307. "type": "github"
  10308. },
  10309. {
  10310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10311. "type": "tidelift"
  10312. }
  10313. ],
  10314. "time": "2024-11-20T10:57:02+00:00"
  10315. },
  10316. {
  10317. "name": "symfony/polyfill-php81",
  10318. "version": "v1.32.0",
  10319. "source": {
  10320. "type": "git",
  10321. "url": "https://github.com/symfony/polyfill-php81.git",
  10322. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  10323. },
  10324. "dist": {
  10325. "type": "zip",
  10326. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10327. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  10328. "shasum": ""
  10329. },
  10330. "require": {
  10331. "php": ">=7.2"
  10332. },
  10333. "type": "library",
  10334. "extra": {
  10335. "thanks": {
  10336. "url": "https://github.com/symfony/polyfill",
  10337. "name": "symfony/polyfill"
  10338. }
  10339. },
  10340. "autoload": {
  10341. "files": [
  10342. "bootstrap.php"
  10343. ],
  10344. "psr-4": {
  10345. "Symfony\\Polyfill\\Php81\\": ""
  10346. },
  10347. "classmap": [
  10348. "Resources/stubs"
  10349. ]
  10350. },
  10351. "notification-url": "https://packagist.org/downloads/",
  10352. "license": [
  10353. "MIT"
  10354. ],
  10355. "authors": [
  10356. {
  10357. "name": "Nicolas Grekas",
  10358. "email": "p@tchwork.com"
  10359. },
  10360. {
  10361. "name": "Symfony Community",
  10362. "homepage": "https://symfony.com/contributors"
  10363. }
  10364. ],
  10365. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10366. "homepage": "https://symfony.com",
  10367. "keywords": [
  10368. "compatibility",
  10369. "polyfill",
  10370. "portable",
  10371. "shim"
  10372. ],
  10373. "support": {
  10374. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  10375. },
  10376. "funding": [
  10377. {
  10378. "url": "https://symfony.com/sponsor",
  10379. "type": "custom"
  10380. },
  10381. {
  10382. "url": "https://github.com/fabpot",
  10383. "type": "github"
  10384. },
  10385. {
  10386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10387. "type": "tidelift"
  10388. }
  10389. ],
  10390. "time": "2024-09-09T11:45:10+00:00"
  10391. },
  10392. {
  10393. "name": "symfony/polyfill-php83",
  10394. "version": "v1.32.0",
  10395. "source": {
  10396. "type": "git",
  10397. "url": "https://github.com/symfony/polyfill-php83.git",
  10398. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10399. },
  10400. "dist": {
  10401. "type": "zip",
  10402. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10403. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10404. "shasum": ""
  10405. },
  10406. "require": {
  10407. "php": ">=7.2"
  10408. },
  10409. "type": "library",
  10410. "extra": {
  10411. "thanks": {
  10412. "url": "https://github.com/symfony/polyfill",
  10413. "name": "symfony/polyfill"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "files": [
  10418. "bootstrap.php"
  10419. ],
  10420. "psr-4": {
  10421. "Symfony\\Polyfill\\Php83\\": ""
  10422. },
  10423. "classmap": [
  10424. "Resources/stubs"
  10425. ]
  10426. },
  10427. "notification-url": "https://packagist.org/downloads/",
  10428. "license": [
  10429. "MIT"
  10430. ],
  10431. "authors": [
  10432. {
  10433. "name": "Nicolas Grekas",
  10434. "email": "p@tchwork.com"
  10435. },
  10436. {
  10437. "name": "Symfony Community",
  10438. "homepage": "https://symfony.com/contributors"
  10439. }
  10440. ],
  10441. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10442. "homepage": "https://symfony.com",
  10443. "keywords": [
  10444. "compatibility",
  10445. "polyfill",
  10446. "portable",
  10447. "shim"
  10448. ],
  10449. "support": {
  10450. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  10451. },
  10452. "funding": [
  10453. {
  10454. "url": "https://symfony.com/sponsor",
  10455. "type": "custom"
  10456. },
  10457. {
  10458. "url": "https://github.com/fabpot",
  10459. "type": "github"
  10460. },
  10461. {
  10462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10463. "type": "tidelift"
  10464. }
  10465. ],
  10466. "time": "2024-09-09T11:45:10+00:00"
  10467. },
  10468. {
  10469. "name": "symfony/process",
  10470. "version": "v6.4.20",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/symfony/process.git",
  10474. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  10479. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  10480. "shasum": ""
  10481. },
  10482. "require": {
  10483. "php": ">=8.1"
  10484. },
  10485. "type": "library",
  10486. "autoload": {
  10487. "psr-4": {
  10488. "Symfony\\Component\\Process\\": ""
  10489. },
  10490. "exclude-from-classmap": [
  10491. "/Tests/"
  10492. ]
  10493. },
  10494. "notification-url": "https://packagist.org/downloads/",
  10495. "license": [
  10496. "MIT"
  10497. ],
  10498. "authors": [
  10499. {
  10500. "name": "Fabien Potencier",
  10501. "email": "fabien@symfony.com"
  10502. },
  10503. {
  10504. "name": "Symfony Community",
  10505. "homepage": "https://symfony.com/contributors"
  10506. }
  10507. ],
  10508. "description": "Executes commands in sub-processes",
  10509. "homepage": "https://symfony.com",
  10510. "support": {
  10511. "source": "https://github.com/symfony/process/tree/v6.4.20"
  10512. },
  10513. "funding": [
  10514. {
  10515. "url": "https://symfony.com/sponsor",
  10516. "type": "custom"
  10517. },
  10518. {
  10519. "url": "https://github.com/fabpot",
  10520. "type": "github"
  10521. },
  10522. {
  10523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10524. "type": "tidelift"
  10525. }
  10526. ],
  10527. "time": "2025-03-10T17:11:00+00:00"
  10528. },
  10529. {
  10530. "name": "symfony/stopwatch",
  10531. "version": "v6.4.19",
  10532. "source": {
  10533. "type": "git",
  10534. "url": "https://github.com/symfony/stopwatch.git",
  10535. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c"
  10536. },
  10537. "dist": {
  10538. "type": "zip",
  10539. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  10540. "reference": "dfe1481c12c06266d0c3d58c0cb4b09bd497ab9c",
  10541. "shasum": ""
  10542. },
  10543. "require": {
  10544. "php": ">=8.1",
  10545. "symfony/service-contracts": "^2.5|^3"
  10546. },
  10547. "type": "library",
  10548. "autoload": {
  10549. "psr-4": {
  10550. "Symfony\\Component\\Stopwatch\\": ""
  10551. },
  10552. "exclude-from-classmap": [
  10553. "/Tests/"
  10554. ]
  10555. },
  10556. "notification-url": "https://packagist.org/downloads/",
  10557. "license": [
  10558. "MIT"
  10559. ],
  10560. "authors": [
  10561. {
  10562. "name": "Fabien Potencier",
  10563. "email": "fabien@symfony.com"
  10564. },
  10565. {
  10566. "name": "Symfony Community",
  10567. "homepage": "https://symfony.com/contributors"
  10568. }
  10569. ],
  10570. "description": "Provides a way to profile code",
  10571. "homepage": "https://symfony.com",
  10572. "support": {
  10573. "source": "https://github.com/symfony/stopwatch/tree/v6.4.19"
  10574. },
  10575. "funding": [
  10576. {
  10577. "url": "https://symfony.com/sponsor",
  10578. "type": "custom"
  10579. },
  10580. {
  10581. "url": "https://github.com/fabpot",
  10582. "type": "github"
  10583. },
  10584. {
  10585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10586. "type": "tidelift"
  10587. }
  10588. ],
  10589. "time": "2025-02-21T10:06:30+00:00"
  10590. },
  10591. {
  10592. "name": "theseer/tokenizer",
  10593. "version": "1.2.3",
  10594. "source": {
  10595. "type": "git",
  10596. "url": "https://github.com/theseer/tokenizer.git",
  10597. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10598. },
  10599. "dist": {
  10600. "type": "zip",
  10601. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10602. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10603. "shasum": ""
  10604. },
  10605. "require": {
  10606. "ext-dom": "*",
  10607. "ext-tokenizer": "*",
  10608. "ext-xmlwriter": "*",
  10609. "php": "^7.2 || ^8.0"
  10610. },
  10611. "type": "library",
  10612. "autoload": {
  10613. "classmap": [
  10614. "src/"
  10615. ]
  10616. },
  10617. "notification-url": "https://packagist.org/downloads/",
  10618. "license": [
  10619. "BSD-3-Clause"
  10620. ],
  10621. "authors": [
  10622. {
  10623. "name": "Arne Blankerts",
  10624. "email": "arne@blankerts.de",
  10625. "role": "Developer"
  10626. }
  10627. ],
  10628. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10629. "support": {
  10630. "issues": "https://github.com/theseer/tokenizer/issues",
  10631. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10632. },
  10633. "funding": [
  10634. {
  10635. "url": "https://github.com/theseer",
  10636. "type": "github"
  10637. }
  10638. ],
  10639. "time": "2024-03-03T12:36:25+00:00"
  10640. }
  10641. ],
  10642. "aliases": [],
  10643. "minimum-stability": "dev",
  10644. "stability-flags": {},
  10645. "prefer-stable": true,
  10646. "prefer-lowest": false,
  10647. "platform": {
  10648. "php": ">=8.1"
  10649. },
  10650. "platform-dev": {},
  10651. "plugin-api-version": "2.6.0"
  10652. }