composer.lock 418 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "408b8e53c4a0d313ed75355b91296895",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "easyswoole/spl",
  501. "version": "2.1.3",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  510. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  551. },
  552. "time": "2024-07-09T14:44:25+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.3",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  733. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.3"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2024-07-20T21:45:45+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.9.2",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  795. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  801. "guzzlehttp/psr7": "^2.7.0",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "guzzle/client-integration-tests": "3.0.2",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2024-07-24T11:22:20+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.4",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  921. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-10-17T10:06:22+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.7.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1004. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-07-18T11:15:46+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.42",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1120. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-09-25T02:54:12+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/async-queue",
  1187. "version": "v3.1.42",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/async-queue.git",
  1191. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/async-queue/zipball/1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1196. "reference": "1cd25666ac1e1f23c9eab6be642e86802a96307b",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/command": "~3.1.0",
  1203. "hyperf/contract": "~3.1.0",
  1204. "hyperf/support": "~3.1.0",
  1205. "hyperf/utils": "~3.1.0",
  1206. "php": ">=8.1",
  1207. "psr/container": "^1.0 || ^2.0",
  1208. "psr/event-dispatcher": "^1.0"
  1209. },
  1210. "suggest": {
  1211. "hyperf/di": "Required to use annotations.",
  1212. "hyperf/event": "Required to dispatch a event.",
  1213. "hyperf/logger": "Required to use QueueHandleListener.",
  1214. "hyperf/process": "Auto register the consumer process for server."
  1215. },
  1216. "type": "library",
  1217. "extra": {
  1218. "branch-alias": {
  1219. "dev-master": "3.1-dev"
  1220. },
  1221. "hyperf": {
  1222. "config": "Hyperf\\AsyncQueue\\ConfigProvider"
  1223. }
  1224. },
  1225. "autoload": {
  1226. "files": [
  1227. "src/Functions.php"
  1228. ],
  1229. "psr-4": {
  1230. "Hyperf\\AsyncQueue\\": "src/"
  1231. }
  1232. },
  1233. "notification-url": "https://packagist.org/downloads/",
  1234. "license": [
  1235. "MIT"
  1236. ],
  1237. "description": "A async queue component for hyperf.",
  1238. "homepage": "https://hyperf.io",
  1239. "keywords": [
  1240. "async-queue",
  1241. "hyperf",
  1242. "php"
  1243. ],
  1244. "support": {
  1245. "docs": "https://hyperf.wiki",
  1246. "issues": "https://github.com/hyperf/hyperf/issues",
  1247. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1248. "source": "https://github.com/hyperf/hyperf"
  1249. },
  1250. "funding": [
  1251. {
  1252. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1253. "type": "custom"
  1254. },
  1255. {
  1256. "url": "https://opencollective.com/hyperf",
  1257. "type": "open_collective"
  1258. }
  1259. ],
  1260. "time": "2024-09-25T02:54:12+00:00"
  1261. },
  1262. {
  1263. "name": "hyperf/cache",
  1264. "version": "v3.1.43",
  1265. "source": {
  1266. "type": "git",
  1267. "url": "https://github.com/hyperf/cache.git",
  1268. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1269. },
  1270. "dist": {
  1271. "type": "zip",
  1272. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1273. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1274. "shasum": ""
  1275. },
  1276. "require": {
  1277. "hyperf/codec": "~3.1.0",
  1278. "hyperf/collection": "~3.1.0",
  1279. "hyperf/contract": "~3.1.0",
  1280. "hyperf/support": "~3.1.0",
  1281. "hyperf/utils": "~3.1.0",
  1282. "php": ">=8.1",
  1283. "psr/container": "^1.0 || ^2.0",
  1284. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  1285. },
  1286. "suggest": {
  1287. "hyperf/di": "Use cache annotations.",
  1288. "hyperf/event": "Use listener to delete annotation cache."
  1289. },
  1290. "type": "library",
  1291. "extra": {
  1292. "branch-alias": {
  1293. "dev-master": "3.1-dev"
  1294. },
  1295. "hyperf": {
  1296. "config": "Hyperf\\Cache\\ConfigProvider"
  1297. }
  1298. },
  1299. "autoload": {
  1300. "psr-4": {
  1301. "Hyperf\\Cache\\": "src/"
  1302. }
  1303. },
  1304. "notification-url": "https://packagist.org/downloads/",
  1305. "license": [
  1306. "MIT"
  1307. ],
  1308. "description": "A cache component for hyperf.",
  1309. "homepage": "https://hyperf.io",
  1310. "keywords": [
  1311. "cache",
  1312. "hyperf",
  1313. "php"
  1314. ],
  1315. "support": {
  1316. "docs": "https://hyperf.wiki",
  1317. "issues": "https://github.com/hyperf/hyperf/issues",
  1318. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1319. "source": "https://github.com/hyperf/hyperf"
  1320. },
  1321. "funding": [
  1322. {
  1323. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1324. "type": "custom"
  1325. },
  1326. {
  1327. "url": "https://opencollective.com/hyperf",
  1328. "type": "open_collective"
  1329. }
  1330. ],
  1331. "time": "2024-10-09T10:22:39+00:00"
  1332. },
  1333. {
  1334. "name": "hyperf/code-parser",
  1335. "version": "v3.1.42",
  1336. "source": {
  1337. "type": "git",
  1338. "url": "https://github.com/hyperf/code-parser.git",
  1339. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1340. },
  1341. "dist": {
  1342. "type": "zip",
  1343. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1344. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1345. "shasum": ""
  1346. },
  1347. "require": {
  1348. "hyperf/collection": "~3.1.0",
  1349. "hyperf/stringable": "~3.1.0",
  1350. "hyperf/support": "~3.1.0",
  1351. "php": ">=8.1"
  1352. },
  1353. "suggest": {
  1354. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1355. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1356. },
  1357. "type": "library",
  1358. "extra": {
  1359. "branch-alias": {
  1360. "dev-master": "3.1-dev"
  1361. }
  1362. },
  1363. "autoload": {
  1364. "psr-4": {
  1365. "Hyperf\\CodeParser\\": "src/"
  1366. }
  1367. },
  1368. "notification-url": "https://packagist.org/downloads/",
  1369. "license": [
  1370. "MIT"
  1371. ],
  1372. "description": "A code parser component for Hyperf.",
  1373. "homepage": "https://hyperf.io",
  1374. "keywords": [
  1375. "code-parser",
  1376. "hyperf",
  1377. "php",
  1378. "swoole"
  1379. ],
  1380. "support": {
  1381. "docs": "https://hyperf.wiki",
  1382. "issues": "https://github.com/hyperf/hyperf/issues",
  1383. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1384. "source": "https://github.com/hyperf/hyperf"
  1385. },
  1386. "funding": [
  1387. {
  1388. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1389. "type": "custom"
  1390. },
  1391. {
  1392. "url": "https://opencollective.com/hyperf",
  1393. "type": "open_collective"
  1394. }
  1395. ],
  1396. "time": "2024-09-25T02:54:12+00:00"
  1397. },
  1398. {
  1399. "name": "hyperf/codec",
  1400. "version": "v3.1.42",
  1401. "source": {
  1402. "type": "git",
  1403. "url": "https://github.com/hyperf/codec.git",
  1404. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1405. },
  1406. "dist": {
  1407. "type": "zip",
  1408. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1409. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1410. "shasum": ""
  1411. },
  1412. "require": {
  1413. "ext-json": "*",
  1414. "ext-xml": "*",
  1415. "hyperf/contract": "~3.1.0",
  1416. "php": ">=8.1"
  1417. },
  1418. "suggest": {
  1419. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1420. },
  1421. "type": "library",
  1422. "extra": {
  1423. "branch-alias": {
  1424. "dev-master": "3.1-dev"
  1425. }
  1426. },
  1427. "autoload": {
  1428. "psr-4": {
  1429. "Hyperf\\Codec\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "description": "A codec component for Hyperf.",
  1437. "homepage": "https://hyperf.io",
  1438. "keywords": [
  1439. "codec",
  1440. "hyperf",
  1441. "php",
  1442. "swoole"
  1443. ],
  1444. "support": {
  1445. "docs": "https://hyperf.wiki",
  1446. "issues": "https://github.com/hyperf/hyperf/issues",
  1447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1448. "source": "https://github.com/hyperf/hyperf"
  1449. },
  1450. "funding": [
  1451. {
  1452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1453. "type": "custom"
  1454. },
  1455. {
  1456. "url": "https://opencollective.com/hyperf",
  1457. "type": "open_collective"
  1458. }
  1459. ],
  1460. "time": "2024-09-25T02:54:12+00:00"
  1461. },
  1462. {
  1463. "name": "hyperf/collection",
  1464. "version": "v3.1.45",
  1465. "source": {
  1466. "type": "git",
  1467. "url": "https://github.com/hyperf/collection.git",
  1468. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d"
  1469. },
  1470. "dist": {
  1471. "type": "zip",
  1472. "url": "https://api.github.com/repos/hyperf/collection/zipball/884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1473. "reference": "884b2b84e4f33481f7c4ac8822c5cc854b43582d",
  1474. "shasum": ""
  1475. },
  1476. "require": {
  1477. "hyperf/conditionable": "~3.1.0",
  1478. "hyperf/contract": "~3.1.0",
  1479. "hyperf/macroable": "~3.1.0",
  1480. "hyperf/stringable": "~3.1.0",
  1481. "php": ">=8.1"
  1482. },
  1483. "type": "library",
  1484. "extra": {
  1485. "branch-alias": {
  1486. "dev-master": "3.1-dev"
  1487. }
  1488. },
  1489. "autoload": {
  1490. "files": [
  1491. "src/Functions.php"
  1492. ],
  1493. "psr-4": {
  1494. "Hyperf\\Collection\\": "src/"
  1495. }
  1496. },
  1497. "notification-url": "https://packagist.org/downloads/",
  1498. "license": [
  1499. "MIT"
  1500. ],
  1501. "description": "Hyperf Collection package which come from illuminate/collections",
  1502. "homepage": "https://hyperf.io",
  1503. "keywords": [
  1504. "collection",
  1505. "hyperf",
  1506. "php",
  1507. "swoole"
  1508. ],
  1509. "support": {
  1510. "docs": "https://hyperf.wiki",
  1511. "issues": "https://github.com/hyperf/hyperf/issues",
  1512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1513. "source": "https://github.com/hyperf/hyperf"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://opencollective.com/hyperf",
  1522. "type": "open_collective"
  1523. }
  1524. ],
  1525. "time": "2024-11-14T02:27:55+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/command",
  1529. "version": "v3.1.42",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/command.git",
  1533. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1538. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "hyperf/collection": "~3.1.0",
  1543. "hyperf/context": "~3.1.0",
  1544. "hyperf/contract": "~3.1.0",
  1545. "hyperf/coroutine": "~3.1.0",
  1546. "hyperf/di": "~3.1.0",
  1547. "hyperf/stringable": "~3.1.0",
  1548. "hyperf/support": "~3.1.0",
  1549. "hyperf/tappable": "~3.1.0",
  1550. "php": ">=8.1",
  1551. "psr/event-dispatcher": "^1.0",
  1552. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1553. },
  1554. "suggest": {
  1555. "hyperf/di": "Required to use annotations.",
  1556. "hyperf/event": "Required to use listeners."
  1557. },
  1558. "type": "library",
  1559. "extra": {
  1560. "branch-alias": {
  1561. "dev-master": "3.1-dev"
  1562. },
  1563. "hyperf": {
  1564. "config": "Hyperf\\Command\\ConfigProvider"
  1565. }
  1566. },
  1567. "autoload": {
  1568. "psr-4": {
  1569. "Hyperf\\Command\\": "src/"
  1570. }
  1571. },
  1572. "notification-url": "https://packagist.org/downloads/",
  1573. "license": [
  1574. "MIT"
  1575. ],
  1576. "description": "Command for hyperf",
  1577. "keywords": [
  1578. "command",
  1579. "php",
  1580. "swoole"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/hyperf/command/issues",
  1584. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  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/conditionable",
  1600. "version": "v3.1.42",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/hyperf/conditionable.git",
  1604. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1609. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "php": ">=8.1"
  1614. },
  1615. "type": "library",
  1616. "extra": {
  1617. "branch-alias": {
  1618. "dev-master": "3.1-dev"
  1619. }
  1620. },
  1621. "autoload": {
  1622. "psr-4": {
  1623. "Hyperf\\Conditionable\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1631. "homepage": "https://hyperf.io",
  1632. "keywords": [
  1633. "conditionable",
  1634. "hyperf",
  1635. "php",
  1636. "swoole"
  1637. ],
  1638. "support": {
  1639. "docs": "https://hyperf.wiki",
  1640. "issues": "https://github.com/hyperf/hyperf/issues",
  1641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1642. "source": "https://github.com/hyperf/hyperf"
  1643. },
  1644. "funding": [
  1645. {
  1646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1647. "type": "custom"
  1648. },
  1649. {
  1650. "url": "https://opencollective.com/hyperf",
  1651. "type": "open_collective"
  1652. }
  1653. ],
  1654. "time": "2024-09-25T02:54:12+00:00"
  1655. },
  1656. {
  1657. "name": "hyperf/config",
  1658. "version": "v3.1.42",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/hyperf/config.git",
  1662. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1667. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "hyperf/collection": "~3.1.0",
  1672. "hyperf/contract": "~3.1.0",
  1673. "hyperf/support": "~3.1.0",
  1674. "php": ">=8.1",
  1675. "psr/container": "^1.0 || ^2.0",
  1676. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1677. },
  1678. "suggest": {
  1679. "hyperf/context": "Required to use config()",
  1680. "hyperf/di": "Allows using @Value annotation",
  1681. "hyperf/event": "Allows using @Value annotation",
  1682. "hyperf/framework": "Allows using @Value annotation",
  1683. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1684. },
  1685. "type": "library",
  1686. "extra": {
  1687. "branch-alias": {
  1688. "dev-master": "3.1-dev"
  1689. },
  1690. "hyperf": {
  1691. "config": "Hyperf\\Config\\ConfigProvider"
  1692. }
  1693. },
  1694. "autoload": {
  1695. "files": [
  1696. "./src/Functions.php"
  1697. ],
  1698. "psr-4": {
  1699. "Hyperf\\Config\\": "src/"
  1700. }
  1701. },
  1702. "notification-url": "https://packagist.org/downloads/",
  1703. "license": [
  1704. "MIT"
  1705. ],
  1706. "description": "An independent component that provides configuration container.",
  1707. "homepage": "https://hyperf.io",
  1708. "keywords": [
  1709. "config",
  1710. "configuration",
  1711. "hyperf",
  1712. "php",
  1713. "swoole"
  1714. ],
  1715. "support": {
  1716. "docs": "https://hyperf.wiki",
  1717. "issues": "https://github.com/hyperf/hyperf/issues",
  1718. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1719. "source": "https://github.com/hyperf/hyperf"
  1720. },
  1721. "funding": [
  1722. {
  1723. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1724. "type": "custom"
  1725. },
  1726. {
  1727. "url": "https://opencollective.com/hyperf",
  1728. "type": "open_collective"
  1729. }
  1730. ],
  1731. "time": "2024-09-25T02:54:12+00:00"
  1732. },
  1733. {
  1734. "name": "hyperf/config-center",
  1735. "version": "v3.1.42",
  1736. "source": {
  1737. "type": "git",
  1738. "url": "https://github.com/hyperf/config-center.git",
  1739. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1740. },
  1741. "dist": {
  1742. "type": "zip",
  1743. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1744. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1745. "shasum": ""
  1746. },
  1747. "require": {
  1748. "hyperf/support": "~3.1.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "hyperf/process": "^2.1"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "branch-alias": {
  1757. "dev-master": "3.1-dev"
  1758. },
  1759. "hyperf": {
  1760. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1761. }
  1762. },
  1763. "autoload": {
  1764. "psr-4": {
  1765. "Hyperf\\ConfigCenter\\": "src/"
  1766. }
  1767. },
  1768. "notification-url": "https://packagist.org/downloads/",
  1769. "license": [
  1770. "MIT"
  1771. ],
  1772. "description": "The abstraction component of config center",
  1773. "homepage": "https://hyperf.io",
  1774. "keywords": [
  1775. "config-center",
  1776. "hyperf",
  1777. "php"
  1778. ],
  1779. "support": {
  1780. "docs": "https://hyperf.wiki",
  1781. "issues": "https://github.com/hyperf/hyperf/issues",
  1782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1783. "source": "https://github.com/hyperf/hyperf"
  1784. },
  1785. "funding": [
  1786. {
  1787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1788. "type": "custom"
  1789. },
  1790. {
  1791. "url": "https://opencollective.com/hyperf",
  1792. "type": "open_collective"
  1793. }
  1794. ],
  1795. "time": "2024-09-25T02:54:12+00:00"
  1796. },
  1797. {
  1798. "name": "hyperf/config-nacos",
  1799. "version": "v3.1.42",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/hyperf/config-nacos.git",
  1803. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1808. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "hyperf/codec": "~3.1.0",
  1813. "hyperf/config-center": "~3.1.0",
  1814. "hyperf/contract": "~3.1.0",
  1815. "hyperf/guzzle": "~3.1.0",
  1816. "hyperf/nacos": "~3.1.0",
  1817. "hyperf/support": "~3.1.0",
  1818. "hyperf/utils": "~3.1.0",
  1819. "jetbrains/phpstorm-attributes": "^1.0",
  1820. "php": ">=8.1"
  1821. },
  1822. "suggest": {
  1823. "ext-json": "*",
  1824. "ext-simplexml": "*",
  1825. "ext-yaml": "*",
  1826. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1827. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1828. "hyperf/process": "Required to use processes. (~2.2.0)"
  1829. },
  1830. "type": "library",
  1831. "extra": {
  1832. "branch-alias": {
  1833. "dev-master": "3.1-dev"
  1834. },
  1835. "hyperf": {
  1836. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1837. }
  1838. },
  1839. "autoload": {
  1840. "psr-4": {
  1841. "Hyperf\\ConfigNacos\\": "src/"
  1842. }
  1843. },
  1844. "notification-url": "https://packagist.org/downloads/",
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "description": "A nacos adapter for config center component.",
  1849. "homepage": "https://hyperf.io",
  1850. "keywords": [
  1851. "hyperf",
  1852. "nacos",
  1853. "php",
  1854. "swoole"
  1855. ],
  1856. "support": {
  1857. "docs": "https://hyperf.wiki",
  1858. "issues": "https://github.com/hyperf/hyperf/issues",
  1859. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1860. "source": "https://github.com/hyperf/hyperf"
  1861. },
  1862. "funding": [
  1863. {
  1864. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1865. "type": "custom"
  1866. },
  1867. {
  1868. "url": "https://opencollective.com/hyperf",
  1869. "type": "open_collective"
  1870. }
  1871. ],
  1872. "time": "2024-09-25T02:54:12+00:00"
  1873. },
  1874. {
  1875. "name": "hyperf/constants",
  1876. "version": "v3.1.42",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://github.com/hyperf/constants.git",
  1880. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1885. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1886. "shasum": ""
  1887. },
  1888. "require": {
  1889. "hyperf/di": "~3.1.0",
  1890. "hyperf/support": "~3.1.0",
  1891. "hyperf/utils": "~3.1.0",
  1892. "php": ">=8.1"
  1893. },
  1894. "suggest": {
  1895. "hyperf/translation": "Required to use translation."
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "3.1-dev"
  1901. },
  1902. "hyperf": {
  1903. "config": "Hyperf\\Constants\\ConfigProvider"
  1904. }
  1905. },
  1906. "autoload": {
  1907. "psr-4": {
  1908. "Hyperf\\Constants\\": "src/"
  1909. }
  1910. },
  1911. "notification-url": "https://packagist.org/downloads/",
  1912. "license": [
  1913. "MIT"
  1914. ],
  1915. "description": "A constants component for hyperf.",
  1916. "homepage": "https://hyperf.io",
  1917. "keywords": [
  1918. "constants",
  1919. "hyperf",
  1920. "php"
  1921. ],
  1922. "support": {
  1923. "docs": "https://hyperf.wiki",
  1924. "issues": "https://github.com/hyperf/hyperf/issues",
  1925. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1926. "source": "https://github.com/hyperf/hyperf"
  1927. },
  1928. "funding": [
  1929. {
  1930. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1931. "type": "custom"
  1932. },
  1933. {
  1934. "url": "https://opencollective.com/hyperf",
  1935. "type": "open_collective"
  1936. }
  1937. ],
  1938. "time": "2024-09-25T02:54:12+00:00"
  1939. },
  1940. {
  1941. "name": "hyperf/consul",
  1942. "version": "v3.1.42",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/hyperf/consul.git",
  1946. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1951. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1956. "php": ">=8.1"
  1957. },
  1958. "type": "library",
  1959. "extra": {
  1960. "branch-alias": {
  1961. "dev-master": "3.1-dev"
  1962. },
  1963. "hyperf": {
  1964. "config": "Hyperf\\Consul\\ConfigProvider"
  1965. }
  1966. },
  1967. "autoload": {
  1968. "psr-4": {
  1969. "Hyperf\\Consul\\": "src/"
  1970. }
  1971. },
  1972. "notification-url": "https://packagist.org/downloads/",
  1973. "license": [
  1974. "MIT"
  1975. ],
  1976. "description": "A Consul Client for Hyperf.",
  1977. "homepage": "https://hyperf.io",
  1978. "keywords": [
  1979. "consul",
  1980. "consul-client",
  1981. "hyperf",
  1982. "php",
  1983. "swoole"
  1984. ],
  1985. "support": {
  1986. "docs": "https://hyperf.wiki",
  1987. "issues": "https://github.com/hyperf/hyperf/issues",
  1988. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1989. "source": "https://github.com/hyperf/hyperf"
  1990. },
  1991. "funding": [
  1992. {
  1993. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1994. "type": "custom"
  1995. },
  1996. {
  1997. "url": "https://opencollective.com/hyperf",
  1998. "type": "open_collective"
  1999. }
  2000. ],
  2001. "time": "2024-09-25T02:54:12+00:00"
  2002. },
  2003. {
  2004. "name": "hyperf/context",
  2005. "version": "v3.1.42",
  2006. "source": {
  2007. "type": "git",
  2008. "url": "https://github.com/hyperf/context.git",
  2009. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  2010. },
  2011. "dist": {
  2012. "type": "zip",
  2013. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  2014. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  2015. "shasum": ""
  2016. },
  2017. "require": {
  2018. "hyperf/engine": "^2.0",
  2019. "php": ">=8.1"
  2020. },
  2021. "suggest": {
  2022. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  2023. },
  2024. "type": "library",
  2025. "extra": {
  2026. "branch-alias": {
  2027. "dev-master": "3.1-dev"
  2028. }
  2029. },
  2030. "autoload": {
  2031. "psr-4": {
  2032. "Hyperf\\Context\\": "src/"
  2033. }
  2034. },
  2035. "notification-url": "https://packagist.org/downloads/",
  2036. "license": [
  2037. "MIT"
  2038. ],
  2039. "description": "A coroutine/application context library.",
  2040. "homepage": "https://hyperf.io",
  2041. "keywords": [
  2042. "Context",
  2043. "hyperf",
  2044. "php",
  2045. "swoole"
  2046. ],
  2047. "support": {
  2048. "docs": "https://hyperf.wiki",
  2049. "issues": "https://github.com/hyperf/hyperf/issues",
  2050. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2051. "source": "https://github.com/hyperf/hyperf"
  2052. },
  2053. "funding": [
  2054. {
  2055. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2056. "type": "custom"
  2057. },
  2058. {
  2059. "url": "https://opencollective.com/hyperf",
  2060. "type": "open_collective"
  2061. }
  2062. ],
  2063. "time": "2024-09-25T02:54:12+00:00"
  2064. },
  2065. {
  2066. "name": "hyperf/contract",
  2067. "version": "v3.1.42",
  2068. "source": {
  2069. "type": "git",
  2070. "url": "https://github.com/hyperf/contract.git",
  2071. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  2072. },
  2073. "dist": {
  2074. "type": "zip",
  2075. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2076. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2077. "shasum": ""
  2078. },
  2079. "require": {
  2080. "php": ">=8.1"
  2081. },
  2082. "type": "library",
  2083. "extra": {
  2084. "branch-alias": {
  2085. "dev-master": "3.1-dev"
  2086. }
  2087. },
  2088. "autoload": {
  2089. "psr-4": {
  2090. "Hyperf\\Contract\\": "src/"
  2091. }
  2092. },
  2093. "notification-url": "https://packagist.org/downloads/",
  2094. "license": [
  2095. "MIT"
  2096. ],
  2097. "description": "The contracts of Hyperf.",
  2098. "homepage": "https://hyperf.io",
  2099. "keywords": [
  2100. "hyperf",
  2101. "php",
  2102. "swoole"
  2103. ],
  2104. "support": {
  2105. "docs": "https://hyperf.wiki",
  2106. "issues": "https://github.com/hyperf/hyperf/issues",
  2107. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2108. "source": "https://github.com/hyperf/hyperf"
  2109. },
  2110. "funding": [
  2111. {
  2112. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2113. "type": "custom"
  2114. },
  2115. {
  2116. "url": "https://opencollective.com/hyperf",
  2117. "type": "open_collective"
  2118. }
  2119. ],
  2120. "time": "2024-09-25T02:54:12+00:00"
  2121. },
  2122. {
  2123. "name": "hyperf/coordinator",
  2124. "version": "v3.1.42",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/hyperf/coordinator.git",
  2128. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2133. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "hyperf/engine": "^2.0",
  2138. "php": ">=8.1"
  2139. },
  2140. "type": "library",
  2141. "extra": {
  2142. "branch-alias": {
  2143. "dev-master": "3.1-dev"
  2144. }
  2145. },
  2146. "autoload": {
  2147. "files": [
  2148. "src/Functions.php"
  2149. ],
  2150. "psr-4": {
  2151. "Hyperf\\Coordinator\\": "src/"
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "description": "Hyperf Coordinator",
  2159. "homepage": "https://hyperf.io",
  2160. "keywords": [
  2161. "Coordinator",
  2162. "hyperf",
  2163. "php",
  2164. "swoole"
  2165. ],
  2166. "support": {
  2167. "docs": "https://hyperf.wiki",
  2168. "issues": "https://github.com/hyperf/hyperf/issues",
  2169. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2170. "source": "https://github.com/hyperf/hyperf"
  2171. },
  2172. "funding": [
  2173. {
  2174. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2175. "type": "custom"
  2176. },
  2177. {
  2178. "url": "https://opencollective.com/hyperf",
  2179. "type": "open_collective"
  2180. }
  2181. ],
  2182. "time": "2024-09-25T02:54:12+00:00"
  2183. },
  2184. {
  2185. "name": "hyperf/coroutine",
  2186. "version": "v3.1.42",
  2187. "source": {
  2188. "type": "git",
  2189. "url": "https://github.com/hyperf/coroutine.git",
  2190. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2191. },
  2192. "dist": {
  2193. "type": "zip",
  2194. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2195. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2196. "shasum": ""
  2197. },
  2198. "require": {
  2199. "hyperf/context": "~3.1.0",
  2200. "hyperf/contract": "~3.1.0",
  2201. "hyperf/engine": "^2.0",
  2202. "php": ">=8.1"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "3.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "files": [
  2212. "src/Functions.php"
  2213. ],
  2214. "psr-4": {
  2215. "Hyperf\\Coroutine\\": "src/"
  2216. }
  2217. },
  2218. "notification-url": "https://packagist.org/downloads/",
  2219. "license": [
  2220. "MIT"
  2221. ],
  2222. "description": "Hyperf Coroutine",
  2223. "homepage": "https://hyperf.io",
  2224. "keywords": [
  2225. "coroutine",
  2226. "hyperf",
  2227. "php",
  2228. "swoole"
  2229. ],
  2230. "support": {
  2231. "docs": "https://hyperf.wiki",
  2232. "issues": "https://github.com/hyperf/hyperf/issues",
  2233. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2234. "source": "https://github.com/hyperf/hyperf"
  2235. },
  2236. "funding": [
  2237. {
  2238. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2239. "type": "custom"
  2240. },
  2241. {
  2242. "url": "https://opencollective.com/hyperf",
  2243. "type": "open_collective"
  2244. }
  2245. ],
  2246. "time": "2024-09-25T02:54:12+00:00"
  2247. },
  2248. {
  2249. "name": "hyperf/database",
  2250. "version": "v3.1.45",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/hyperf/database.git",
  2254. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/hyperf/database/zipball/6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2259. "reference": "6632bbd7a118416cfecfc80fe0f85c650aa0941e",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "hyperf/code-parser": "~3.1.0",
  2264. "hyperf/collection": "~3.1.23",
  2265. "hyperf/conditionable": "~3.1.0",
  2266. "hyperf/macroable": "~3.1.0",
  2267. "hyperf/support": "~3.1.0",
  2268. "hyperf/tappable": "~3.1.0",
  2269. "hyperf/utils": "~3.1.0",
  2270. "nesbot/carbon": "^2.0",
  2271. "php": ">=8.1",
  2272. "psr/container": "^1.0 || ^2.0",
  2273. "psr/event-dispatcher": "^1.0"
  2274. },
  2275. "suggest": {
  2276. "doctrine/dbal": "Required to rename columns (^3.0).",
  2277. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2278. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2279. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2280. },
  2281. "type": "library",
  2282. "extra": {
  2283. "branch-alias": {
  2284. "dev-master": "3.1-dev"
  2285. }
  2286. },
  2287. "autoload": {
  2288. "psr-4": {
  2289. "Hyperf\\Database\\": "src/"
  2290. }
  2291. },
  2292. "notification-url": "https://packagist.org/downloads/",
  2293. "license": [
  2294. "MIT"
  2295. ],
  2296. "description": "A flexible database library.",
  2297. "homepage": "https://hyperf.io",
  2298. "keywords": [
  2299. "database",
  2300. "hyperf",
  2301. "php"
  2302. ],
  2303. "support": {
  2304. "docs": "https://hyperf.wiki",
  2305. "issues": "https://github.com/hyperf/hyperf/issues",
  2306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2307. "source": "https://github.com/hyperf/hyperf"
  2308. },
  2309. "funding": [
  2310. {
  2311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2312. "type": "custom"
  2313. },
  2314. {
  2315. "url": "https://opencollective.com/hyperf",
  2316. "type": "open_collective"
  2317. }
  2318. ],
  2319. "time": "2024-11-11T05:55:47+00:00"
  2320. },
  2321. {
  2322. "name": "hyperf/db-connection",
  2323. "version": "v3.1.44",
  2324. "source": {
  2325. "type": "git",
  2326. "url": "https://github.com/hyperf/db-connection.git",
  2327. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2328. },
  2329. "dist": {
  2330. "type": "zip",
  2331. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2332. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2333. "shasum": ""
  2334. },
  2335. "require": {
  2336. "hyperf/database": "~3.1.0",
  2337. "hyperf/di": "~3.1.0",
  2338. "hyperf/framework": "~3.1.0",
  2339. "hyperf/model-listener": "~3.1.0",
  2340. "hyperf/pool": "~3.1.0",
  2341. "hyperf/support": "~3.1.0",
  2342. "hyperf/utils": "~3.1.0",
  2343. "php": ">=8.1",
  2344. "psr/container": "^1.0 || ^2.0"
  2345. },
  2346. "type": "library",
  2347. "extra": {
  2348. "branch-alias": {
  2349. "dev-master": "3.1-dev"
  2350. },
  2351. "hyperf": {
  2352. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2353. }
  2354. },
  2355. "autoload": {
  2356. "psr-4": {
  2357. "Hyperf\\DbConnection\\": "src/"
  2358. }
  2359. },
  2360. "notification-url": "https://packagist.org/downloads/",
  2361. "license": [
  2362. "MIT"
  2363. ],
  2364. "description": "A hyperf db connection handler for hyperf/database.",
  2365. "homepage": "https://hyperf.io",
  2366. "keywords": [
  2367. "Connection",
  2368. "database",
  2369. "hyperf",
  2370. "php"
  2371. ],
  2372. "support": {
  2373. "docs": "https://hyperf.wiki",
  2374. "issues": "https://github.com/hyperf/hyperf/issues",
  2375. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2376. "source": "https://github.com/hyperf/hyperf"
  2377. },
  2378. "funding": [
  2379. {
  2380. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2381. "type": "custom"
  2382. },
  2383. {
  2384. "url": "https://opencollective.com/hyperf",
  2385. "type": "open_collective"
  2386. }
  2387. ],
  2388. "time": "2024-10-11T08:58:16+00:00"
  2389. },
  2390. {
  2391. "name": "hyperf/di",
  2392. "version": "v3.1.42",
  2393. "source": {
  2394. "type": "git",
  2395. "url": "https://github.com/hyperf/di.git",
  2396. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2397. },
  2398. "dist": {
  2399. "type": "zip",
  2400. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2401. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2402. "shasum": ""
  2403. },
  2404. "require": {
  2405. "doctrine/instantiator": "^1.0",
  2406. "hyperf/code-parser": "~3.1.0",
  2407. "hyperf/pipeline": "~3.1.0",
  2408. "hyperf/stdlib": "~3.1.0",
  2409. "hyperf/support": "~3.1.0",
  2410. "nikic/php-parser": "^4.1",
  2411. "php": ">=8.1",
  2412. "php-di/phpdoc-reader": "^2.2",
  2413. "psr/container": "^1.0 || ^2.0",
  2414. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2415. "vlucas/phpdotenv": "^5.0"
  2416. },
  2417. "suggest": {
  2418. "ext-pcntl": "Required to scan annotations.",
  2419. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2420. },
  2421. "type": "library",
  2422. "extra": {
  2423. "branch-alias": {
  2424. "dev-master": "3.1-dev"
  2425. },
  2426. "hyperf": {
  2427. "config": "Hyperf\\Di\\ConfigProvider"
  2428. }
  2429. },
  2430. "autoload": {
  2431. "psr-4": {
  2432. "Hyperf\\Di\\": "src/"
  2433. }
  2434. },
  2435. "notification-url": "https://packagist.org/downloads/",
  2436. "license": [
  2437. "MIT"
  2438. ],
  2439. "description": "A DI for Hyperf.",
  2440. "homepage": "https://hyperf.io",
  2441. "keywords": [
  2442. "annotation",
  2443. "di",
  2444. "hyperf",
  2445. "php",
  2446. "swoole"
  2447. ],
  2448. "support": {
  2449. "docs": "https://hyperf.wiki",
  2450. "issues": "https://github.com/hyperf/hyperf/issues",
  2451. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2452. "source": "https://github.com/hyperf/hyperf"
  2453. },
  2454. "funding": [
  2455. {
  2456. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2457. "type": "custom"
  2458. },
  2459. {
  2460. "url": "https://opencollective.com/hyperf",
  2461. "type": "open_collective"
  2462. }
  2463. ],
  2464. "time": "2024-09-25T02:54:12+00:00"
  2465. },
  2466. {
  2467. "name": "hyperf/dispatcher",
  2468. "version": "v3.1.42",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://github.com/hyperf/dispatcher.git",
  2472. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2477. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2478. "shasum": ""
  2479. },
  2480. "require": {
  2481. "hyperf/contract": "~3.1.0",
  2482. "php": ">=8.1",
  2483. "psr/container": "^1.0 || ^2.0",
  2484. "psr/http-message": "^1.0 || ^2.0",
  2485. "psr/http-server-middleware": "^1.0"
  2486. },
  2487. "type": "library",
  2488. "extra": {
  2489. "branch-alias": {
  2490. "dev-master": "3.1-dev"
  2491. },
  2492. "hyperf": {
  2493. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2494. }
  2495. },
  2496. "autoload": {
  2497. "psr-4": {
  2498. "Hyperf\\Dispatcher\\": "src/"
  2499. }
  2500. },
  2501. "notification-url": "https://packagist.org/downloads/",
  2502. "license": [
  2503. "MIT"
  2504. ],
  2505. "description": "A HTTP Server for Hyperf.",
  2506. "homepage": "https://hyperf.io",
  2507. "keywords": [
  2508. "dispatcher",
  2509. "filter",
  2510. "hyperf",
  2511. "middleware",
  2512. "php",
  2513. "swoole"
  2514. ],
  2515. "support": {
  2516. "docs": "https://hyperf.wiki",
  2517. "issues": "https://github.com/hyperf/hyperf/issues",
  2518. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2519. "source": "https://github.com/hyperf/hyperf"
  2520. },
  2521. "funding": [
  2522. {
  2523. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2524. "type": "custom"
  2525. },
  2526. {
  2527. "url": "https://opencollective.com/hyperf",
  2528. "type": "open_collective"
  2529. }
  2530. ],
  2531. "time": "2024-09-25T02:54:12+00:00"
  2532. },
  2533. {
  2534. "name": "hyperf/engine",
  2535. "version": "v2.11.0",
  2536. "source": {
  2537. "type": "git",
  2538. "url": "https://github.com/hyperf/engine.git",
  2539. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2540. },
  2541. "dist": {
  2542. "type": "zip",
  2543. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2544. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2545. "shasum": ""
  2546. },
  2547. "require": {
  2548. "hyperf/engine-contract": "~1.10.0",
  2549. "php": ">=8.0"
  2550. },
  2551. "conflict": {
  2552. "ext-swoole": "<5.0"
  2553. },
  2554. "require-dev": {
  2555. "friendsofphp/php-cs-fixer": "^3.0",
  2556. "hyperf/guzzle": "^3.0",
  2557. "hyperf/http-message": "^3.0",
  2558. "mockery/mockery": "^1.5",
  2559. "phpstan/phpstan": "^1.0",
  2560. "phpunit/phpunit": "^9.4",
  2561. "swoole/ide-helper": "5.*"
  2562. },
  2563. "suggest": {
  2564. "ext-sockets": "*",
  2565. "ext-swoole": ">=5.0",
  2566. "hyperf/http-message": "Required to use ResponseEmitter.",
  2567. "psr/http-message": "Required to use WebSocket Frame."
  2568. },
  2569. "type": "library",
  2570. "extra": {
  2571. "branch-alias": {
  2572. "dev-master": "2.11-dev"
  2573. },
  2574. "hyperf": {
  2575. "config": "Hyperf\\Engine\\ConfigProvider"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "files": [
  2580. "src/Functions.php"
  2581. ],
  2582. "psr-4": {
  2583. "Hyperf\\Engine\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "description": "Coroutine engine provided by swoole.",
  2591. "keywords": [
  2592. "engine",
  2593. "hyperf",
  2594. "php",
  2595. "swoole"
  2596. ],
  2597. "support": {
  2598. "issues": "https://github.com/hyperf/engine/issues",
  2599. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2600. },
  2601. "funding": [
  2602. {
  2603. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2604. "type": "custom"
  2605. },
  2606. {
  2607. "url": "https://opencollective.com/hyperf",
  2608. "type": "open_collective"
  2609. }
  2610. ],
  2611. "time": "2024-04-17T13:36:28+00:00"
  2612. },
  2613. {
  2614. "name": "hyperf/engine-contract",
  2615. "version": "v1.10.1",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/hyperf/engine-contract.git",
  2619. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2624. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=8.0"
  2629. },
  2630. "require-dev": {
  2631. "friendsofphp/php-cs-fixer": "^3.0",
  2632. "mockery/mockery": "^1.0",
  2633. "phpstan/phpstan": "^1.0",
  2634. "phpunit/phpunit": ">=7.0",
  2635. "psr/http-message": "^1.0",
  2636. "swoole/ide-helper": "^4.5"
  2637. },
  2638. "suggest": {
  2639. "psr/http-message": "Required to use WebSocket Frame."
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "1.9-dev"
  2645. }
  2646. },
  2647. "autoload": {
  2648. "psr-4": {
  2649. "Hyperf\\Engine\\Contract\\": "src/"
  2650. }
  2651. },
  2652. "notification-url": "https://packagist.org/downloads/",
  2653. "license": [
  2654. "MIT"
  2655. ],
  2656. "description": "Contract for Coroutine Engine",
  2657. "keywords": [
  2658. "contract",
  2659. "coroutine",
  2660. "engine",
  2661. "hyperf",
  2662. "php"
  2663. ],
  2664. "support": {
  2665. "issues": "https://github.com/hyperf/engine-contract/issues",
  2666. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2667. },
  2668. "funding": [
  2669. {
  2670. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2671. "type": "custom"
  2672. },
  2673. {
  2674. "url": "https://opencollective.com/hyperf",
  2675. "type": "open_collective"
  2676. }
  2677. ],
  2678. "time": "2024-04-17T13:34:51+00:00"
  2679. },
  2680. {
  2681. "name": "hyperf/event",
  2682. "version": "v3.1.42",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/hyperf/event.git",
  2686. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2691. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "hyperf/contract": "~3.1.0",
  2696. "hyperf/stdlib": "~3.1.0",
  2697. "php": ">=8.1",
  2698. "psr/event-dispatcher": "^1.0"
  2699. },
  2700. "suggest": {
  2701. "hyperf/di": "Required to use annotatioins."
  2702. },
  2703. "type": "library",
  2704. "extra": {
  2705. "branch-alias": {
  2706. "dev-master": "3.1-dev"
  2707. },
  2708. "hyperf": {
  2709. "config": "Hyperf\\Event\\ConfigProvider"
  2710. }
  2711. },
  2712. "autoload": {
  2713. "psr-4": {
  2714. "Hyperf\\Event\\": "src/"
  2715. }
  2716. },
  2717. "notification-url": "https://packagist.org/downloads/",
  2718. "license": [
  2719. "MIT"
  2720. ],
  2721. "description": "an event manager that implements PSR-14.",
  2722. "homepage": "https://hyperf.io",
  2723. "keywords": [
  2724. "event",
  2725. "hyperf",
  2726. "php",
  2727. "swoole"
  2728. ],
  2729. "support": {
  2730. "docs": "https://hyperf.wiki",
  2731. "issues": "https://github.com/hyperf/hyperf/issues",
  2732. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2733. "source": "https://github.com/hyperf/hyperf"
  2734. },
  2735. "funding": [
  2736. {
  2737. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2738. "type": "custom"
  2739. },
  2740. {
  2741. "url": "https://opencollective.com/hyperf",
  2742. "type": "open_collective"
  2743. }
  2744. ],
  2745. "time": "2024-09-25T02:54:12+00:00"
  2746. },
  2747. {
  2748. "name": "hyperf/exception-handler",
  2749. "version": "v3.1.42",
  2750. "source": {
  2751. "type": "git",
  2752. "url": "https://github.com/hyperf/exception-handler.git",
  2753. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2754. },
  2755. "dist": {
  2756. "type": "zip",
  2757. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2758. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2759. "shasum": ""
  2760. },
  2761. "require": {
  2762. "hyperf/context": "~3.1.0",
  2763. "hyperf/contract": "~3.1.0",
  2764. "hyperf/dispatcher": "~3.1.0",
  2765. "hyperf/http-message": "~3.1.0",
  2766. "hyperf/stdlib": "~3.1.0",
  2767. "hyperf/support": "~3.1.0",
  2768. "php": ">=8.1",
  2769. "psr/container": "^1.0 || ^2.0",
  2770. "psr/http-message": "^1.0 || ^2.0",
  2771. "swow/psr7-plus": "^1.0"
  2772. },
  2773. "suggest": {
  2774. "hyperf/di": "Required to use #[ExceptionHandler]",
  2775. "hyperf/event": "Required to use listeners",
  2776. "hyperf/framework": "Required to use listeners",
  2777. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2778. },
  2779. "type": "library",
  2780. "extra": {
  2781. "branch-alias": {
  2782. "dev-master": "3.1-dev"
  2783. },
  2784. "hyperf": {
  2785. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2786. }
  2787. },
  2788. "autoload": {
  2789. "psr-4": {
  2790. "Hyperf\\ExceptionHandler\\": "src/"
  2791. }
  2792. },
  2793. "notification-url": "https://packagist.org/downloads/",
  2794. "license": [
  2795. "MIT"
  2796. ],
  2797. "description": "Exception handler for hyperf",
  2798. "homepage": "https://hyperf.io",
  2799. "keywords": [
  2800. "exception-handler",
  2801. "php",
  2802. "swoole"
  2803. ],
  2804. "support": {
  2805. "docs": "https://hyperf.wiki",
  2806. "issues": "https://github.com/hyperf/hyperf/issues",
  2807. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2808. "source": "https://github.com/hyperf/hyperf"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2813. "type": "custom"
  2814. },
  2815. {
  2816. "url": "https://opencollective.com/hyperf",
  2817. "type": "open_collective"
  2818. }
  2819. ],
  2820. "time": "2024-09-25T02:54:12+00:00"
  2821. },
  2822. {
  2823. "name": "hyperf/framework",
  2824. "version": "v3.1.42",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/hyperf/framework.git",
  2828. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2833. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "fig/http-message-util": "^1.1.2",
  2838. "hyperf/contract": "~3.1.0",
  2839. "hyperf/coordinator": "~3.1.0",
  2840. "hyperf/coroutine": "~3.1.0",
  2841. "php": ">=8.1",
  2842. "psr/container": "^1.0 || ^2.0",
  2843. "psr/event-dispatcher": "^1.0",
  2844. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2845. },
  2846. "suggest": {
  2847. "ext-swoole": "Required to use swoole engine.",
  2848. "hyperf/command": "Required to use Command annotation.",
  2849. "hyperf/di": "Required to use Command annotation.",
  2850. "hyperf/dispatcher": "Required to use BootApplication event.",
  2851. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "3.1-dev"
  2857. },
  2858. "hyperf": {
  2859. "config": "Hyperf\\Framework\\ConfigProvider"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Hyperf\\Framework\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2872. "homepage": "https://hyperf.io",
  2873. "keywords": [
  2874. "Microservice",
  2875. "framework",
  2876. "hyperf",
  2877. "middleware",
  2878. "php",
  2879. "swoole"
  2880. ],
  2881. "support": {
  2882. "docs": "https://hyperf.wiki",
  2883. "issues": "https://github.com/hyperf/hyperf/issues",
  2884. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2885. "source": "https://github.com/hyperf/hyperf"
  2886. },
  2887. "funding": [
  2888. {
  2889. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2890. "type": "custom"
  2891. },
  2892. {
  2893. "url": "https://opencollective.com/hyperf",
  2894. "type": "open_collective"
  2895. }
  2896. ],
  2897. "time": "2024-09-25T02:54:12+00:00"
  2898. },
  2899. {
  2900. "name": "hyperf/guzzle",
  2901. "version": "v3.1.42",
  2902. "source": {
  2903. "type": "git",
  2904. "url": "https://github.com/hyperf/guzzle.git",
  2905. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2906. },
  2907. "dist": {
  2908. "type": "zip",
  2909. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2910. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2911. "shasum": ""
  2912. },
  2913. "require": {
  2914. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2915. "php": ">=8.1",
  2916. "psr/container": "^1.0 || ^2.0",
  2917. "psr/http-message": "^1.0 || ^2.0"
  2918. },
  2919. "suggest": {
  2920. "ext-curl": "Required for CURL handler support",
  2921. "hyperf/pool": "Required to use pool handler."
  2922. },
  2923. "type": "library",
  2924. "extra": {
  2925. "branch-alias": {
  2926. "dev-master": "3.1-dev"
  2927. },
  2928. "hyperf": {
  2929. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2930. }
  2931. },
  2932. "autoload": {
  2933. "psr-4": {
  2934. "Hyperf\\Guzzle\\": "src/"
  2935. }
  2936. },
  2937. "notification-url": "https://packagist.org/downloads/",
  2938. "license": [
  2939. "MIT"
  2940. ],
  2941. "description": "Swoole coroutine handler for guzzle",
  2942. "keywords": [
  2943. "Guzzle",
  2944. "handler",
  2945. "php",
  2946. "swoole"
  2947. ],
  2948. "support": {
  2949. "issues": "https://github.com/hyperf/guzzle/issues",
  2950. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2951. },
  2952. "funding": [
  2953. {
  2954. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2955. "type": "custom"
  2956. },
  2957. {
  2958. "url": "https://opencollective.com/hyperf",
  2959. "type": "open_collective"
  2960. }
  2961. ],
  2962. "time": "2024-09-25T02:54:12+00:00"
  2963. },
  2964. {
  2965. "name": "hyperf/http-message",
  2966. "version": "v3.1.42",
  2967. "source": {
  2968. "type": "git",
  2969. "url": "https://github.com/hyperf/http-message.git",
  2970. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2971. },
  2972. "dist": {
  2973. "type": "zip",
  2974. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2975. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2976. "shasum": ""
  2977. },
  2978. "require": {
  2979. "hyperf/codec": "~3.1.0",
  2980. "hyperf/engine": "^2.11",
  2981. "hyperf/support": "~3.1.0",
  2982. "laminas/laminas-mime": "^2.7",
  2983. "php": ">=8.1",
  2984. "psr/http-message": "^1.0 || ^2.0",
  2985. "swow/psr7-plus": "^1.0"
  2986. },
  2987. "suggest": {
  2988. "psr/container": "Required to replace RequestParserInterface."
  2989. },
  2990. "type": "library",
  2991. "extra": {
  2992. "branch-alias": {
  2993. "dev-master": "3.1-dev"
  2994. },
  2995. "hyperf": {
  2996. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2997. }
  2998. },
  2999. "autoload": {
  3000. "psr-4": {
  3001. "Hyperf\\HttpMessage\\": "src/"
  3002. }
  3003. },
  3004. "notification-url": "https://packagist.org/downloads/",
  3005. "license": [
  3006. "MIT"
  3007. ],
  3008. "description": "microservice framework base on swoole",
  3009. "keywords": [
  3010. "http-message",
  3011. "hyperf",
  3012. "php",
  3013. "swoole"
  3014. ],
  3015. "support": {
  3016. "issues": "https://github.com/hyperf/http-message/issues",
  3017. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  3018. },
  3019. "funding": [
  3020. {
  3021. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3022. "type": "custom"
  3023. },
  3024. {
  3025. "url": "https://opencollective.com/hyperf",
  3026. "type": "open_collective"
  3027. }
  3028. ],
  3029. "time": "2024-09-25T02:54:12+00:00"
  3030. },
  3031. {
  3032. "name": "hyperf/http-server",
  3033. "version": "v3.1.42",
  3034. "source": {
  3035. "type": "git",
  3036. "url": "https://github.com/hyperf/http-server.git",
  3037. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  3038. },
  3039. "dist": {
  3040. "type": "zip",
  3041. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3042. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  3043. "shasum": ""
  3044. },
  3045. "require": {
  3046. "hyperf/codec": "~3.1.0",
  3047. "hyperf/collection": "~3.1.0",
  3048. "hyperf/context": "~3.1.0",
  3049. "hyperf/contract": "~3.1.0",
  3050. "hyperf/coroutine": "~3.1.0",
  3051. "hyperf/dispatcher": "~3.1.0",
  3052. "hyperf/event": "~3.1.0",
  3053. "hyperf/exception-handler": "~3.1.0",
  3054. "hyperf/http-message": "~3.1.0",
  3055. "hyperf/macroable": "~3.1.0",
  3056. "hyperf/serializer": "~3.1.0",
  3057. "hyperf/server": "~3.1.0",
  3058. "hyperf/stdlib": "~3.1.0",
  3059. "hyperf/support": "~3.1.0",
  3060. "nikic/fast-route": "^1.3",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "swow/psr7-plus": "^1.0"
  3064. },
  3065. "suggest": {
  3066. "hyperf/di": "Required to use annotations."
  3067. },
  3068. "type": "library",
  3069. "extra": {
  3070. "branch-alias": {
  3071. "dev-master": "3.1-dev"
  3072. },
  3073. "hyperf": {
  3074. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3075. }
  3076. },
  3077. "autoload": {
  3078. "psr-4": {
  3079. "Hyperf\\HttpServer\\": "src/"
  3080. }
  3081. },
  3082. "notification-url": "https://packagist.org/downloads/",
  3083. "license": [
  3084. "MIT"
  3085. ],
  3086. "description": "A HTTP Server for Hyperf.",
  3087. "homepage": "https://hyperf.io",
  3088. "keywords": [
  3089. "http",
  3090. "http-server",
  3091. "hyperf",
  3092. "php",
  3093. "swoole"
  3094. ],
  3095. "support": {
  3096. "docs": "https://hyperf.wiki",
  3097. "issues": "https://github.com/hyperf/hyperf/issues",
  3098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3099. "source": "https://github.com/hyperf/hyperf"
  3100. },
  3101. "funding": [
  3102. {
  3103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3104. "type": "custom"
  3105. },
  3106. {
  3107. "url": "https://opencollective.com/hyperf",
  3108. "type": "open_collective"
  3109. }
  3110. ],
  3111. "time": "2024-09-25T02:54:12+00:00"
  3112. },
  3113. {
  3114. "name": "hyperf/json-rpc",
  3115. "version": "v3.1.42",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/hyperf/json-rpc.git",
  3119. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3124. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "hyperf/codec": "~3.1.0",
  3129. "hyperf/context": "~3.1.0",
  3130. "hyperf/contract": "~3.1.0",
  3131. "hyperf/engine": "^2.0",
  3132. "hyperf/http-message": "~3.1.0",
  3133. "hyperf/load-balancer": "~3.1.0",
  3134. "hyperf/rpc": "~3.1.0",
  3135. "hyperf/serializer": "~3.1.0",
  3136. "hyperf/support": "~3.1.0",
  3137. "hyperf/utils": "~3.1.0",
  3138. "php": ">=8.1",
  3139. "psr/container": "^1.0 || ^2.0",
  3140. "swow/psr7-plus": "^1.0"
  3141. },
  3142. "suggest": {
  3143. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3144. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3145. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3146. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3147. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "3.1-dev"
  3153. },
  3154. "hyperf": {
  3155. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3156. }
  3157. },
  3158. "autoload": {
  3159. "psr-4": {
  3160. "Hyperf\\JsonRpc\\": "src/"
  3161. }
  3162. },
  3163. "notification-url": "https://packagist.org/downloads/",
  3164. "license": [
  3165. "MIT"
  3166. ],
  3167. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3168. "homepage": "https://hyperf.io",
  3169. "keywords": [
  3170. "hyperf",
  3171. "json-rpc",
  3172. "php",
  3173. "swoole"
  3174. ],
  3175. "support": {
  3176. "docs": "https://hyperf.wiki",
  3177. "issues": "https://github.com/hyperf/hyperf/issues",
  3178. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3179. "source": "https://github.com/hyperf/hyperf"
  3180. },
  3181. "funding": [
  3182. {
  3183. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3184. "type": "custom"
  3185. },
  3186. {
  3187. "url": "https://opencollective.com/hyperf",
  3188. "type": "open_collective"
  3189. }
  3190. ],
  3191. "time": "2024-09-25T02:54:12+00:00"
  3192. },
  3193. {
  3194. "name": "hyperf/load-balancer",
  3195. "version": "v3.1.42",
  3196. "source": {
  3197. "type": "git",
  3198. "url": "https://github.com/hyperf/load-balancer.git",
  3199. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3200. },
  3201. "dist": {
  3202. "type": "zip",
  3203. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3204. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3205. "shasum": ""
  3206. },
  3207. "require": {
  3208. "hyperf/coordinator": "~3.1.0",
  3209. "hyperf/coroutine": "~3.1.0",
  3210. "markrogoyski/math-php": "^2.0",
  3211. "php": ">=8.1",
  3212. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3213. },
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "3.1-dev"
  3218. },
  3219. "hyperf": {
  3220. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3221. }
  3222. },
  3223. "autoload": {
  3224. "psr-4": {
  3225. "Hyperf\\LoadBalancer\\": "src/"
  3226. }
  3227. },
  3228. "notification-url": "https://packagist.org/downloads/",
  3229. "license": [
  3230. "MIT"
  3231. ],
  3232. "description": "A load balancer library for Hyperf.",
  3233. "homepage": "https://hyperf.io",
  3234. "keywords": [
  3235. "hyperf",
  3236. "load-balancer",
  3237. "php",
  3238. "swoole"
  3239. ],
  3240. "support": {
  3241. "docs": "https://hyperf.wiki",
  3242. "issues": "https://github.com/hyperf/hyperf/issues",
  3243. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3244. "source": "https://github.com/hyperf/hyperf"
  3245. },
  3246. "funding": [
  3247. {
  3248. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3249. "type": "custom"
  3250. },
  3251. {
  3252. "url": "https://opencollective.com/hyperf",
  3253. "type": "open_collective"
  3254. }
  3255. ],
  3256. "time": "2024-09-25T02:54:12+00:00"
  3257. },
  3258. {
  3259. "name": "hyperf/logger",
  3260. "version": "v3.1.42",
  3261. "source": {
  3262. "type": "git",
  3263. "url": "https://github.com/hyperf/logger.git",
  3264. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3265. },
  3266. "dist": {
  3267. "type": "zip",
  3268. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3269. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3270. "shasum": ""
  3271. },
  3272. "require": {
  3273. "hyperf/contract": "~3.1.0",
  3274. "hyperf/support": "~3.1.0",
  3275. "hyperf/utils": "~3.1.0",
  3276. "monolog/monolog": "^2.7 || ^3.1",
  3277. "php": ">=8.1",
  3278. "psr/container": "^1.0 || ^2.0",
  3279. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3280. },
  3281. "type": "library",
  3282. "extra": {
  3283. "branch-alias": {
  3284. "dev-master": "3.1-dev"
  3285. },
  3286. "hyperf": {
  3287. "config": "Hyperf\\Logger\\ConfigProvider"
  3288. }
  3289. },
  3290. "autoload": {
  3291. "psr-4": {
  3292. "Hyperf\\Logger\\": "src/"
  3293. }
  3294. },
  3295. "notification-url": "https://packagist.org/downloads/",
  3296. "license": [
  3297. "MIT"
  3298. ],
  3299. "description": "A logger component for hyperf.",
  3300. "homepage": "https://hyperf.io",
  3301. "keywords": [
  3302. "hyperf",
  3303. "logger",
  3304. "php"
  3305. ],
  3306. "support": {
  3307. "docs": "https://hyperf.wiki",
  3308. "issues": "https://github.com/hyperf/hyperf/issues",
  3309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3310. "source": "https://github.com/hyperf/hyperf"
  3311. },
  3312. "funding": [
  3313. {
  3314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3315. "type": "custom"
  3316. },
  3317. {
  3318. "url": "https://opencollective.com/hyperf",
  3319. "type": "open_collective"
  3320. }
  3321. ],
  3322. "time": "2024-09-25T02:54:12+00:00"
  3323. },
  3324. {
  3325. "name": "hyperf/macroable",
  3326. "version": "v3.1.42",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/hyperf/macroable.git",
  3330. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3335. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3336. "shasum": ""
  3337. },
  3338. "require": {
  3339. "php": ">=8.1"
  3340. },
  3341. "type": "library",
  3342. "extra": {
  3343. "branch-alias": {
  3344. "dev-master": "3.1-dev"
  3345. }
  3346. },
  3347. "autoload": {
  3348. "psr-4": {
  3349. "Hyperf\\Macroable\\": "src/"
  3350. }
  3351. },
  3352. "notification-url": "https://packagist.org/downloads/",
  3353. "license": [
  3354. "MIT"
  3355. ],
  3356. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3357. "homepage": "https://hyperf.io",
  3358. "keywords": [
  3359. "hyperf",
  3360. "macroable",
  3361. "php",
  3362. "swoole"
  3363. ],
  3364. "support": {
  3365. "docs": "https://hyperf.wiki",
  3366. "issues": "https://github.com/hyperf/hyperf/issues",
  3367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3368. "source": "https://github.com/hyperf/hyperf"
  3369. },
  3370. "funding": [
  3371. {
  3372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3373. "type": "custom"
  3374. },
  3375. {
  3376. "url": "https://opencollective.com/hyperf",
  3377. "type": "open_collective"
  3378. }
  3379. ],
  3380. "time": "2024-09-25T02:54:12+00:00"
  3381. },
  3382. {
  3383. "name": "hyperf/memory",
  3384. "version": "v3.1.42",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://github.com/hyperf/memory.git",
  3388. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3393. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3394. "shasum": ""
  3395. },
  3396. "require": {
  3397. "php": ">=8.1"
  3398. },
  3399. "type": "library",
  3400. "extra": {
  3401. "branch-alias": {
  3402. "dev-master": "3.1-dev"
  3403. },
  3404. "hyperf": {
  3405. "config": "Hyperf\\Memory\\ConfigProvider"
  3406. }
  3407. },
  3408. "autoload": {
  3409. "psr-4": {
  3410. "Hyperf\\Memory\\": "src/"
  3411. }
  3412. },
  3413. "notification-url": "https://packagist.org/downloads/",
  3414. "license": [
  3415. "MIT"
  3416. ],
  3417. "description": "An independent component that use to operate and manage memory.",
  3418. "homepage": "https://hyperf.io",
  3419. "keywords": [
  3420. "hyperf",
  3421. "memory",
  3422. "php",
  3423. "swoole"
  3424. ],
  3425. "support": {
  3426. "docs": "https://hyperf.wiki",
  3427. "issues": "https://github.com/hyperf/hyperf/issues",
  3428. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3429. "source": "https://github.com/hyperf/hyperf"
  3430. },
  3431. "funding": [
  3432. {
  3433. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3434. "type": "custom"
  3435. },
  3436. {
  3437. "url": "https://opencollective.com/hyperf",
  3438. "type": "open_collective"
  3439. }
  3440. ],
  3441. "time": "2024-09-25T02:54:12+00:00"
  3442. },
  3443. {
  3444. "name": "hyperf/model-listener",
  3445. "version": "v3.1.42",
  3446. "source": {
  3447. "type": "git",
  3448. "url": "https://github.com/hyperf/model-listener.git",
  3449. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3450. },
  3451. "dist": {
  3452. "type": "zip",
  3453. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3454. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3455. "shasum": ""
  3456. },
  3457. "require": {
  3458. "hyperf/contract": "~3.1.0",
  3459. "hyperf/database": "~3.1.0",
  3460. "hyperf/di": "~3.1.0",
  3461. "hyperf/event": "~3.1.0",
  3462. "hyperf/support": "~3.1.0",
  3463. "hyperf/utils": "~3.1.0",
  3464. "php": ">=8.1",
  3465. "psr/container": "^1.0 || ^2.0"
  3466. },
  3467. "type": "library",
  3468. "extra": {
  3469. "branch-alias": {
  3470. "dev-master": "3.1-dev"
  3471. },
  3472. "hyperf": {
  3473. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3474. }
  3475. },
  3476. "autoload": {
  3477. "psr-4": {
  3478. "Hyperf\\ModelListener\\": "src/"
  3479. }
  3480. },
  3481. "notification-url": "https://packagist.org/downloads/",
  3482. "license": [
  3483. "MIT"
  3484. ],
  3485. "description": "A model listener for Hyperf.",
  3486. "homepage": "https://hyperf.io",
  3487. "keywords": [
  3488. "hyperf",
  3489. "model-listener",
  3490. "php",
  3491. "swoole"
  3492. ],
  3493. "support": {
  3494. "docs": "https://hyperf.wiki",
  3495. "issues": "https://github.com/hyperf/hyperf/issues",
  3496. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3497. "source": "https://github.com/hyperf/hyperf"
  3498. },
  3499. "funding": [
  3500. {
  3501. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3502. "type": "custom"
  3503. },
  3504. {
  3505. "url": "https://opencollective.com/hyperf",
  3506. "type": "open_collective"
  3507. }
  3508. ],
  3509. "time": "2024-09-25T02:54:12+00:00"
  3510. },
  3511. {
  3512. "name": "hyperf/nacos",
  3513. "version": "v3.1.42",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/hyperf/nacos.git",
  3517. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3522. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3527. "hyperf/codec": "~3.1.0",
  3528. "hyperf/contract": "~3.1.0",
  3529. "hyperf/support": "~3.1.0",
  3530. "hyperf/utils": "~3.1.0",
  3531. "jetbrains/phpstorm-attributes": "^1.0",
  3532. "php": ">=8.1"
  3533. },
  3534. "type": "library",
  3535. "extra": {
  3536. "branch-alias": {
  3537. "dev-master": "3.1-dev"
  3538. },
  3539. "hyperf": {
  3540. "config": "Hyperf\\Nacos\\ConfigProvider"
  3541. }
  3542. },
  3543. "autoload": {
  3544. "psr-4": {
  3545. "Hyperf\\Nacos\\": "src/"
  3546. }
  3547. },
  3548. "notification-url": "https://packagist.org/downloads/",
  3549. "license": [
  3550. "MIT"
  3551. ],
  3552. "description": "Nacos SDK",
  3553. "keywords": [
  3554. "hyperf",
  3555. "nacos",
  3556. "php"
  3557. ],
  3558. "support": {
  3559. "issues": "https://github.com/hyperf/nacos/issues",
  3560. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3561. },
  3562. "funding": [
  3563. {
  3564. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3565. "type": "custom"
  3566. },
  3567. {
  3568. "url": "https://opencollective.com/hyperf",
  3569. "type": "open_collective"
  3570. }
  3571. ],
  3572. "time": "2024-09-25T02:54:12+00:00"
  3573. },
  3574. {
  3575. "name": "hyperf/paginator",
  3576. "version": "v3.1.42",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/hyperf/paginator.git",
  3580. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3585. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "hyperf/contract": "~3.1.0",
  3590. "hyperf/support": "~3.1.0",
  3591. "hyperf/utils": "~3.1.0",
  3592. "php": ">=8.1"
  3593. },
  3594. "suggest": {
  3595. "hyperf/event": "Reqiured to use PageResolverListener.",
  3596. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3597. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3598. },
  3599. "type": "library",
  3600. "extra": {
  3601. "branch-alias": {
  3602. "dev-master": "3.1-dev"
  3603. },
  3604. "hyperf": {
  3605. "config": "Hyperf\\Paginator\\ConfigProvider"
  3606. }
  3607. },
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Hyperf\\Paginator\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "description": "A paginator component for hyperf.",
  3618. "homepage": "https://hyperf.io",
  3619. "keywords": [
  3620. "hyperf",
  3621. "paginator",
  3622. "php"
  3623. ],
  3624. "support": {
  3625. "docs": "https://hyperf.wiki",
  3626. "issues": "https://github.com/hyperf/hyperf/issues",
  3627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3628. "source": "https://github.com/hyperf/hyperf"
  3629. },
  3630. "funding": [
  3631. {
  3632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3633. "type": "custom"
  3634. },
  3635. {
  3636. "url": "https://opencollective.com/hyperf",
  3637. "type": "open_collective"
  3638. }
  3639. ],
  3640. "time": "2024-09-25T02:54:12+00:00"
  3641. },
  3642. {
  3643. "name": "hyperf/pipeline",
  3644. "version": "v3.1.42",
  3645. "source": {
  3646. "type": "git",
  3647. "url": "https://github.com/hyperf/pipeline.git",
  3648. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3649. },
  3650. "dist": {
  3651. "type": "zip",
  3652. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3653. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3654. "shasum": ""
  3655. },
  3656. "require": {
  3657. "php": ">=8.1",
  3658. "psr/container": "^1.0 || ^2.0"
  3659. },
  3660. "type": "library",
  3661. "extra": {
  3662. "branch-alias": {
  3663. "dev-master": "3.1-dev"
  3664. }
  3665. },
  3666. "autoload": {
  3667. "psr-4": {
  3668. "Hyperf\\Pipeline\\": "src/"
  3669. }
  3670. },
  3671. "notification-url": "https://packagist.org/downloads/",
  3672. "license": [
  3673. "MIT"
  3674. ],
  3675. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3676. "homepage": "https://hyperf.io",
  3677. "keywords": [
  3678. "hyperf",
  3679. "php",
  3680. "pipeline",
  3681. "swoole"
  3682. ],
  3683. "support": {
  3684. "docs": "https://hyperf.wiki",
  3685. "issues": "https://github.com/hyperf/hyperf/issues",
  3686. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3687. "source": "https://github.com/hyperf/hyperf"
  3688. },
  3689. "funding": [
  3690. {
  3691. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3692. "type": "custom"
  3693. },
  3694. {
  3695. "url": "https://opencollective.com/hyperf",
  3696. "type": "open_collective"
  3697. }
  3698. ],
  3699. "time": "2024-09-25T02:54:12+00:00"
  3700. },
  3701. {
  3702. "name": "hyperf/pool",
  3703. "version": "v3.1.42",
  3704. "source": {
  3705. "type": "git",
  3706. "url": "https://github.com/hyperf/pool.git",
  3707. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3708. },
  3709. "dist": {
  3710. "type": "zip",
  3711. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3712. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3713. "shasum": ""
  3714. },
  3715. "require": {
  3716. "hyperf/contract": "~3.1.0",
  3717. "hyperf/support": "~3.1.0",
  3718. "hyperf/utils": "~3.1.0",
  3719. "php": ">=8.1",
  3720. "psr/container": "^1.0 || ^2.0"
  3721. },
  3722. "suggest": {
  3723. "psr/event-dispatcher": "Required to use events."
  3724. },
  3725. "type": "library",
  3726. "extra": {
  3727. "branch-alias": {
  3728. "dev-master": "3.1-dev"
  3729. },
  3730. "hyperf": {
  3731. "config": "Hyperf\\Pool\\ConfigProvider"
  3732. }
  3733. },
  3734. "autoload": {
  3735. "psr-4": {
  3736. "Hyperf\\Pool\\": "src/"
  3737. }
  3738. },
  3739. "notification-url": "https://packagist.org/downloads/",
  3740. "license": [
  3741. "MIT"
  3742. ],
  3743. "description": "An independent universal connection pool component.",
  3744. "homepage": "https://hyperf.io",
  3745. "keywords": [
  3746. "connection-pool",
  3747. "hyperf",
  3748. "php",
  3749. "swoole"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-09-25T02:54:12+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/process",
  3771. "version": "v3.1.42",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/process.git",
  3775. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3780. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "hyperf/contract": "~3.1.0",
  3785. "hyperf/support": "~3.1.0",
  3786. "hyperf/utils": "~3.1.0",
  3787. "php": ">=8.1",
  3788. "psr/container": "^1.0 || ^2.0",
  3789. "psr/event-dispatcher": "^1.0"
  3790. },
  3791. "suggest": {
  3792. "hyperf/di": "Required to use annotations.",
  3793. "hyperf/event": "Required to dump the message before and after process.",
  3794. "hyperf/framework": "Required to use BootProcessListener."
  3795. },
  3796. "type": "library",
  3797. "extra": {
  3798. "branch-alias": {
  3799. "dev-master": "3.1-dev"
  3800. },
  3801. "hyperf": {
  3802. "config": "Hyperf\\Process\\ConfigProvider"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Hyperf\\Process\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "description": "A process component for hyperf.",
  3815. "homepage": "https://hyperf.io",
  3816. "keywords": [
  3817. "hyperf",
  3818. "php",
  3819. "process"
  3820. ],
  3821. "support": {
  3822. "docs": "https://hyperf.wiki",
  3823. "issues": "https://github.com/hyperf/hyperf/issues",
  3824. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3825. "source": "https://github.com/hyperf/hyperf"
  3826. },
  3827. "funding": [
  3828. {
  3829. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3830. "type": "custom"
  3831. },
  3832. {
  3833. "url": "https://opencollective.com/hyperf",
  3834. "type": "open_collective"
  3835. }
  3836. ],
  3837. "time": "2024-09-25T02:54:12+00:00"
  3838. },
  3839. {
  3840. "name": "hyperf/redis",
  3841. "version": "v3.1.42",
  3842. "source": {
  3843. "type": "git",
  3844. "url": "https://github.com/hyperf/redis.git",
  3845. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3846. },
  3847. "dist": {
  3848. "type": "zip",
  3849. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3850. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3851. "shasum": ""
  3852. },
  3853. "require": {
  3854. "ext-redis": "^5.0 || ^6.0",
  3855. "hyperf/contract": "~3.1.0",
  3856. "hyperf/pool": "~3.1.0",
  3857. "hyperf/support": "~3.1.0",
  3858. "hyperf/tappable": "~3.1.0",
  3859. "hyperf/utils": "~3.1.0",
  3860. "php": ">=8.1",
  3861. "psr/container": "^1.0 || ^2.0"
  3862. },
  3863. "suggest": {
  3864. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3865. "hyperf/di": "Create the RedisPool via dependency injection."
  3866. },
  3867. "type": "library",
  3868. "extra": {
  3869. "branch-alias": {
  3870. "dev-master": "3.1-dev"
  3871. },
  3872. "hyperf": {
  3873. "config": "Hyperf\\Redis\\ConfigProvider"
  3874. }
  3875. },
  3876. "autoload": {
  3877. "psr-4": {
  3878. "Hyperf\\Redis\\": "src/"
  3879. }
  3880. },
  3881. "notification-url": "https://packagist.org/downloads/",
  3882. "license": [
  3883. "MIT"
  3884. ],
  3885. "description": "A redis component for hyperf.",
  3886. "homepage": "https://hyperf.io",
  3887. "keywords": [
  3888. "hyperf",
  3889. "php",
  3890. "pool",
  3891. "redis"
  3892. ],
  3893. "support": {
  3894. "docs": "https://hyperf.wiki",
  3895. "issues": "https://github.com/hyperf/hyperf/issues",
  3896. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3897. "source": "https://github.com/hyperf/hyperf"
  3898. },
  3899. "funding": [
  3900. {
  3901. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3902. "type": "custom"
  3903. },
  3904. {
  3905. "url": "https://opencollective.com/hyperf",
  3906. "type": "open_collective"
  3907. }
  3908. ],
  3909. "time": "2024-09-25T02:54:12+00:00"
  3910. },
  3911. {
  3912. "name": "hyperf/rpc",
  3913. "version": "v3.1.42",
  3914. "source": {
  3915. "type": "git",
  3916. "url": "https://github.com/hyperf/rpc.git",
  3917. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3918. },
  3919. "dist": {
  3920. "type": "zip",
  3921. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3922. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3923. "shasum": ""
  3924. },
  3925. "require": {
  3926. "hyperf/codec": "~3.1.0",
  3927. "hyperf/contract": "~3.1.0",
  3928. "hyperf/support": "~3.1.0",
  3929. "jetbrains/phpstorm-attributes": "^1.0",
  3930. "php": ">=8.1"
  3931. },
  3932. "type": "library",
  3933. "extra": {
  3934. "branch-alias": {
  3935. "dev-master": "3.1-dev"
  3936. },
  3937. "hyperf": []
  3938. },
  3939. "autoload": {
  3940. "psr-4": {
  3941. "Hyperf\\Rpc\\": "src/"
  3942. }
  3943. },
  3944. "notification-url": "https://packagist.org/downloads/",
  3945. "license": [
  3946. "MIT"
  3947. ],
  3948. "description": "A rpc basic library for Hyperf.",
  3949. "homepage": "https://hyperf.io",
  3950. "keywords": [
  3951. "hyperf",
  3952. "php",
  3953. "rpc",
  3954. "swoole"
  3955. ],
  3956. "support": {
  3957. "docs": "https://hyperf.wiki",
  3958. "issues": "https://github.com/hyperf/hyperf/issues",
  3959. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3960. "source": "https://github.com/hyperf/hyperf"
  3961. },
  3962. "funding": [
  3963. {
  3964. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3965. "type": "custom"
  3966. },
  3967. {
  3968. "url": "https://opencollective.com/hyperf",
  3969. "type": "open_collective"
  3970. }
  3971. ],
  3972. "time": "2024-09-25T02:54:12+00:00"
  3973. },
  3974. {
  3975. "name": "hyperf/rpc-client",
  3976. "version": "v3.1.42",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/hyperf/rpc-client.git",
  3980. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3985. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "hyperf/code-parser": "~3.1.0",
  3990. "hyperf/load-balancer": "~3.1.0",
  3991. "hyperf/rpc": "~3.1.0",
  3992. "hyperf/support": "~3.1.0",
  3993. "hyperf/utils": "~3.1.0",
  3994. "jetbrains/phpstorm-attributes": "^1.0",
  3995. "php": ">=8.1",
  3996. "psr/container": "^1.0 || ^2.0"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "For better container experience.",
  4000. "hyperf/pool": "Required to use connection pool.",
  4001. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  4002. },
  4003. "type": "library",
  4004. "extra": {
  4005. "branch-alias": {
  4006. "dev-master": "3.1-dev"
  4007. },
  4008. "hyperf": {
  4009. "config": "Hyperf\\RpcClient\\ConfigProvider"
  4010. }
  4011. },
  4012. "autoload": {
  4013. "psr-4": {
  4014. "Hyperf\\RpcClient\\": "src/"
  4015. }
  4016. },
  4017. "notification-url": "https://packagist.org/downloads/",
  4018. "license": [
  4019. "MIT"
  4020. ],
  4021. "description": "An abstract rpc server component for Hyperf.",
  4022. "homepage": "https://hyperf.io",
  4023. "keywords": [
  4024. "hyperf",
  4025. "json-rpc",
  4026. "php",
  4027. "rpc",
  4028. "rpc-client",
  4029. "swoole"
  4030. ],
  4031. "support": {
  4032. "docs": "https://hyperf.wiki",
  4033. "issues": "https://github.com/hyperf/hyperf/issues",
  4034. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4035. "source": "https://github.com/hyperf/hyperf"
  4036. },
  4037. "funding": [
  4038. {
  4039. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4040. "type": "custom"
  4041. },
  4042. {
  4043. "url": "https://opencollective.com/hyperf",
  4044. "type": "open_collective"
  4045. }
  4046. ],
  4047. "time": "2024-09-25T02:54:12+00:00"
  4048. },
  4049. {
  4050. "name": "hyperf/rpc-server",
  4051. "version": "v3.1.42",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/hyperf/rpc-server.git",
  4055. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4060. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  4061. "shasum": ""
  4062. },
  4063. "require": {
  4064. "hyperf/http-server": "~3.1.0",
  4065. "hyperf/rpc": "~3.1.0",
  4066. "php": ">=8.1"
  4067. },
  4068. "suggest": {
  4069. "hyperf/di": "Required to use annotations."
  4070. },
  4071. "type": "library",
  4072. "extra": {
  4073. "branch-alias": {
  4074. "dev-master": "3.1-dev"
  4075. },
  4076. "hyperf": {
  4077. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4078. }
  4079. },
  4080. "autoload": {
  4081. "psr-4": {
  4082. "Hyperf\\RpcServer\\": "src/"
  4083. }
  4084. },
  4085. "notification-url": "https://packagist.org/downloads/",
  4086. "license": [
  4087. "MIT"
  4088. ],
  4089. "description": "An abstract rpc server component for Hyperf.",
  4090. "homepage": "https://hyperf.io",
  4091. "keywords": [
  4092. "hyperf",
  4093. "php",
  4094. "rpc",
  4095. "rpc-server",
  4096. "swoole"
  4097. ],
  4098. "support": {
  4099. "docs": "https://hyperf.wiki",
  4100. "issues": "https://github.com/hyperf/hyperf/issues",
  4101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4102. "source": "https://github.com/hyperf/hyperf"
  4103. },
  4104. "funding": [
  4105. {
  4106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4107. "type": "custom"
  4108. },
  4109. {
  4110. "url": "https://opencollective.com/hyperf",
  4111. "type": "open_collective"
  4112. }
  4113. ],
  4114. "time": "2024-09-25T02:54:12+00:00"
  4115. },
  4116. {
  4117. "name": "hyperf/serializer",
  4118. "version": "v3.1.42",
  4119. "source": {
  4120. "type": "git",
  4121. "url": "https://github.com/hyperf/serializer.git",
  4122. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  4123. },
  4124. "dist": {
  4125. "type": "zip",
  4126. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4127. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  4128. "shasum": ""
  4129. },
  4130. "require": {
  4131. "hyperf/contract": "~3.1.0",
  4132. "php": ">=8.1"
  4133. },
  4134. "suggest": {
  4135. "hyperf/di": "Required to use ExceptionNormalizer",
  4136. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4137. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4138. },
  4139. "type": "library",
  4140. "extra": {
  4141. "branch-alias": {
  4142. "dev-master": "3.1-dev"
  4143. },
  4144. "hyperf": {
  4145. "config": "Hyperf\\Serializer\\ConfigProvider"
  4146. }
  4147. },
  4148. "autoload": {
  4149. "psr-4": {
  4150. "Hyperf\\Serializer\\": "src/"
  4151. }
  4152. },
  4153. "notification-url": "https://packagist.org/downloads/",
  4154. "license": [
  4155. "MIT"
  4156. ],
  4157. "description": "A serializer component for Hyperf.",
  4158. "homepage": "https://hyperf.io",
  4159. "keywords": [
  4160. "hyperf",
  4161. "php",
  4162. "swoole",
  4163. "tappable"
  4164. ],
  4165. "support": {
  4166. "docs": "https://hyperf.wiki",
  4167. "issues": "https://github.com/hyperf/hyperf/issues",
  4168. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4169. "source": "https://github.com/hyperf/hyperf"
  4170. },
  4171. "funding": [
  4172. {
  4173. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4174. "type": "custom"
  4175. },
  4176. {
  4177. "url": "https://opencollective.com/hyperf",
  4178. "type": "open_collective"
  4179. }
  4180. ],
  4181. "time": "2024-09-25T02:54:12+00:00"
  4182. },
  4183. {
  4184. "name": "hyperf/server",
  4185. "version": "v3.1.42",
  4186. "source": {
  4187. "type": "git",
  4188. "url": "https://github.com/hyperf/server.git",
  4189. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4190. },
  4191. "dist": {
  4192. "type": "zip",
  4193. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4194. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4195. "shasum": ""
  4196. },
  4197. "require": {
  4198. "hyperf/contract": "~3.1.0",
  4199. "hyperf/coordinator": "~3.1.0",
  4200. "hyperf/engine": "^2.8",
  4201. "hyperf/support": "~3.1.0",
  4202. "hyperf/tappable": "~3.1.0",
  4203. "php": ">=8.1",
  4204. "psr/container": "^1.0 || ^2.0",
  4205. "psr/event-dispatcher": "^1.0",
  4206. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4207. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4208. },
  4209. "suggest": {
  4210. "hyperf/event": "Dump the info after server start.",
  4211. "hyperf/framework": "Dump the info after server start."
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "branch-alias": {
  4216. "dev-master": "3.1-dev"
  4217. },
  4218. "hyperf": {
  4219. "config": "Hyperf\\Server\\ConfigProvider"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Hyperf\\Server\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "description": "A base server library for Hyperf.",
  4232. "homepage": "https://hyperf.io",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php",
  4236. "server",
  4237. "swoole"
  4238. ],
  4239. "support": {
  4240. "docs": "https://hyperf.wiki",
  4241. "issues": "https://github.com/hyperf/hyperf/issues",
  4242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4243. "source": "https://github.com/hyperf/hyperf"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://opencollective.com/hyperf",
  4252. "type": "open_collective"
  4253. }
  4254. ],
  4255. "time": "2024-09-25T02:54:12+00:00"
  4256. },
  4257. {
  4258. "name": "hyperf/service-governance",
  4259. "version": "v3.1.42",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/hyperf/service-governance.git",
  4263. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4268. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "hyperf/contract": "~3.1.0",
  4273. "hyperf/support": "~3.1.0",
  4274. "jetbrains/phpstorm-attributes": "^1.0",
  4275. "php": ">=8.1"
  4276. },
  4277. "suggest": {
  4278. "hyperf/event": "Required to use RegisterServiceListener.",
  4279. "hyperf/framework": "Required to use RegisterServiceListener.",
  4280. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4281. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4282. },
  4283. "type": "library",
  4284. "extra": {
  4285. "branch-alias": {
  4286. "dev-master": "3.1-dev"
  4287. },
  4288. "hyperf": {
  4289. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4290. }
  4291. },
  4292. "autoload": {
  4293. "psr-4": {
  4294. "Hyperf\\ServiceGovernance\\": "src/"
  4295. }
  4296. },
  4297. "notification-url": "https://packagist.org/downloads/",
  4298. "license": [
  4299. "MIT"
  4300. ],
  4301. "description": "A service governance component for Hyperf.",
  4302. "homepage": "https://hyperf.io",
  4303. "keywords": [
  4304. "hyperf",
  4305. "php",
  4306. "service-governance",
  4307. "swoole"
  4308. ],
  4309. "support": {
  4310. "docs": "https://hyperf.wiki",
  4311. "issues": "https://github.com/hyperf/hyperf/issues",
  4312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4313. "source": "https://github.com/hyperf/hyperf"
  4314. },
  4315. "funding": [
  4316. {
  4317. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4318. "type": "custom"
  4319. },
  4320. {
  4321. "url": "https://opencollective.com/hyperf",
  4322. "type": "open_collective"
  4323. }
  4324. ],
  4325. "time": "2024-09-25T02:54:12+00:00"
  4326. },
  4327. {
  4328. "name": "hyperf/service-governance-consul",
  4329. "version": "v3.1.42",
  4330. "source": {
  4331. "type": "git",
  4332. "url": "https://github.com/hyperf/service-governance-consul.git",
  4333. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4334. },
  4335. "dist": {
  4336. "type": "zip",
  4337. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4338. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4339. "shasum": ""
  4340. },
  4341. "require": {
  4342. "hyperf/consul": "~3.1.0",
  4343. "hyperf/contract": "~3.1.0",
  4344. "hyperf/service-governance": "~3.1.0",
  4345. "hyperf/support": "~3.1.0",
  4346. "hyperf/utils": "~3.1.0",
  4347. "php": ">=8.1"
  4348. },
  4349. "type": "library",
  4350. "extra": {
  4351. "branch-alias": {
  4352. "dev-master": "3.1-dev"
  4353. },
  4354. "hyperf": {
  4355. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4356. }
  4357. },
  4358. "autoload": {
  4359. "psr-4": {
  4360. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4361. }
  4362. },
  4363. "notification-url": "https://packagist.org/downloads/",
  4364. "license": [
  4365. "MIT"
  4366. ],
  4367. "description": "A consul adapter for service governance.",
  4368. "homepage": "https://hyperf.io",
  4369. "keywords": [
  4370. "consul-adapter",
  4371. "hyperf",
  4372. "php",
  4373. "service-governance",
  4374. "swoole"
  4375. ],
  4376. "support": {
  4377. "docs": "https://hyperf.wiki",
  4378. "issues": "https://github.com/hyperf/hyperf/issues",
  4379. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4380. "source": "https://github.com/hyperf/hyperf"
  4381. },
  4382. "funding": [
  4383. {
  4384. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4385. "type": "custom"
  4386. },
  4387. {
  4388. "url": "https://opencollective.com/hyperf",
  4389. "type": "open_collective"
  4390. }
  4391. ],
  4392. "time": "2024-09-25T02:54:12+00:00"
  4393. },
  4394. {
  4395. "name": "hyperf/service-governance-nacos",
  4396. "version": "v3.1.42",
  4397. "source": {
  4398. "type": "git",
  4399. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4400. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4401. },
  4402. "dist": {
  4403. "type": "zip",
  4404. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4405. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4406. "shasum": ""
  4407. },
  4408. "require": {
  4409. "hyperf/codec": "~3.1.0",
  4410. "hyperf/contract": "~3.1.0",
  4411. "hyperf/nacos": "~3.1.0",
  4412. "hyperf/service-governance": "~3.1.0",
  4413. "hyperf/support": "~3.1.0",
  4414. "hyperf/utils": "~3.1.0",
  4415. "php": ">=8.1"
  4416. },
  4417. "type": "library",
  4418. "extra": {
  4419. "branch-alias": {
  4420. "dev-master": "3.1-dev"
  4421. },
  4422. "hyperf": {
  4423. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4424. }
  4425. },
  4426. "autoload": {
  4427. "psr-4": {
  4428. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4429. }
  4430. },
  4431. "notification-url": "https://packagist.org/downloads/",
  4432. "license": [
  4433. "MIT"
  4434. ],
  4435. "description": "A nacos adapter for service governance.",
  4436. "homepage": "https://hyperf.io",
  4437. "keywords": [
  4438. "hyperf",
  4439. "nacos-adapter",
  4440. "php",
  4441. "service-governance",
  4442. "swoole"
  4443. ],
  4444. "support": {
  4445. "docs": "https://hyperf.wiki",
  4446. "issues": "https://github.com/hyperf/hyperf/issues",
  4447. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4448. "source": "https://github.com/hyperf/hyperf"
  4449. },
  4450. "funding": [
  4451. {
  4452. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4453. "type": "custom"
  4454. },
  4455. {
  4456. "url": "https://opencollective.com/hyperf",
  4457. "type": "open_collective"
  4458. }
  4459. ],
  4460. "time": "2024-09-25T02:54:12+00:00"
  4461. },
  4462. {
  4463. "name": "hyperf/snowflake",
  4464. "version": "v3.1.42",
  4465. "source": {
  4466. "type": "git",
  4467. "url": "https://github.com/hyperf/snowflake.git",
  4468. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4469. },
  4470. "dist": {
  4471. "type": "zip",
  4472. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4473. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4474. "shasum": ""
  4475. },
  4476. "require": {
  4477. "hyperf/contract": "~3.1.0",
  4478. "php": ">=8.1"
  4479. },
  4480. "suggest": {
  4481. "hyperf/config": "Required to read snowflake config.",
  4482. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4483. "psr/container": "Required to use MetaGeneratorFactory."
  4484. },
  4485. "type": "library",
  4486. "extra": {
  4487. "branch-alias": {
  4488. "dev-master": "3.1-dev"
  4489. },
  4490. "hyperf": {
  4491. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4492. }
  4493. },
  4494. "autoload": {
  4495. "psr-4": {
  4496. "Hyperf\\Snowflake\\": "src/"
  4497. }
  4498. },
  4499. "notification-url": "https://packagist.org/downloads/",
  4500. "license": [
  4501. "MIT"
  4502. ],
  4503. "description": "A snowflake library",
  4504. "homepage": "https://hyperf.io",
  4505. "keywords": [
  4506. "php",
  4507. "snowflake"
  4508. ],
  4509. "support": {
  4510. "docs": "https://hyperf.wiki",
  4511. "issues": "https://github.com/hyperf/hyperf/issues",
  4512. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4513. "source": "https://github.com/hyperf/hyperf"
  4514. },
  4515. "funding": [
  4516. {
  4517. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4518. "type": "custom"
  4519. },
  4520. {
  4521. "url": "https://opencollective.com/hyperf",
  4522. "type": "open_collective"
  4523. }
  4524. ],
  4525. "time": "2024-09-25T02:54:12+00:00"
  4526. },
  4527. {
  4528. "name": "hyperf/stdlib",
  4529. "version": "v3.1.42",
  4530. "source": {
  4531. "type": "git",
  4532. "url": "https://github.com/hyperf/stdlib.git",
  4533. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4534. },
  4535. "dist": {
  4536. "type": "zip",
  4537. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4538. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4539. "shasum": ""
  4540. },
  4541. "require": {
  4542. "php": ">=8.1"
  4543. },
  4544. "type": "library",
  4545. "extra": {
  4546. "branch-alias": {
  4547. "dev-master": "3.1-dev"
  4548. }
  4549. },
  4550. "autoload": {
  4551. "psr-4": {
  4552. "Hyperf\\Stdlib\\": "src/"
  4553. }
  4554. },
  4555. "notification-url": "https://packagist.org/downloads/",
  4556. "license": [
  4557. "MIT"
  4558. ],
  4559. "description": "A stdlib component for Hyperf.",
  4560. "homepage": "https://hyperf.io",
  4561. "keywords": [
  4562. "hyperf",
  4563. "php",
  4564. "stdlib",
  4565. "swoole"
  4566. ],
  4567. "support": {
  4568. "docs": "https://hyperf.wiki",
  4569. "issues": "https://github.com/hyperf/hyperf/issues",
  4570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4571. "source": "https://github.com/hyperf/hyperf"
  4572. },
  4573. "funding": [
  4574. {
  4575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4576. "type": "custom"
  4577. },
  4578. {
  4579. "url": "https://opencollective.com/hyperf",
  4580. "type": "open_collective"
  4581. }
  4582. ],
  4583. "time": "2024-09-25T02:54:12+00:00"
  4584. },
  4585. {
  4586. "name": "hyperf/stringable",
  4587. "version": "v3.1.43",
  4588. "source": {
  4589. "type": "git",
  4590. "url": "https://github.com/hyperf/stringable.git",
  4591. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4592. },
  4593. "dist": {
  4594. "type": "zip",
  4595. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4596. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4597. "shasum": ""
  4598. },
  4599. "require": {
  4600. "ext-mbstring": "*",
  4601. "hyperf/collection": "~3.1.0",
  4602. "hyperf/conditionable": "~3.1.0",
  4603. "hyperf/macroable": "~3.1.0",
  4604. "hyperf/tappable": "~3.1.0",
  4605. "php": ">=8.1"
  4606. },
  4607. "suggest": {
  4608. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4609. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4610. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4611. },
  4612. "type": "library",
  4613. "extra": {
  4614. "branch-alias": {
  4615. "dev-master": "3.1-dev"
  4616. }
  4617. },
  4618. "autoload": {
  4619. "files": [
  4620. "src/Functions.php"
  4621. ],
  4622. "psr-4": {
  4623. "Hyperf\\Stringable\\": "src/"
  4624. }
  4625. },
  4626. "notification-url": "https://packagist.org/downloads/",
  4627. "license": [
  4628. "MIT"
  4629. ],
  4630. "description": "Hyperf Stringable package which come from illuminate/support",
  4631. "homepage": "https://hyperf.io",
  4632. "keywords": [
  4633. "hyperf",
  4634. "php",
  4635. "stringable",
  4636. "swoole"
  4637. ],
  4638. "support": {
  4639. "docs": "https://hyperf.wiki",
  4640. "issues": "https://github.com/hyperf/hyperf/issues",
  4641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4642. "source": "https://github.com/hyperf/hyperf"
  4643. },
  4644. "funding": [
  4645. {
  4646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4647. "type": "custom"
  4648. },
  4649. {
  4650. "url": "https://opencollective.com/hyperf",
  4651. "type": "open_collective"
  4652. }
  4653. ],
  4654. "time": "2024-10-09T02:28:40+00:00"
  4655. },
  4656. {
  4657. "name": "hyperf/support",
  4658. "version": "v3.1.42",
  4659. "source": {
  4660. "type": "git",
  4661. "url": "https://github.com/hyperf/support.git",
  4662. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4663. },
  4664. "dist": {
  4665. "type": "zip",
  4666. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4667. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4668. "shasum": ""
  4669. },
  4670. "require": {
  4671. "hyperf/collection": "~3.1.0",
  4672. "hyperf/context": "~3.1.0",
  4673. "hyperf/contract": "~3.1.0",
  4674. "hyperf/coroutine": "~3.1.0",
  4675. "hyperf/macroable": "~3.1.0",
  4676. "hyperf/stringable": "~3.1.0",
  4677. "php": ">=8.1"
  4678. },
  4679. "suggest": {
  4680. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4681. },
  4682. "type": "library",
  4683. "extra": {
  4684. "branch-alias": {
  4685. "dev-master": "3.1-dev"
  4686. }
  4687. },
  4688. "autoload": {
  4689. "files": [
  4690. "src/Functions.php"
  4691. ],
  4692. "psr-4": {
  4693. "Hyperf\\Support\\": "src/"
  4694. }
  4695. },
  4696. "notification-url": "https://packagist.org/downloads/",
  4697. "license": [
  4698. "MIT"
  4699. ],
  4700. "description": "A support component for Hyperf.",
  4701. "homepage": "https://hyperf.io",
  4702. "keywords": [
  4703. "hyperf",
  4704. "php",
  4705. "support",
  4706. "swoole"
  4707. ],
  4708. "support": {
  4709. "docs": "https://hyperf.wiki",
  4710. "issues": "https://github.com/hyperf/hyperf/issues",
  4711. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4712. "source": "https://github.com/hyperf/hyperf"
  4713. },
  4714. "funding": [
  4715. {
  4716. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4717. "type": "custom"
  4718. },
  4719. {
  4720. "url": "https://opencollective.com/hyperf",
  4721. "type": "open_collective"
  4722. }
  4723. ],
  4724. "time": "2024-09-25T02:54:12+00:00"
  4725. },
  4726. {
  4727. "name": "hyperf/tappable",
  4728. "version": "v3.1.42",
  4729. "source": {
  4730. "type": "git",
  4731. "url": "https://github.com/hyperf/tappable.git",
  4732. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4733. },
  4734. "dist": {
  4735. "type": "zip",
  4736. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4737. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4738. "shasum": ""
  4739. },
  4740. "require": {
  4741. "php": ">=8.1"
  4742. },
  4743. "type": "library",
  4744. "extra": {
  4745. "branch-alias": {
  4746. "dev-master": "3.1-dev"
  4747. }
  4748. },
  4749. "autoload": {
  4750. "files": [
  4751. "src/Functions.php"
  4752. ],
  4753. "psr-4": {
  4754. "Hyperf\\Tappable\\": "src/"
  4755. }
  4756. },
  4757. "notification-url": "https://packagist.org/downloads/",
  4758. "license": [
  4759. "MIT"
  4760. ],
  4761. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4762. "homepage": "https://hyperf.io",
  4763. "keywords": [
  4764. "hyperf",
  4765. "php",
  4766. "swoole",
  4767. "tappable"
  4768. ],
  4769. "support": {
  4770. "docs": "https://hyperf.wiki",
  4771. "issues": "https://github.com/hyperf/hyperf/issues",
  4772. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4773. "source": "https://github.com/hyperf/hyperf"
  4774. },
  4775. "funding": [
  4776. {
  4777. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4778. "type": "custom"
  4779. },
  4780. {
  4781. "url": "https://opencollective.com/hyperf",
  4782. "type": "open_collective"
  4783. }
  4784. ],
  4785. "time": "2024-09-25T02:54:12+00:00"
  4786. },
  4787. {
  4788. "name": "hyperf/translation",
  4789. "version": "v3.1.42",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/hyperf/translation.git",
  4793. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4798. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4799. "shasum": ""
  4800. },
  4801. "require": {
  4802. "hyperf/contract": "~3.1.0",
  4803. "hyperf/macroable": "~3.1.0",
  4804. "hyperf/support": "~3.1.0",
  4805. "hyperf/utils": "~3.1.0",
  4806. "php": ">=8.1",
  4807. "psr/container": "^1.0 || ^2.0"
  4808. },
  4809. "type": "library",
  4810. "extra": {
  4811. "branch-alias": {
  4812. "dev-master": "3.1-dev"
  4813. },
  4814. "hyperf": {
  4815. "config": "Hyperf\\Translation\\ConfigProvider"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "files": [
  4820. "src/Functions.php"
  4821. ],
  4822. "psr-4": {
  4823. "Hyperf\\Translation\\": "src/"
  4824. }
  4825. },
  4826. "notification-url": "https://packagist.org/downloads/",
  4827. "license": [
  4828. "MIT"
  4829. ],
  4830. "description": "An independent translation component, forked by illuminate/translation.",
  4831. "keywords": [
  4832. "hyperf",
  4833. "translation"
  4834. ],
  4835. "support": {
  4836. "issues": "https://github.com/hyperf/translation/issues",
  4837. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4838. },
  4839. "funding": [
  4840. {
  4841. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4842. "type": "custom"
  4843. },
  4844. {
  4845. "url": "https://opencollective.com/hyperf",
  4846. "type": "open_collective"
  4847. }
  4848. ],
  4849. "time": "2024-09-25T02:54:12+00:00"
  4850. },
  4851. {
  4852. "name": "hyperf/utils",
  4853. "version": "v3.1.42",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://github.com/hyperf/utils.git",
  4857. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4862. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4863. "shasum": ""
  4864. },
  4865. "require": {
  4866. "doctrine/inflector": "^2.0",
  4867. "hyperf/code-parser": "~3.1.0",
  4868. "hyperf/codec": "~3.1.0",
  4869. "hyperf/collection": "~3.1.0",
  4870. "hyperf/context": "~3.1.0",
  4871. "hyperf/contract": "~3.1.0",
  4872. "hyperf/coordinator": "~3.1.0",
  4873. "hyperf/coroutine": "~3.1.0",
  4874. "hyperf/engine": "^2.0",
  4875. "hyperf/macroable": "~3.1.0",
  4876. "hyperf/serializer": "~3.1.0",
  4877. "hyperf/stringable": "~3.1.0",
  4878. "hyperf/support": "~3.1.0",
  4879. "php": ">=8.1"
  4880. },
  4881. "type": "library",
  4882. "extra": {
  4883. "branch-alias": {
  4884. "dev-master": "3.1-dev"
  4885. }
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "MIT"
  4890. ],
  4891. "description": "A tools package that could help developer solved the problem quickly.",
  4892. "homepage": "https://hyperf.io",
  4893. "keywords": [
  4894. "hyperf",
  4895. "php",
  4896. "swoole",
  4897. "utils"
  4898. ],
  4899. "support": {
  4900. "docs": "https://hyperf.wiki",
  4901. "issues": "https://github.com/hyperf/hyperf/issues",
  4902. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4903. "source": "https://github.com/hyperf/hyperf"
  4904. },
  4905. "funding": [
  4906. {
  4907. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4908. "type": "custom"
  4909. },
  4910. {
  4911. "url": "https://opencollective.com/hyperf",
  4912. "type": "open_collective"
  4913. }
  4914. ],
  4915. "time": "2024-09-25T02:54:12+00:00"
  4916. },
  4917. {
  4918. "name": "hyperf/validation",
  4919. "version": "v3.1.42",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/hyperf/validation.git",
  4923. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4928. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4929. "shasum": ""
  4930. },
  4931. "require": {
  4932. "egulias/email-validator": "^3.0",
  4933. "hyperf/collection": "~3.1.0",
  4934. "hyperf/conditionable": "~3.1.0",
  4935. "hyperf/contract": "~3.1.0",
  4936. "hyperf/di": "~3.1.0",
  4937. "hyperf/framework": "~3.1.0",
  4938. "hyperf/macroable": "~3.1.0",
  4939. "hyperf/stringable": "~3.1.0",
  4940. "hyperf/support": "~3.1.0",
  4941. "hyperf/tappable": "~3.1.0",
  4942. "hyperf/translation": "~3.1.0",
  4943. "hyperf/utils": "~3.1.0",
  4944. "nesbot/carbon": "^2.21",
  4945. "php": ">=8.1",
  4946. "psr/container": "^1.0 || ^2.0",
  4947. "psr/event-dispatcher": "^1.0",
  4948. "psr/http-message": "^1.0 || ^2.0"
  4949. },
  4950. "suggest": {
  4951. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4952. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4953. },
  4954. "type": "library",
  4955. "extra": {
  4956. "branch-alias": {
  4957. "dev-master": "3.1-dev"
  4958. },
  4959. "hyperf": {
  4960. "config": "Hyperf\\Validation\\ConfigProvider"
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Hyperf\\Validation\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "description": "hyperf validation",
  4973. "keywords": [
  4974. "hyperf",
  4975. "validation"
  4976. ],
  4977. "support": {
  4978. "issues": "https://github.com/hyperf/validation/issues",
  4979. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4980. },
  4981. "funding": [
  4982. {
  4983. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4984. "type": "custom"
  4985. },
  4986. {
  4987. "url": "https://opencollective.com/hyperf",
  4988. "type": "open_collective"
  4989. }
  4990. ],
  4991. "time": "2024-09-25T02:54:12+00:00"
  4992. },
  4993. {
  4994. "name": "hyperf/websocket-server",
  4995. "version": "v3.1.42",
  4996. "source": {
  4997. "type": "git",
  4998. "url": "https://github.com/hyperf/websocket-server.git",
  4999. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  5000. },
  5001. "dist": {
  5002. "type": "zip",
  5003. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  5004. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  5005. "shasum": ""
  5006. },
  5007. "require": {
  5008. "hyperf/collection": "~3.1.0",
  5009. "hyperf/contract": "~3.1.0",
  5010. "hyperf/exception-handler": "~3.1.0",
  5011. "hyperf/http-server": "~3.1.0",
  5012. "hyperf/support": "~3.1.0",
  5013. "hyperf/utils": "~3.1.0",
  5014. "php": ">=8.1",
  5015. "psr/container": "^1.0 || ^2.0",
  5016. "psr/event-dispatcher": "^1.0"
  5017. },
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "3.1-dev"
  5022. },
  5023. "hyperf": {
  5024. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  5025. }
  5026. },
  5027. "autoload": {
  5028. "psr-4": {
  5029. "Hyperf\\WebSocketServer\\": "src/"
  5030. }
  5031. },
  5032. "notification-url": "https://packagist.org/downloads/",
  5033. "license": [
  5034. "MIT"
  5035. ],
  5036. "description": "A websocket server library for Hyperf.",
  5037. "homepage": "https://hyperf.io",
  5038. "keywords": [
  5039. "hyperf",
  5040. "php",
  5041. "swoole",
  5042. "websocket"
  5043. ],
  5044. "support": {
  5045. "docs": "https://hyperf.wiki",
  5046. "issues": "https://github.com/hyperf/hyperf/issues",
  5047. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5048. "source": "https://github.com/hyperf/hyperf"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://hyperf.wiki/#/zh-cn/donate",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://opencollective.com/hyperf",
  5057. "type": "open_collective"
  5058. }
  5059. ],
  5060. "time": "2024-09-25T02:54:12+00:00"
  5061. },
  5062. {
  5063. "name": "jetbrains/phpstorm-attributes",
  5064. "version": "1.2",
  5065. "source": {
  5066. "type": "git",
  5067. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5068. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2"
  5069. },
  5070. "dist": {
  5071. "type": "zip",
  5072. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/64de815a4509c29e00d5e3474087fd24c171afc2",
  5073. "reference": "64de815a4509c29e00d5e3474087fd24c171afc2",
  5074. "shasum": ""
  5075. },
  5076. "type": "library",
  5077. "autoload": {
  5078. "psr-4": {
  5079. "JetBrains\\PhpStorm\\": "src/"
  5080. }
  5081. },
  5082. "notification-url": "https://packagist.org/downloads/",
  5083. "license": [
  5084. "Apache-2.0"
  5085. ],
  5086. "authors": [
  5087. {
  5088. "name": "JetBrains",
  5089. "homepage": "https://www.jetbrains.com"
  5090. }
  5091. ],
  5092. "description": "PhpStorm specific attributes",
  5093. "keywords": [
  5094. "attributes",
  5095. "jetbrains",
  5096. "phpstorm"
  5097. ],
  5098. "support": {
  5099. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5100. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.2"
  5101. },
  5102. "time": "2024-10-11T10:46:19+00:00"
  5103. },
  5104. {
  5105. "name": "laminas/laminas-mime",
  5106. "version": "2.12.0",
  5107. "source": {
  5108. "type": "git",
  5109. "url": "https://github.com/laminas/laminas-mime.git",
  5110. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5111. },
  5112. "dist": {
  5113. "type": "zip",
  5114. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5115. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5116. "shasum": ""
  5117. },
  5118. "require": {
  5119. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5120. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5121. },
  5122. "conflict": {
  5123. "zendframework/zend-mime": "*"
  5124. },
  5125. "require-dev": {
  5126. "laminas/laminas-coding-standard": "~2.4.0",
  5127. "laminas/laminas-mail": "^2.19.0",
  5128. "phpunit/phpunit": "~9.5.25"
  5129. },
  5130. "suggest": {
  5131. "laminas/laminas-mail": "Laminas\\Mail component"
  5132. },
  5133. "type": "library",
  5134. "autoload": {
  5135. "psr-4": {
  5136. "Laminas\\Mime\\": "src/"
  5137. }
  5138. },
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "BSD-3-Clause"
  5142. ],
  5143. "description": "Create and parse MIME messages and parts",
  5144. "homepage": "https://laminas.dev",
  5145. "keywords": [
  5146. "laminas",
  5147. "mime"
  5148. ],
  5149. "support": {
  5150. "chat": "https://laminas.dev/chat",
  5151. "docs": "https://docs.laminas.dev/laminas-mime/",
  5152. "forum": "https://discourse.laminas.dev",
  5153. "issues": "https://github.com/laminas/laminas-mime/issues",
  5154. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5155. "source": "https://github.com/laminas/laminas-mime"
  5156. },
  5157. "funding": [
  5158. {
  5159. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5160. "type": "community_bridge"
  5161. }
  5162. ],
  5163. "time": "2023-11-02T16:47:19+00:00"
  5164. },
  5165. {
  5166. "name": "laminas/laminas-stdlib",
  5167. "version": "3.20.0",
  5168. "source": {
  5169. "type": "git",
  5170. "url": "https://github.com/laminas/laminas-stdlib.git",
  5171. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5172. },
  5173. "dist": {
  5174. "type": "zip",
  5175. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5176. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5177. "shasum": ""
  5178. },
  5179. "require": {
  5180. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5181. },
  5182. "conflict": {
  5183. "zendframework/zend-stdlib": "*"
  5184. },
  5185. "require-dev": {
  5186. "laminas/laminas-coding-standard": "^3.0",
  5187. "phpbench/phpbench": "^1.3.1",
  5188. "phpunit/phpunit": "^10.5.38",
  5189. "psalm/plugin-phpunit": "^0.19.0",
  5190. "vimeo/psalm": "^5.26.1"
  5191. },
  5192. "type": "library",
  5193. "autoload": {
  5194. "psr-4": {
  5195. "Laminas\\Stdlib\\": "src/"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "BSD-3-Clause"
  5201. ],
  5202. "description": "SPL extensions, array utilities, error handlers, and more",
  5203. "homepage": "https://laminas.dev",
  5204. "keywords": [
  5205. "laminas",
  5206. "stdlib"
  5207. ],
  5208. "support": {
  5209. "chat": "https://laminas.dev/chat",
  5210. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5211. "forum": "https://discourse.laminas.dev",
  5212. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5213. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5214. "source": "https://github.com/laminas/laminas-stdlib"
  5215. },
  5216. "funding": [
  5217. {
  5218. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5219. "type": "community_bridge"
  5220. }
  5221. ],
  5222. "time": "2024-10-29T13:46:07+00:00"
  5223. },
  5224. {
  5225. "name": "lcobucci/clock",
  5226. "version": "2.3.0",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://github.com/lcobucci/clock.git",
  5230. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5231. },
  5232. "dist": {
  5233. "type": "zip",
  5234. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5235. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5236. "shasum": ""
  5237. },
  5238. "require": {
  5239. "php": "~8.1.0 || ~8.2.0",
  5240. "stella-maris/clock": "^0.1.7"
  5241. },
  5242. "provide": {
  5243. "psr/clock-implementation": "1.0"
  5244. },
  5245. "require-dev": {
  5246. "infection/infection": "^0.26",
  5247. "lcobucci/coding-standard": "^9.0",
  5248. "phpstan/extension-installer": "^1.2",
  5249. "phpstan/phpstan": "^1.9.4",
  5250. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5251. "phpstan/phpstan-phpunit": "^1.3.2",
  5252. "phpstan/phpstan-strict-rules": "^1.4.4",
  5253. "phpunit/phpunit": "^9.5.27"
  5254. },
  5255. "type": "library",
  5256. "autoload": {
  5257. "psr-4": {
  5258. "Lcobucci\\Clock\\": "src"
  5259. }
  5260. },
  5261. "notification-url": "https://packagist.org/downloads/",
  5262. "license": [
  5263. "MIT"
  5264. ],
  5265. "authors": [
  5266. {
  5267. "name": "Luís Cobucci",
  5268. "email": "lcobucci@gmail.com"
  5269. }
  5270. ],
  5271. "description": "Yet another clock abstraction",
  5272. "support": {
  5273. "issues": "https://github.com/lcobucci/clock/issues",
  5274. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5275. },
  5276. "funding": [
  5277. {
  5278. "url": "https://github.com/lcobucci",
  5279. "type": "github"
  5280. },
  5281. {
  5282. "url": "https://www.patreon.com/lcobucci",
  5283. "type": "patreon"
  5284. }
  5285. ],
  5286. "time": "2022-12-19T14:38:11+00:00"
  5287. },
  5288. {
  5289. "name": "lcobucci/jwt",
  5290. "version": "4.1.5",
  5291. "source": {
  5292. "type": "git",
  5293. "url": "https://github.com/lcobucci/jwt.git",
  5294. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5295. },
  5296. "dist": {
  5297. "type": "zip",
  5298. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5299. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5300. "shasum": ""
  5301. },
  5302. "require": {
  5303. "ext-hash": "*",
  5304. "ext-json": "*",
  5305. "ext-mbstring": "*",
  5306. "ext-openssl": "*",
  5307. "ext-sodium": "*",
  5308. "lcobucci/clock": "^2.0",
  5309. "php": "^7.4 || ^8.0"
  5310. },
  5311. "require-dev": {
  5312. "infection/infection": "^0.21",
  5313. "lcobucci/coding-standard": "^6.0",
  5314. "mikey179/vfsstream": "^1.6.7",
  5315. "phpbench/phpbench": "^1.0",
  5316. "phpstan/extension-installer": "^1.0",
  5317. "phpstan/phpstan": "^0.12",
  5318. "phpstan/phpstan-deprecation-rules": "^0.12",
  5319. "phpstan/phpstan-phpunit": "^0.12",
  5320. "phpstan/phpstan-strict-rules": "^0.12",
  5321. "phpunit/php-invoker": "^3.1",
  5322. "phpunit/phpunit": "^9.5"
  5323. },
  5324. "type": "library",
  5325. "autoload": {
  5326. "psr-4": {
  5327. "Lcobucci\\JWT\\": "src"
  5328. }
  5329. },
  5330. "notification-url": "https://packagist.org/downloads/",
  5331. "license": [
  5332. "BSD-3-Clause"
  5333. ],
  5334. "authors": [
  5335. {
  5336. "name": "Luís Cobucci",
  5337. "email": "lcobucci@gmail.com",
  5338. "role": "Developer"
  5339. }
  5340. ],
  5341. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5342. "keywords": [
  5343. "JWS",
  5344. "jwt"
  5345. ],
  5346. "support": {
  5347. "issues": "https://github.com/lcobucci/jwt/issues",
  5348. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://github.com/lcobucci",
  5353. "type": "github"
  5354. },
  5355. {
  5356. "url": "https://www.patreon.com/lcobucci",
  5357. "type": "patreon"
  5358. }
  5359. ],
  5360. "time": "2021-09-28T19:34:56+00:00"
  5361. },
  5362. {
  5363. "name": "markrogoyski/math-php",
  5364. "version": "v2.10.0",
  5365. "source": {
  5366. "type": "git",
  5367. "url": "https://github.com/markrogoyski/math-php.git",
  5368. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5369. },
  5370. "dist": {
  5371. "type": "zip",
  5372. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5373. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5374. "shasum": ""
  5375. },
  5376. "require": {
  5377. "ext-json": "*",
  5378. "php": ">=7.2.0"
  5379. },
  5380. "require-dev": {
  5381. "php-coveralls/php-coveralls": "^2.0",
  5382. "php-parallel-lint/php-parallel-lint": "^1.2",
  5383. "phploc/phploc": "*",
  5384. "phpmd/phpmd": "^2.6",
  5385. "phpstan/phpstan": "^1.10",
  5386. "phpunit/phpunit": "^8.5",
  5387. "squizlabs/php_codesniffer": "3.*"
  5388. },
  5389. "type": "library",
  5390. "autoload": {
  5391. "psr-4": {
  5392. "MathPHP\\": "src/"
  5393. }
  5394. },
  5395. "notification-url": "https://packagist.org/downloads/",
  5396. "license": [
  5397. "MIT"
  5398. ],
  5399. "authors": [
  5400. {
  5401. "name": "Mark Rogoyski",
  5402. "email": "mark@rogoyski.com",
  5403. "homepage": "https://github.com/markrogoyski",
  5404. "role": "Lead developer"
  5405. },
  5406. {
  5407. "name": "Kevin Nowaczyk",
  5408. "homepage": "https://github.com/Beakerboy",
  5409. "role": "Developer"
  5410. },
  5411. {
  5412. "name": "MathPHP Community of Contributors",
  5413. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5414. }
  5415. ],
  5416. "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",
  5417. "homepage": "https://github.com/markrogoyski/math-php/",
  5418. "keywords": [
  5419. "algebra",
  5420. "combinatorics",
  5421. "distributions",
  5422. "linear algebra",
  5423. "math",
  5424. "mathematics",
  5425. "matrix",
  5426. "numerical analysis",
  5427. "probability",
  5428. "regressions",
  5429. "statistics"
  5430. ],
  5431. "support": {
  5432. "issues": "https://github.com/markrogoyski/math-php/issues",
  5433. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5434. },
  5435. "time": "2024-04-17T00:09:51+00:00"
  5436. },
  5437. {
  5438. "name": "monolog/monolog",
  5439. "version": "3.8.0",
  5440. "source": {
  5441. "type": "git",
  5442. "url": "https://github.com/Seldaek/monolog.git",
  5443. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67"
  5444. },
  5445. "dist": {
  5446. "type": "zip",
  5447. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/32e515fdc02cdafbe4593e30a9350d486b125b67",
  5448. "reference": "32e515fdc02cdafbe4593e30a9350d486b125b67",
  5449. "shasum": ""
  5450. },
  5451. "require": {
  5452. "php": ">=8.1",
  5453. "psr/log": "^2.0 || ^3.0"
  5454. },
  5455. "provide": {
  5456. "psr/log-implementation": "3.0.0"
  5457. },
  5458. "require-dev": {
  5459. "aws/aws-sdk-php": "^3.0",
  5460. "doctrine/couchdb": "~1.0@dev",
  5461. "elasticsearch/elasticsearch": "^7 || ^8",
  5462. "ext-json": "*",
  5463. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5464. "guzzlehttp/guzzle": "^7.4.5",
  5465. "guzzlehttp/psr7": "^2.2",
  5466. "mongodb/mongodb": "^1.8",
  5467. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5468. "php-console/php-console": "^3.1.8",
  5469. "phpstan/phpstan": "^2",
  5470. "phpstan/phpstan-deprecation-rules": "^2",
  5471. "phpstan/phpstan-strict-rules": "^2",
  5472. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  5473. "predis/predis": "^1.1 || ^2",
  5474. "rollbar/rollbar": "^4.0",
  5475. "ruflin/elastica": "^7 || ^8",
  5476. "symfony/mailer": "^5.4 || ^6",
  5477. "symfony/mime": "^5.4 || ^6"
  5478. },
  5479. "suggest": {
  5480. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5481. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5482. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5483. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5484. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5485. "ext-mbstring": "Allow to work properly with unicode symbols",
  5486. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5487. "ext-openssl": "Required to send log messages using SSL",
  5488. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5489. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5490. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5491. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5492. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5493. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "branch-alias": {
  5498. "dev-main": "3.x-dev"
  5499. }
  5500. },
  5501. "autoload": {
  5502. "psr-4": {
  5503. "Monolog\\": "src/Monolog"
  5504. }
  5505. },
  5506. "notification-url": "https://packagist.org/downloads/",
  5507. "license": [
  5508. "MIT"
  5509. ],
  5510. "authors": [
  5511. {
  5512. "name": "Jordi Boggiano",
  5513. "email": "j.boggiano@seld.be",
  5514. "homepage": "https://seld.be"
  5515. }
  5516. ],
  5517. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5518. "homepage": "https://github.com/Seldaek/monolog",
  5519. "keywords": [
  5520. "log",
  5521. "logging",
  5522. "psr-3"
  5523. ],
  5524. "support": {
  5525. "issues": "https://github.com/Seldaek/monolog/issues",
  5526. "source": "https://github.com/Seldaek/monolog/tree/3.8.0"
  5527. },
  5528. "funding": [
  5529. {
  5530. "url": "https://github.com/Seldaek",
  5531. "type": "github"
  5532. },
  5533. {
  5534. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5535. "type": "tidelift"
  5536. }
  5537. ],
  5538. "time": "2024-11-12T13:57:08+00:00"
  5539. },
  5540. {
  5541. "name": "nesbot/carbon",
  5542. "version": "2.72.5",
  5543. "source": {
  5544. "type": "git",
  5545. "url": "https://github.com/briannesbitt/Carbon.git",
  5546. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5547. },
  5548. "dist": {
  5549. "type": "zip",
  5550. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5551. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5552. "shasum": ""
  5553. },
  5554. "require": {
  5555. "carbonphp/carbon-doctrine-types": "*",
  5556. "ext-json": "*",
  5557. "php": "^7.1.8 || ^8.0",
  5558. "psr/clock": "^1.0",
  5559. "symfony/polyfill-mbstring": "^1.0",
  5560. "symfony/polyfill-php80": "^1.16",
  5561. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5562. },
  5563. "provide": {
  5564. "psr/clock-implementation": "1.0"
  5565. },
  5566. "require-dev": {
  5567. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5568. "doctrine/orm": "^2.7 || ^3.0",
  5569. "friendsofphp/php-cs-fixer": "^3.0",
  5570. "kylekatarnls/multi-tester": "^2.0",
  5571. "ondrejmirtes/better-reflection": "*",
  5572. "phpmd/phpmd": "^2.9",
  5573. "phpstan/extension-installer": "^1.0",
  5574. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5575. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5576. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5577. "squizlabs/php_codesniffer": "^3.4"
  5578. },
  5579. "bin": [
  5580. "bin/carbon"
  5581. ],
  5582. "type": "library",
  5583. "extra": {
  5584. "branch-alias": {
  5585. "dev-master": "3.x-dev",
  5586. "dev-2.x": "2.x-dev"
  5587. },
  5588. "laravel": {
  5589. "providers": [
  5590. "Carbon\\Laravel\\ServiceProvider"
  5591. ]
  5592. },
  5593. "phpstan": {
  5594. "includes": [
  5595. "extension.neon"
  5596. ]
  5597. }
  5598. },
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Carbon\\": "src/Carbon/"
  5602. }
  5603. },
  5604. "notification-url": "https://packagist.org/downloads/",
  5605. "license": [
  5606. "MIT"
  5607. ],
  5608. "authors": [
  5609. {
  5610. "name": "Brian Nesbitt",
  5611. "email": "brian@nesbot.com",
  5612. "homepage": "https://markido.com"
  5613. },
  5614. {
  5615. "name": "kylekatarnls",
  5616. "homepage": "https://github.com/kylekatarnls"
  5617. }
  5618. ],
  5619. "description": "An API extension for DateTime that supports 281 different languages.",
  5620. "homepage": "https://carbon.nesbot.com",
  5621. "keywords": [
  5622. "date",
  5623. "datetime",
  5624. "time"
  5625. ],
  5626. "support": {
  5627. "docs": "https://carbon.nesbot.com/docs",
  5628. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5629. "source": "https://github.com/briannesbitt/Carbon"
  5630. },
  5631. "funding": [
  5632. {
  5633. "url": "https://github.com/sponsors/kylekatarnls",
  5634. "type": "github"
  5635. },
  5636. {
  5637. "url": "https://opencollective.com/Carbon#sponsor",
  5638. "type": "opencollective"
  5639. },
  5640. {
  5641. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5642. "type": "tidelift"
  5643. }
  5644. ],
  5645. "time": "2024-06-03T19:18:41+00:00"
  5646. },
  5647. {
  5648. "name": "nikic/fast-route",
  5649. "version": "v1.3.0",
  5650. "source": {
  5651. "type": "git",
  5652. "url": "https://github.com/nikic/FastRoute.git",
  5653. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5654. },
  5655. "dist": {
  5656. "type": "zip",
  5657. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5658. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5659. "shasum": ""
  5660. },
  5661. "require": {
  5662. "php": ">=5.4.0"
  5663. },
  5664. "require-dev": {
  5665. "phpunit/phpunit": "^4.8.35|~5.7"
  5666. },
  5667. "type": "library",
  5668. "autoload": {
  5669. "files": [
  5670. "src/functions.php"
  5671. ],
  5672. "psr-4": {
  5673. "FastRoute\\": "src/"
  5674. }
  5675. },
  5676. "notification-url": "https://packagist.org/downloads/",
  5677. "license": [
  5678. "BSD-3-Clause"
  5679. ],
  5680. "authors": [
  5681. {
  5682. "name": "Nikita Popov",
  5683. "email": "nikic@php.net"
  5684. }
  5685. ],
  5686. "description": "Fast request router for PHP",
  5687. "keywords": [
  5688. "router",
  5689. "routing"
  5690. ],
  5691. "support": {
  5692. "issues": "https://github.com/nikic/FastRoute/issues",
  5693. "source": "https://github.com/nikic/FastRoute/tree/master"
  5694. },
  5695. "time": "2018-02-13T20:26:39+00:00"
  5696. },
  5697. {
  5698. "name": "nikic/php-parser",
  5699. "version": "v4.19.4",
  5700. "source": {
  5701. "type": "git",
  5702. "url": "https://github.com/nikic/PHP-Parser.git",
  5703. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5704. },
  5705. "dist": {
  5706. "type": "zip",
  5707. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5708. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5709. "shasum": ""
  5710. },
  5711. "require": {
  5712. "ext-tokenizer": "*",
  5713. "php": ">=7.1"
  5714. },
  5715. "require-dev": {
  5716. "ircmaxell/php-yacc": "^0.0.7",
  5717. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5718. },
  5719. "bin": [
  5720. "bin/php-parse"
  5721. ],
  5722. "type": "library",
  5723. "extra": {
  5724. "branch-alias": {
  5725. "dev-master": "4.9-dev"
  5726. }
  5727. },
  5728. "autoload": {
  5729. "psr-4": {
  5730. "PhpParser\\": "lib/PhpParser"
  5731. }
  5732. },
  5733. "notification-url": "https://packagist.org/downloads/",
  5734. "license": [
  5735. "BSD-3-Clause"
  5736. ],
  5737. "authors": [
  5738. {
  5739. "name": "Nikita Popov"
  5740. }
  5741. ],
  5742. "description": "A PHP parser written in PHP",
  5743. "keywords": [
  5744. "parser",
  5745. "php"
  5746. ],
  5747. "support": {
  5748. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5749. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5750. },
  5751. "time": "2024-09-29T15:01:53+00:00"
  5752. },
  5753. {
  5754. "name": "paragonie/constant_time_encoding",
  5755. "version": "v3.0.0",
  5756. "source": {
  5757. "type": "git",
  5758. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5759. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5760. },
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5764. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "php": "^8"
  5769. },
  5770. "require-dev": {
  5771. "phpunit/phpunit": "^9",
  5772. "vimeo/psalm": "^4|^5"
  5773. },
  5774. "type": "library",
  5775. "autoload": {
  5776. "psr-4": {
  5777. "ParagonIE\\ConstantTime\\": "src/"
  5778. }
  5779. },
  5780. "notification-url": "https://packagist.org/downloads/",
  5781. "license": [
  5782. "MIT"
  5783. ],
  5784. "authors": [
  5785. {
  5786. "name": "Paragon Initiative Enterprises",
  5787. "email": "security@paragonie.com",
  5788. "homepage": "https://paragonie.com",
  5789. "role": "Maintainer"
  5790. },
  5791. {
  5792. "name": "Steve 'Sc00bz' Thomas",
  5793. "email": "steve@tobtu.com",
  5794. "homepage": "https://www.tobtu.com",
  5795. "role": "Original Developer"
  5796. }
  5797. ],
  5798. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5799. "keywords": [
  5800. "base16",
  5801. "base32",
  5802. "base32_decode",
  5803. "base32_encode",
  5804. "base64",
  5805. "base64_decode",
  5806. "base64_encode",
  5807. "bin2hex",
  5808. "encoding",
  5809. "hex",
  5810. "hex2bin",
  5811. "rfc4648"
  5812. ],
  5813. "support": {
  5814. "email": "info@paragonie.com",
  5815. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5816. "source": "https://github.com/paragonie/constant_time_encoding"
  5817. },
  5818. "time": "2024-05-08T12:36:18+00:00"
  5819. },
  5820. {
  5821. "name": "paragonie/random_compat",
  5822. "version": "v9.99.100",
  5823. "source": {
  5824. "type": "git",
  5825. "url": "https://github.com/paragonie/random_compat.git",
  5826. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5827. },
  5828. "dist": {
  5829. "type": "zip",
  5830. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5831. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5832. "shasum": ""
  5833. },
  5834. "require": {
  5835. "php": ">= 7"
  5836. },
  5837. "require-dev": {
  5838. "phpunit/phpunit": "4.*|5.*",
  5839. "vimeo/psalm": "^1"
  5840. },
  5841. "suggest": {
  5842. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5843. },
  5844. "type": "library",
  5845. "notification-url": "https://packagist.org/downloads/",
  5846. "license": [
  5847. "MIT"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Paragon Initiative Enterprises",
  5852. "email": "security@paragonie.com",
  5853. "homepage": "https://paragonie.com"
  5854. }
  5855. ],
  5856. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5857. "keywords": [
  5858. "csprng",
  5859. "polyfill",
  5860. "pseudorandom",
  5861. "random"
  5862. ],
  5863. "support": {
  5864. "email": "info@paragonie.com",
  5865. "issues": "https://github.com/paragonie/random_compat/issues",
  5866. "source": "https://github.com/paragonie/random_compat"
  5867. },
  5868. "time": "2020-10-15T08:29:30+00:00"
  5869. },
  5870. {
  5871. "name": "php-amqplib/php-amqplib",
  5872. "version": "v3.7.1",
  5873. "source": {
  5874. "type": "git",
  5875. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5876. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5877. },
  5878. "dist": {
  5879. "type": "zip",
  5880. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5881. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5882. "shasum": ""
  5883. },
  5884. "require": {
  5885. "ext-mbstring": "*",
  5886. "ext-sockets": "*",
  5887. "php": "^7.2||^8.0",
  5888. "phpseclib/phpseclib": "^2.0|^3.0"
  5889. },
  5890. "conflict": {
  5891. "php": "7.4.0 - 7.4.1"
  5892. },
  5893. "replace": {
  5894. "videlalvaro/php-amqplib": "self.version"
  5895. },
  5896. "require-dev": {
  5897. "ext-curl": "*",
  5898. "nategood/httpful": "^0.2.20",
  5899. "phpunit/phpunit": "^7.5|^9.5",
  5900. "squizlabs/php_codesniffer": "^3.6"
  5901. },
  5902. "type": "library",
  5903. "extra": {
  5904. "branch-alias": {
  5905. "dev-master": "3.0-dev"
  5906. }
  5907. },
  5908. "autoload": {
  5909. "psr-4": {
  5910. "PhpAmqpLib\\": "PhpAmqpLib/"
  5911. }
  5912. },
  5913. "notification-url": "https://packagist.org/downloads/",
  5914. "license": [
  5915. "LGPL-2.1-or-later"
  5916. ],
  5917. "authors": [
  5918. {
  5919. "name": "Alvaro Videla",
  5920. "role": "Original Maintainer"
  5921. },
  5922. {
  5923. "name": "Raúl Araya",
  5924. "email": "nubeiro@gmail.com",
  5925. "role": "Maintainer"
  5926. },
  5927. {
  5928. "name": "Luke Bakken",
  5929. "email": "luke@bakken.io",
  5930. "role": "Maintainer"
  5931. },
  5932. {
  5933. "name": "Ramūnas Dronga",
  5934. "email": "github@ramuno.lt",
  5935. "role": "Maintainer"
  5936. }
  5937. ],
  5938. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5939. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5940. "keywords": [
  5941. "message",
  5942. "queue",
  5943. "rabbitmq"
  5944. ],
  5945. "support": {
  5946. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5947. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5948. },
  5949. "time": "2024-09-03T19:18:03+00:00"
  5950. },
  5951. {
  5952. "name": "php-di/phpdoc-reader",
  5953. "version": "2.2.1",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5957. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5962. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "php": ">=7.2.0"
  5967. },
  5968. "require-dev": {
  5969. "mnapoli/hard-mode": "~0.3.0",
  5970. "phpunit/phpunit": "^8.5|^9.0"
  5971. },
  5972. "type": "library",
  5973. "autoload": {
  5974. "psr-4": {
  5975. "PhpDocReader\\": "src/PhpDocReader"
  5976. }
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5983. "keywords": [
  5984. "phpdoc",
  5985. "reflection"
  5986. ],
  5987. "support": {
  5988. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5989. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5990. },
  5991. "time": "2020-10-12T12:39:22+00:00"
  5992. },
  5993. {
  5994. "name": "phper666/jwt-auth",
  5995. "version": "v4.0.11",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/phper666/jwt-auth.git",
  5999. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6004. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "ext-swoole": ">=4.4",
  6009. "lcobucci/jwt": "4.1.5",
  6010. "nesbot/carbon": "^1.0 || ^2.0",
  6011. "php": ">=7.4"
  6012. },
  6013. "suggest": {
  6014. "hyperf/cache": "required hyperf/cache ~2.2.0",
  6015. "hyperf/command": "required hyperf/command ~2.2.0",
  6016. "hyperf/config": "required hyperf/config ~2.2.0",
  6017. "hyperf/di": "required hyperf/di ~2.2.0"
  6018. },
  6019. "type": "library",
  6020. "extra": {
  6021. "hyperf": {
  6022. "config": "Phper666\\JWTAuth\\ConfigProvider"
  6023. }
  6024. },
  6025. "autoload": {
  6026. "files": [
  6027. "src/Functions.php"
  6028. ],
  6029. "psr-4": {
  6030. "Phper666\\JWTAuth\\": "src/"
  6031. }
  6032. },
  6033. "notification-url": "https://packagist.org/downloads/",
  6034. "license": [
  6035. "MIT"
  6036. ],
  6037. "authors": [
  6038. {
  6039. "name": "Li Yuzhao",
  6040. "email": "562405704@qq.com",
  6041. "homepage": "https://github.com/phper666/jwt-auth",
  6042. "role": "Developer"
  6043. }
  6044. ],
  6045. "description": "jwt-auth Component",
  6046. "keywords": [
  6047. "hyperf",
  6048. "php"
  6049. ],
  6050. "support": {
  6051. "issues": "https://github.com/phper666/jwt-auth/issues",
  6052. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6053. },
  6054. "time": "2024-02-02T13:24:54+00:00"
  6055. },
  6056. {
  6057. "name": "phpoption/phpoption",
  6058. "version": "1.9.3",
  6059. "source": {
  6060. "type": "git",
  6061. "url": "https://github.com/schmittjoh/php-option.git",
  6062. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6063. },
  6064. "dist": {
  6065. "type": "zip",
  6066. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6067. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6068. "shasum": ""
  6069. },
  6070. "require": {
  6071. "php": "^7.2.5 || ^8.0"
  6072. },
  6073. "require-dev": {
  6074. "bamarni/composer-bin-plugin": "^1.8.2",
  6075. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6076. },
  6077. "type": "library",
  6078. "extra": {
  6079. "bamarni-bin": {
  6080. "bin-links": true,
  6081. "forward-command": false
  6082. },
  6083. "branch-alias": {
  6084. "dev-master": "1.9-dev"
  6085. }
  6086. },
  6087. "autoload": {
  6088. "psr-4": {
  6089. "PhpOption\\": "src/PhpOption/"
  6090. }
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "Apache-2.0"
  6095. ],
  6096. "authors": [
  6097. {
  6098. "name": "Johannes M. Schmitt",
  6099. "email": "schmittjoh@gmail.com",
  6100. "homepage": "https://github.com/schmittjoh"
  6101. },
  6102. {
  6103. "name": "Graham Campbell",
  6104. "email": "hello@gjcampbell.co.uk",
  6105. "homepage": "https://github.com/GrahamCampbell"
  6106. }
  6107. ],
  6108. "description": "Option Type for PHP",
  6109. "keywords": [
  6110. "language",
  6111. "option",
  6112. "php",
  6113. "type"
  6114. ],
  6115. "support": {
  6116. "issues": "https://github.com/schmittjoh/php-option/issues",
  6117. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6118. },
  6119. "funding": [
  6120. {
  6121. "url": "https://github.com/GrahamCampbell",
  6122. "type": "github"
  6123. },
  6124. {
  6125. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6126. "type": "tidelift"
  6127. }
  6128. ],
  6129. "time": "2024-07-20T21:41:07+00:00"
  6130. },
  6131. {
  6132. "name": "phpseclib/phpseclib",
  6133. "version": "3.0.42",
  6134. "source": {
  6135. "type": "git",
  6136. "url": "https://github.com/phpseclib/phpseclib.git",
  6137. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  6138. },
  6139. "dist": {
  6140. "type": "zip",
  6141. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6142. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  6143. "shasum": ""
  6144. },
  6145. "require": {
  6146. "paragonie/constant_time_encoding": "^1|^2|^3",
  6147. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6148. "php": ">=5.6.1"
  6149. },
  6150. "require-dev": {
  6151. "phpunit/phpunit": "*"
  6152. },
  6153. "suggest": {
  6154. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6155. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6156. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6157. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6158. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6159. },
  6160. "type": "library",
  6161. "autoload": {
  6162. "files": [
  6163. "phpseclib/bootstrap.php"
  6164. ],
  6165. "psr-4": {
  6166. "phpseclib3\\": "phpseclib/"
  6167. }
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Jim Wigginton",
  6176. "email": "terrafrost@php.net",
  6177. "role": "Lead Developer"
  6178. },
  6179. {
  6180. "name": "Patrick Monnerat",
  6181. "email": "pm@datasphere.ch",
  6182. "role": "Developer"
  6183. },
  6184. {
  6185. "name": "Andreas Fischer",
  6186. "email": "bantu@phpbb.com",
  6187. "role": "Developer"
  6188. },
  6189. {
  6190. "name": "Hans-Jürgen Petrich",
  6191. "email": "petrich@tronic-media.com",
  6192. "role": "Developer"
  6193. },
  6194. {
  6195. "name": "Graham Campbell",
  6196. "email": "graham@alt-three.com",
  6197. "role": "Developer"
  6198. }
  6199. ],
  6200. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6201. "homepage": "http://phpseclib.sourceforge.net",
  6202. "keywords": [
  6203. "BigInteger",
  6204. "aes",
  6205. "asn.1",
  6206. "asn1",
  6207. "blowfish",
  6208. "crypto",
  6209. "cryptography",
  6210. "encryption",
  6211. "rsa",
  6212. "security",
  6213. "sftp",
  6214. "signature",
  6215. "signing",
  6216. "ssh",
  6217. "twofish",
  6218. "x.509",
  6219. "x509"
  6220. ],
  6221. "support": {
  6222. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6223. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6224. },
  6225. "funding": [
  6226. {
  6227. "url": "https://github.com/terrafrost",
  6228. "type": "github"
  6229. },
  6230. {
  6231. "url": "https://www.patreon.com/phpseclib",
  6232. "type": "patreon"
  6233. },
  6234. {
  6235. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6236. "type": "tidelift"
  6237. }
  6238. ],
  6239. "time": "2024-09-16T03:06:04+00:00"
  6240. },
  6241. {
  6242. "name": "psr/cache",
  6243. "version": "3.0.0",
  6244. "source": {
  6245. "type": "git",
  6246. "url": "https://github.com/php-fig/cache.git",
  6247. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6248. },
  6249. "dist": {
  6250. "type": "zip",
  6251. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6252. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6253. "shasum": ""
  6254. },
  6255. "require": {
  6256. "php": ">=8.0.0"
  6257. },
  6258. "type": "library",
  6259. "extra": {
  6260. "branch-alias": {
  6261. "dev-master": "1.0.x-dev"
  6262. }
  6263. },
  6264. "autoload": {
  6265. "psr-4": {
  6266. "Psr\\Cache\\": "src/"
  6267. }
  6268. },
  6269. "notification-url": "https://packagist.org/downloads/",
  6270. "license": [
  6271. "MIT"
  6272. ],
  6273. "authors": [
  6274. {
  6275. "name": "PHP-FIG",
  6276. "homepage": "https://www.php-fig.org/"
  6277. }
  6278. ],
  6279. "description": "Common interface for caching libraries",
  6280. "keywords": [
  6281. "cache",
  6282. "psr",
  6283. "psr-6"
  6284. ],
  6285. "support": {
  6286. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6287. },
  6288. "time": "2021-02-03T23:26:27+00:00"
  6289. },
  6290. {
  6291. "name": "psr/clock",
  6292. "version": "1.0.0",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/php-fig/clock.git",
  6296. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6301. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6302. "shasum": ""
  6303. },
  6304. "require": {
  6305. "php": "^7.0 || ^8.0"
  6306. },
  6307. "type": "library",
  6308. "autoload": {
  6309. "psr-4": {
  6310. "Psr\\Clock\\": "src/"
  6311. }
  6312. },
  6313. "notification-url": "https://packagist.org/downloads/",
  6314. "license": [
  6315. "MIT"
  6316. ],
  6317. "authors": [
  6318. {
  6319. "name": "PHP-FIG",
  6320. "homepage": "https://www.php-fig.org/"
  6321. }
  6322. ],
  6323. "description": "Common interface for reading the clock.",
  6324. "homepage": "https://github.com/php-fig/clock",
  6325. "keywords": [
  6326. "clock",
  6327. "now",
  6328. "psr",
  6329. "psr-20",
  6330. "time"
  6331. ],
  6332. "support": {
  6333. "issues": "https://github.com/php-fig/clock/issues",
  6334. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6335. },
  6336. "time": "2022-11-25T14:36:26+00:00"
  6337. },
  6338. {
  6339. "name": "psr/container",
  6340. "version": "2.0.2",
  6341. "source": {
  6342. "type": "git",
  6343. "url": "https://github.com/php-fig/container.git",
  6344. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6345. },
  6346. "dist": {
  6347. "type": "zip",
  6348. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6349. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6350. "shasum": ""
  6351. },
  6352. "require": {
  6353. "php": ">=7.4.0"
  6354. },
  6355. "type": "library",
  6356. "extra": {
  6357. "branch-alias": {
  6358. "dev-master": "2.0.x-dev"
  6359. }
  6360. },
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Psr\\Container\\": "src/"
  6364. }
  6365. },
  6366. "notification-url": "https://packagist.org/downloads/",
  6367. "license": [
  6368. "MIT"
  6369. ],
  6370. "authors": [
  6371. {
  6372. "name": "PHP-FIG",
  6373. "homepage": "https://www.php-fig.org/"
  6374. }
  6375. ],
  6376. "description": "Common Container Interface (PHP FIG PSR-11)",
  6377. "homepage": "https://github.com/php-fig/container",
  6378. "keywords": [
  6379. "PSR-11",
  6380. "container",
  6381. "container-interface",
  6382. "container-interop",
  6383. "psr"
  6384. ],
  6385. "support": {
  6386. "issues": "https://github.com/php-fig/container/issues",
  6387. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6388. },
  6389. "time": "2021-11-05T16:47:00+00:00"
  6390. },
  6391. {
  6392. "name": "psr/event-dispatcher",
  6393. "version": "1.0.0",
  6394. "source": {
  6395. "type": "git",
  6396. "url": "https://github.com/php-fig/event-dispatcher.git",
  6397. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6398. },
  6399. "dist": {
  6400. "type": "zip",
  6401. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6402. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6403. "shasum": ""
  6404. },
  6405. "require": {
  6406. "php": ">=7.2.0"
  6407. },
  6408. "type": "library",
  6409. "extra": {
  6410. "branch-alias": {
  6411. "dev-master": "1.0.x-dev"
  6412. }
  6413. },
  6414. "autoload": {
  6415. "psr-4": {
  6416. "Psr\\EventDispatcher\\": "src/"
  6417. }
  6418. },
  6419. "notification-url": "https://packagist.org/downloads/",
  6420. "license": [
  6421. "MIT"
  6422. ],
  6423. "authors": [
  6424. {
  6425. "name": "PHP-FIG",
  6426. "homepage": "http://www.php-fig.org/"
  6427. }
  6428. ],
  6429. "description": "Standard interfaces for event handling.",
  6430. "keywords": [
  6431. "events",
  6432. "psr",
  6433. "psr-14"
  6434. ],
  6435. "support": {
  6436. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6437. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6438. },
  6439. "time": "2019-01-08T18:20:26+00:00"
  6440. },
  6441. {
  6442. "name": "psr/http-client",
  6443. "version": "1.0.3",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/php-fig/http-client.git",
  6447. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6452. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "php": "^7.0 || ^8.0",
  6457. "psr/http-message": "^1.0 || ^2.0"
  6458. },
  6459. "type": "library",
  6460. "extra": {
  6461. "branch-alias": {
  6462. "dev-master": "1.0.x-dev"
  6463. }
  6464. },
  6465. "autoload": {
  6466. "psr-4": {
  6467. "Psr\\Http\\Client\\": "src/"
  6468. }
  6469. },
  6470. "notification-url": "https://packagist.org/downloads/",
  6471. "license": [
  6472. "MIT"
  6473. ],
  6474. "authors": [
  6475. {
  6476. "name": "PHP-FIG",
  6477. "homepage": "https://www.php-fig.org/"
  6478. }
  6479. ],
  6480. "description": "Common interface for HTTP clients",
  6481. "homepage": "https://github.com/php-fig/http-client",
  6482. "keywords": [
  6483. "http",
  6484. "http-client",
  6485. "psr",
  6486. "psr-18"
  6487. ],
  6488. "support": {
  6489. "source": "https://github.com/php-fig/http-client"
  6490. },
  6491. "time": "2023-09-23T14:17:50+00:00"
  6492. },
  6493. {
  6494. "name": "psr/http-factory",
  6495. "version": "1.1.0",
  6496. "source": {
  6497. "type": "git",
  6498. "url": "https://github.com/php-fig/http-factory.git",
  6499. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6500. },
  6501. "dist": {
  6502. "type": "zip",
  6503. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6504. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6505. "shasum": ""
  6506. },
  6507. "require": {
  6508. "php": ">=7.1",
  6509. "psr/http-message": "^1.0 || ^2.0"
  6510. },
  6511. "type": "library",
  6512. "extra": {
  6513. "branch-alias": {
  6514. "dev-master": "1.0.x-dev"
  6515. }
  6516. },
  6517. "autoload": {
  6518. "psr-4": {
  6519. "Psr\\Http\\Message\\": "src/"
  6520. }
  6521. },
  6522. "notification-url": "https://packagist.org/downloads/",
  6523. "license": [
  6524. "MIT"
  6525. ],
  6526. "authors": [
  6527. {
  6528. "name": "PHP-FIG",
  6529. "homepage": "https://www.php-fig.org/"
  6530. }
  6531. ],
  6532. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6533. "keywords": [
  6534. "factory",
  6535. "http",
  6536. "message",
  6537. "psr",
  6538. "psr-17",
  6539. "psr-7",
  6540. "request",
  6541. "response"
  6542. ],
  6543. "support": {
  6544. "source": "https://github.com/php-fig/http-factory"
  6545. },
  6546. "time": "2024-04-15T12:06:14+00:00"
  6547. },
  6548. {
  6549. "name": "psr/http-message",
  6550. "version": "2.0",
  6551. "source": {
  6552. "type": "git",
  6553. "url": "https://github.com/php-fig/http-message.git",
  6554. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6555. },
  6556. "dist": {
  6557. "type": "zip",
  6558. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6559. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6560. "shasum": ""
  6561. },
  6562. "require": {
  6563. "php": "^7.2 || ^8.0"
  6564. },
  6565. "type": "library",
  6566. "extra": {
  6567. "branch-alias": {
  6568. "dev-master": "2.0.x-dev"
  6569. }
  6570. },
  6571. "autoload": {
  6572. "psr-4": {
  6573. "Psr\\Http\\Message\\": "src/"
  6574. }
  6575. },
  6576. "notification-url": "https://packagist.org/downloads/",
  6577. "license": [
  6578. "MIT"
  6579. ],
  6580. "authors": [
  6581. {
  6582. "name": "PHP-FIG",
  6583. "homepage": "https://www.php-fig.org/"
  6584. }
  6585. ],
  6586. "description": "Common interface for HTTP messages",
  6587. "homepage": "https://github.com/php-fig/http-message",
  6588. "keywords": [
  6589. "http",
  6590. "http-message",
  6591. "psr",
  6592. "psr-7",
  6593. "request",
  6594. "response"
  6595. ],
  6596. "support": {
  6597. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6598. },
  6599. "time": "2023-04-04T09:54:51+00:00"
  6600. },
  6601. {
  6602. "name": "psr/http-server-handler",
  6603. "version": "1.0.2",
  6604. "source": {
  6605. "type": "git",
  6606. "url": "https://github.com/php-fig/http-server-handler.git",
  6607. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6608. },
  6609. "dist": {
  6610. "type": "zip",
  6611. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6612. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6613. "shasum": ""
  6614. },
  6615. "require": {
  6616. "php": ">=7.0",
  6617. "psr/http-message": "^1.0 || ^2.0"
  6618. },
  6619. "type": "library",
  6620. "extra": {
  6621. "branch-alias": {
  6622. "dev-master": "1.0.x-dev"
  6623. }
  6624. },
  6625. "autoload": {
  6626. "psr-4": {
  6627. "Psr\\Http\\Server\\": "src/"
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "PHP-FIG",
  6637. "homepage": "https://www.php-fig.org/"
  6638. }
  6639. ],
  6640. "description": "Common interface for HTTP server-side request handler",
  6641. "keywords": [
  6642. "handler",
  6643. "http",
  6644. "http-interop",
  6645. "psr",
  6646. "psr-15",
  6647. "psr-7",
  6648. "request",
  6649. "response",
  6650. "server"
  6651. ],
  6652. "support": {
  6653. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6654. },
  6655. "time": "2023-04-10T20:06:20+00:00"
  6656. },
  6657. {
  6658. "name": "psr/http-server-middleware",
  6659. "version": "1.0.2",
  6660. "source": {
  6661. "type": "git",
  6662. "url": "https://github.com/php-fig/http-server-middleware.git",
  6663. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6664. },
  6665. "dist": {
  6666. "type": "zip",
  6667. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6668. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6669. "shasum": ""
  6670. },
  6671. "require": {
  6672. "php": ">=7.0",
  6673. "psr/http-message": "^1.0 || ^2.0",
  6674. "psr/http-server-handler": "^1.0"
  6675. },
  6676. "type": "library",
  6677. "extra": {
  6678. "branch-alias": {
  6679. "dev-master": "1.0.x-dev"
  6680. }
  6681. },
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Psr\\Http\\Server\\": "src/"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "PHP-FIG",
  6694. "homepage": "https://www.php-fig.org/"
  6695. }
  6696. ],
  6697. "description": "Common interface for HTTP server-side middleware",
  6698. "keywords": [
  6699. "http",
  6700. "http-interop",
  6701. "middleware",
  6702. "psr",
  6703. "psr-15",
  6704. "psr-7",
  6705. "request",
  6706. "response"
  6707. ],
  6708. "support": {
  6709. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6710. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6711. },
  6712. "time": "2023-04-11T06:14:47+00:00"
  6713. },
  6714. {
  6715. "name": "psr/log",
  6716. "version": "3.0.2",
  6717. "source": {
  6718. "type": "git",
  6719. "url": "https://github.com/php-fig/log.git",
  6720. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6721. },
  6722. "dist": {
  6723. "type": "zip",
  6724. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6725. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6726. "shasum": ""
  6727. },
  6728. "require": {
  6729. "php": ">=8.0.0"
  6730. },
  6731. "type": "library",
  6732. "extra": {
  6733. "branch-alias": {
  6734. "dev-master": "3.x-dev"
  6735. }
  6736. },
  6737. "autoload": {
  6738. "psr-4": {
  6739. "Psr\\Log\\": "src"
  6740. }
  6741. },
  6742. "notification-url": "https://packagist.org/downloads/",
  6743. "license": [
  6744. "MIT"
  6745. ],
  6746. "authors": [
  6747. {
  6748. "name": "PHP-FIG",
  6749. "homepage": "https://www.php-fig.org/"
  6750. }
  6751. ],
  6752. "description": "Common interface for logging libraries",
  6753. "homepage": "https://github.com/php-fig/log",
  6754. "keywords": [
  6755. "log",
  6756. "psr",
  6757. "psr-3"
  6758. ],
  6759. "support": {
  6760. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6761. },
  6762. "time": "2024-09-11T13:17:53+00:00"
  6763. },
  6764. {
  6765. "name": "psr/simple-cache",
  6766. "version": "3.0.0",
  6767. "source": {
  6768. "type": "git",
  6769. "url": "https://github.com/php-fig/simple-cache.git",
  6770. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6771. },
  6772. "dist": {
  6773. "type": "zip",
  6774. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6775. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6776. "shasum": ""
  6777. },
  6778. "require": {
  6779. "php": ">=8.0.0"
  6780. },
  6781. "type": "library",
  6782. "extra": {
  6783. "branch-alias": {
  6784. "dev-master": "3.0.x-dev"
  6785. }
  6786. },
  6787. "autoload": {
  6788. "psr-4": {
  6789. "Psr\\SimpleCache\\": "src/"
  6790. }
  6791. },
  6792. "notification-url": "https://packagist.org/downloads/",
  6793. "license": [
  6794. "MIT"
  6795. ],
  6796. "authors": [
  6797. {
  6798. "name": "PHP-FIG",
  6799. "homepage": "https://www.php-fig.org/"
  6800. }
  6801. ],
  6802. "description": "Common interfaces for simple caching",
  6803. "keywords": [
  6804. "cache",
  6805. "caching",
  6806. "psr",
  6807. "psr-16",
  6808. "simple-cache"
  6809. ],
  6810. "support": {
  6811. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6812. },
  6813. "time": "2021-10-29T13:26:27+00:00"
  6814. },
  6815. {
  6816. "name": "ralouphie/getallheaders",
  6817. "version": "3.0.3",
  6818. "source": {
  6819. "type": "git",
  6820. "url": "https://github.com/ralouphie/getallheaders.git",
  6821. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6822. },
  6823. "dist": {
  6824. "type": "zip",
  6825. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6826. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6827. "shasum": ""
  6828. },
  6829. "require": {
  6830. "php": ">=5.6"
  6831. },
  6832. "require-dev": {
  6833. "php-coveralls/php-coveralls": "^2.1",
  6834. "phpunit/phpunit": "^5 || ^6.5"
  6835. },
  6836. "type": "library",
  6837. "autoload": {
  6838. "files": [
  6839. "src/getallheaders.php"
  6840. ]
  6841. },
  6842. "notification-url": "https://packagist.org/downloads/",
  6843. "license": [
  6844. "MIT"
  6845. ],
  6846. "authors": [
  6847. {
  6848. "name": "Ralph Khattar",
  6849. "email": "ralph.khattar@gmail.com"
  6850. }
  6851. ],
  6852. "description": "A polyfill for getallheaders.",
  6853. "support": {
  6854. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6855. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6856. },
  6857. "time": "2019-03-08T08:55:37+00:00"
  6858. },
  6859. {
  6860. "name": "stella-maris/clock",
  6861. "version": "0.1.7",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/stella-maris-solutions/clock.git",
  6865. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6870. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "php": "^7.0|^8.0",
  6875. "psr/clock": "^1.0"
  6876. },
  6877. "type": "library",
  6878. "autoload": {
  6879. "psr-4": {
  6880. "StellaMaris\\Clock\\": "src"
  6881. }
  6882. },
  6883. "notification-url": "https://packagist.org/downloads/",
  6884. "license": [
  6885. "MIT"
  6886. ],
  6887. "authors": [
  6888. {
  6889. "name": "Andreas Heigl",
  6890. "role": "Maintainer"
  6891. }
  6892. ],
  6893. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6894. "homepage": "https://gitlab.com/stella-maris/clock",
  6895. "keywords": [
  6896. "clock",
  6897. "datetime",
  6898. "point in time",
  6899. "psr20"
  6900. ],
  6901. "support": {
  6902. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6903. },
  6904. "time": "2022-11-25T16:15:06+00:00"
  6905. },
  6906. {
  6907. "name": "swow/psr7-plus",
  6908. "version": "v1.1.2",
  6909. "source": {
  6910. "type": "git",
  6911. "url": "https://github.com/swow/psr7-plus.git",
  6912. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6913. },
  6914. "dist": {
  6915. "type": "zip",
  6916. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6917. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6918. "shasum": ""
  6919. },
  6920. "require": {
  6921. "php": ">=8.0",
  6922. "psr/http-client": "^1.0",
  6923. "psr/http-factory": "^1.0",
  6924. "psr/http-message": "^1.1|^2.0"
  6925. },
  6926. "type": "library",
  6927. "autoload": {
  6928. "psr-4": {
  6929. "Swow\\Psr7\\Message\\": "src/Message/"
  6930. }
  6931. },
  6932. "notification-url": "https://packagist.org/downloads/",
  6933. "license": [
  6934. "Apache-2.0"
  6935. ],
  6936. "authors": [
  6937. {
  6938. "name": "twose",
  6939. "email": "twosee@php.net"
  6940. }
  6941. ],
  6942. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6943. "keywords": [
  6944. "http",
  6945. "psr17",
  6946. "psr7",
  6947. "swow",
  6948. "websocket"
  6949. ],
  6950. "support": {
  6951. "issues": "https://github.com/swow/swow",
  6952. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6953. },
  6954. "time": "2023-06-15T09:18:11+00:00"
  6955. },
  6956. {
  6957. "name": "symfony/console",
  6958. "version": "v6.4.15",
  6959. "source": {
  6960. "type": "git",
  6961. "url": "https://github.com/symfony/console.git",
  6962. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd"
  6963. },
  6964. "dist": {
  6965. "type": "zip",
  6966. "url": "https://api.github.com/repos/symfony/console/zipball/f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6967. "reference": "f1fc6f47283e27336e7cebb9e8946c8de7bff9bd",
  6968. "shasum": ""
  6969. },
  6970. "require": {
  6971. "php": ">=8.1",
  6972. "symfony/deprecation-contracts": "^2.5|^3",
  6973. "symfony/polyfill-mbstring": "~1.0",
  6974. "symfony/service-contracts": "^2.5|^3",
  6975. "symfony/string": "^5.4|^6.0|^7.0"
  6976. },
  6977. "conflict": {
  6978. "symfony/dependency-injection": "<5.4",
  6979. "symfony/dotenv": "<5.4",
  6980. "symfony/event-dispatcher": "<5.4",
  6981. "symfony/lock": "<5.4",
  6982. "symfony/process": "<5.4"
  6983. },
  6984. "provide": {
  6985. "psr/log-implementation": "1.0|2.0|3.0"
  6986. },
  6987. "require-dev": {
  6988. "psr/log": "^1|^2|^3",
  6989. "symfony/config": "^5.4|^6.0|^7.0",
  6990. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6991. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6992. "symfony/http-foundation": "^6.4|^7.0",
  6993. "symfony/http-kernel": "^6.4|^7.0",
  6994. "symfony/lock": "^5.4|^6.0|^7.0",
  6995. "symfony/messenger": "^5.4|^6.0|^7.0",
  6996. "symfony/process": "^5.4|^6.0|^7.0",
  6997. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6998. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6999. },
  7000. "type": "library",
  7001. "autoload": {
  7002. "psr-4": {
  7003. "Symfony\\Component\\Console\\": ""
  7004. },
  7005. "exclude-from-classmap": [
  7006. "/Tests/"
  7007. ]
  7008. },
  7009. "notification-url": "https://packagist.org/downloads/",
  7010. "license": [
  7011. "MIT"
  7012. ],
  7013. "authors": [
  7014. {
  7015. "name": "Fabien Potencier",
  7016. "email": "fabien@symfony.com"
  7017. },
  7018. {
  7019. "name": "Symfony Community",
  7020. "homepage": "https://symfony.com/contributors"
  7021. }
  7022. ],
  7023. "description": "Eases the creation of beautiful and testable command line interfaces",
  7024. "homepage": "https://symfony.com",
  7025. "keywords": [
  7026. "cli",
  7027. "command-line",
  7028. "console",
  7029. "terminal"
  7030. ],
  7031. "support": {
  7032. "source": "https://github.com/symfony/console/tree/v6.4.15"
  7033. },
  7034. "funding": [
  7035. {
  7036. "url": "https://symfony.com/sponsor",
  7037. "type": "custom"
  7038. },
  7039. {
  7040. "url": "https://github.com/fabpot",
  7041. "type": "github"
  7042. },
  7043. {
  7044. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7045. "type": "tidelift"
  7046. }
  7047. ],
  7048. "time": "2024-11-06T14:19:14+00:00"
  7049. },
  7050. {
  7051. "name": "symfony/deprecation-contracts",
  7052. "version": "v3.5.0",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/symfony/deprecation-contracts.git",
  7056. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7061. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7062. "shasum": ""
  7063. },
  7064. "require": {
  7065. "php": ">=8.1"
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-main": "3.5-dev"
  7071. },
  7072. "thanks": {
  7073. "name": "symfony/contracts",
  7074. "url": "https://github.com/symfony/contracts"
  7075. }
  7076. },
  7077. "autoload": {
  7078. "files": [
  7079. "function.php"
  7080. ]
  7081. },
  7082. "notification-url": "https://packagist.org/downloads/",
  7083. "license": [
  7084. "MIT"
  7085. ],
  7086. "authors": [
  7087. {
  7088. "name": "Nicolas Grekas",
  7089. "email": "p@tchwork.com"
  7090. },
  7091. {
  7092. "name": "Symfony Community",
  7093. "homepage": "https://symfony.com/contributors"
  7094. }
  7095. ],
  7096. "description": "A generic function and convention to trigger deprecation notices",
  7097. "homepage": "https://symfony.com",
  7098. "support": {
  7099. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7100. },
  7101. "funding": [
  7102. {
  7103. "url": "https://symfony.com/sponsor",
  7104. "type": "custom"
  7105. },
  7106. {
  7107. "url": "https://github.com/fabpot",
  7108. "type": "github"
  7109. },
  7110. {
  7111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7112. "type": "tidelift"
  7113. }
  7114. ],
  7115. "time": "2024-04-18T09:32:20+00:00"
  7116. },
  7117. {
  7118. "name": "symfony/finder",
  7119. "version": "v6.4.13",
  7120. "source": {
  7121. "type": "git",
  7122. "url": "https://github.com/symfony/finder.git",
  7123. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  7124. },
  7125. "dist": {
  7126. "type": "zip",
  7127. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7128. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  7129. "shasum": ""
  7130. },
  7131. "require": {
  7132. "php": ">=8.1"
  7133. },
  7134. "require-dev": {
  7135. "symfony/filesystem": "^6.0|^7.0"
  7136. },
  7137. "type": "library",
  7138. "autoload": {
  7139. "psr-4": {
  7140. "Symfony\\Component\\Finder\\": ""
  7141. },
  7142. "exclude-from-classmap": [
  7143. "/Tests/"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Fabien Potencier",
  7153. "email": "fabien@symfony.com"
  7154. },
  7155. {
  7156. "name": "Symfony Community",
  7157. "homepage": "https://symfony.com/contributors"
  7158. }
  7159. ],
  7160. "description": "Finds files and directories via an intuitive fluent interface",
  7161. "homepage": "https://symfony.com",
  7162. "support": {
  7163. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7164. },
  7165. "funding": [
  7166. {
  7167. "url": "https://symfony.com/sponsor",
  7168. "type": "custom"
  7169. },
  7170. {
  7171. "url": "https://github.com/fabpot",
  7172. "type": "github"
  7173. },
  7174. {
  7175. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7176. "type": "tidelift"
  7177. }
  7178. ],
  7179. "time": "2024-10-01T08:30:56+00:00"
  7180. },
  7181. {
  7182. "name": "symfony/polyfill-ctype",
  7183. "version": "v1.31.0",
  7184. "source": {
  7185. "type": "git",
  7186. "url": "https://github.com/symfony/polyfill-ctype.git",
  7187. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7188. },
  7189. "dist": {
  7190. "type": "zip",
  7191. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7192. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7193. "shasum": ""
  7194. },
  7195. "require": {
  7196. "php": ">=7.2"
  7197. },
  7198. "provide": {
  7199. "ext-ctype": "*"
  7200. },
  7201. "suggest": {
  7202. "ext-ctype": "For best performance"
  7203. },
  7204. "type": "library",
  7205. "extra": {
  7206. "thanks": {
  7207. "name": "symfony/polyfill",
  7208. "url": "https://github.com/symfony/polyfill"
  7209. }
  7210. },
  7211. "autoload": {
  7212. "files": [
  7213. "bootstrap.php"
  7214. ],
  7215. "psr-4": {
  7216. "Symfony\\Polyfill\\Ctype\\": ""
  7217. }
  7218. },
  7219. "notification-url": "https://packagist.org/downloads/",
  7220. "license": [
  7221. "MIT"
  7222. ],
  7223. "authors": [
  7224. {
  7225. "name": "Gert de Pagter",
  7226. "email": "BackEndTea@gmail.com"
  7227. },
  7228. {
  7229. "name": "Symfony Community",
  7230. "homepage": "https://symfony.com/contributors"
  7231. }
  7232. ],
  7233. "description": "Symfony polyfill for ctype functions",
  7234. "homepage": "https://symfony.com",
  7235. "keywords": [
  7236. "compatibility",
  7237. "ctype",
  7238. "polyfill",
  7239. "portable"
  7240. ],
  7241. "support": {
  7242. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7243. },
  7244. "funding": [
  7245. {
  7246. "url": "https://symfony.com/sponsor",
  7247. "type": "custom"
  7248. },
  7249. {
  7250. "url": "https://github.com/fabpot",
  7251. "type": "github"
  7252. },
  7253. {
  7254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7255. "type": "tidelift"
  7256. }
  7257. ],
  7258. "time": "2024-09-09T11:45:10+00:00"
  7259. },
  7260. {
  7261. "name": "symfony/polyfill-intl-grapheme",
  7262. "version": "v1.31.0",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7266. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7271. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=7.2"
  7276. },
  7277. "suggest": {
  7278. "ext-intl": "For best performance"
  7279. },
  7280. "type": "library",
  7281. "extra": {
  7282. "thanks": {
  7283. "name": "symfony/polyfill",
  7284. "url": "https://github.com/symfony/polyfill"
  7285. }
  7286. },
  7287. "autoload": {
  7288. "files": [
  7289. "bootstrap.php"
  7290. ],
  7291. "psr-4": {
  7292. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7293. }
  7294. },
  7295. "notification-url": "https://packagist.org/downloads/",
  7296. "license": [
  7297. "MIT"
  7298. ],
  7299. "authors": [
  7300. {
  7301. "name": "Nicolas Grekas",
  7302. "email": "p@tchwork.com"
  7303. },
  7304. {
  7305. "name": "Symfony Community",
  7306. "homepage": "https://symfony.com/contributors"
  7307. }
  7308. ],
  7309. "description": "Symfony polyfill for intl's grapheme_* functions",
  7310. "homepage": "https://symfony.com",
  7311. "keywords": [
  7312. "compatibility",
  7313. "grapheme",
  7314. "intl",
  7315. "polyfill",
  7316. "portable",
  7317. "shim"
  7318. ],
  7319. "support": {
  7320. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7321. },
  7322. "funding": [
  7323. {
  7324. "url": "https://symfony.com/sponsor",
  7325. "type": "custom"
  7326. },
  7327. {
  7328. "url": "https://github.com/fabpot",
  7329. "type": "github"
  7330. },
  7331. {
  7332. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7333. "type": "tidelift"
  7334. }
  7335. ],
  7336. "time": "2024-09-09T11:45:10+00:00"
  7337. },
  7338. {
  7339. "name": "symfony/polyfill-intl-idn",
  7340. "version": "v1.31.0",
  7341. "source": {
  7342. "type": "git",
  7343. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7344. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7345. },
  7346. "dist": {
  7347. "type": "zip",
  7348. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7349. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7350. "shasum": ""
  7351. },
  7352. "require": {
  7353. "php": ">=7.2",
  7354. "symfony/polyfill-intl-normalizer": "^1.10"
  7355. },
  7356. "suggest": {
  7357. "ext-intl": "For best performance"
  7358. },
  7359. "type": "library",
  7360. "extra": {
  7361. "thanks": {
  7362. "name": "symfony/polyfill",
  7363. "url": "https://github.com/symfony/polyfill"
  7364. }
  7365. },
  7366. "autoload": {
  7367. "files": [
  7368. "bootstrap.php"
  7369. ],
  7370. "psr-4": {
  7371. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7372. }
  7373. },
  7374. "notification-url": "https://packagist.org/downloads/",
  7375. "license": [
  7376. "MIT"
  7377. ],
  7378. "authors": [
  7379. {
  7380. "name": "Laurent Bassin",
  7381. "email": "laurent@bassin.info"
  7382. },
  7383. {
  7384. "name": "Trevor Rowbotham",
  7385. "email": "trevor.rowbotham@pm.me"
  7386. },
  7387. {
  7388. "name": "Symfony Community",
  7389. "homepage": "https://symfony.com/contributors"
  7390. }
  7391. ],
  7392. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7393. "homepage": "https://symfony.com",
  7394. "keywords": [
  7395. "compatibility",
  7396. "idn",
  7397. "intl",
  7398. "polyfill",
  7399. "portable",
  7400. "shim"
  7401. ],
  7402. "support": {
  7403. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7404. },
  7405. "funding": [
  7406. {
  7407. "url": "https://symfony.com/sponsor",
  7408. "type": "custom"
  7409. },
  7410. {
  7411. "url": "https://github.com/fabpot",
  7412. "type": "github"
  7413. },
  7414. {
  7415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7416. "type": "tidelift"
  7417. }
  7418. ],
  7419. "time": "2024-09-09T11:45:10+00:00"
  7420. },
  7421. {
  7422. "name": "symfony/polyfill-intl-normalizer",
  7423. "version": "v1.31.0",
  7424. "source": {
  7425. "type": "git",
  7426. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7427. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7428. },
  7429. "dist": {
  7430. "type": "zip",
  7431. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7432. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7433. "shasum": ""
  7434. },
  7435. "require": {
  7436. "php": ">=7.2"
  7437. },
  7438. "suggest": {
  7439. "ext-intl": "For best performance"
  7440. },
  7441. "type": "library",
  7442. "extra": {
  7443. "thanks": {
  7444. "name": "symfony/polyfill",
  7445. "url": "https://github.com/symfony/polyfill"
  7446. }
  7447. },
  7448. "autoload": {
  7449. "files": [
  7450. "bootstrap.php"
  7451. ],
  7452. "psr-4": {
  7453. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7454. },
  7455. "classmap": [
  7456. "Resources/stubs"
  7457. ]
  7458. },
  7459. "notification-url": "https://packagist.org/downloads/",
  7460. "license": [
  7461. "MIT"
  7462. ],
  7463. "authors": [
  7464. {
  7465. "name": "Nicolas Grekas",
  7466. "email": "p@tchwork.com"
  7467. },
  7468. {
  7469. "name": "Symfony Community",
  7470. "homepage": "https://symfony.com/contributors"
  7471. }
  7472. ],
  7473. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7474. "homepage": "https://symfony.com",
  7475. "keywords": [
  7476. "compatibility",
  7477. "intl",
  7478. "normalizer",
  7479. "polyfill",
  7480. "portable",
  7481. "shim"
  7482. ],
  7483. "support": {
  7484. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7485. },
  7486. "funding": [
  7487. {
  7488. "url": "https://symfony.com/sponsor",
  7489. "type": "custom"
  7490. },
  7491. {
  7492. "url": "https://github.com/fabpot",
  7493. "type": "github"
  7494. },
  7495. {
  7496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7497. "type": "tidelift"
  7498. }
  7499. ],
  7500. "time": "2024-09-09T11:45:10+00:00"
  7501. },
  7502. {
  7503. "name": "symfony/polyfill-mbstring",
  7504. "version": "v1.31.0",
  7505. "source": {
  7506. "type": "git",
  7507. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7508. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7509. },
  7510. "dist": {
  7511. "type": "zip",
  7512. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7513. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7514. "shasum": ""
  7515. },
  7516. "require": {
  7517. "php": ">=7.2"
  7518. },
  7519. "provide": {
  7520. "ext-mbstring": "*"
  7521. },
  7522. "suggest": {
  7523. "ext-mbstring": "For best performance"
  7524. },
  7525. "type": "library",
  7526. "extra": {
  7527. "thanks": {
  7528. "name": "symfony/polyfill",
  7529. "url": "https://github.com/symfony/polyfill"
  7530. }
  7531. },
  7532. "autoload": {
  7533. "files": [
  7534. "bootstrap.php"
  7535. ],
  7536. "psr-4": {
  7537. "Symfony\\Polyfill\\Mbstring\\": ""
  7538. }
  7539. },
  7540. "notification-url": "https://packagist.org/downloads/",
  7541. "license": [
  7542. "MIT"
  7543. ],
  7544. "authors": [
  7545. {
  7546. "name": "Nicolas Grekas",
  7547. "email": "p@tchwork.com"
  7548. },
  7549. {
  7550. "name": "Symfony Community",
  7551. "homepage": "https://symfony.com/contributors"
  7552. }
  7553. ],
  7554. "description": "Symfony polyfill for the Mbstring extension",
  7555. "homepage": "https://symfony.com",
  7556. "keywords": [
  7557. "compatibility",
  7558. "mbstring",
  7559. "polyfill",
  7560. "portable",
  7561. "shim"
  7562. ],
  7563. "support": {
  7564. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://symfony.com/sponsor",
  7569. "type": "custom"
  7570. },
  7571. {
  7572. "url": "https://github.com/fabpot",
  7573. "type": "github"
  7574. },
  7575. {
  7576. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7577. "type": "tidelift"
  7578. }
  7579. ],
  7580. "time": "2024-09-09T11:45:10+00:00"
  7581. },
  7582. {
  7583. "name": "symfony/polyfill-php80",
  7584. "version": "v1.31.0",
  7585. "source": {
  7586. "type": "git",
  7587. "url": "https://github.com/symfony/polyfill-php80.git",
  7588. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7589. },
  7590. "dist": {
  7591. "type": "zip",
  7592. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7593. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7594. "shasum": ""
  7595. },
  7596. "require": {
  7597. "php": ">=7.2"
  7598. },
  7599. "type": "library",
  7600. "extra": {
  7601. "thanks": {
  7602. "name": "symfony/polyfill",
  7603. "url": "https://github.com/symfony/polyfill"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "files": [
  7608. "bootstrap.php"
  7609. ],
  7610. "psr-4": {
  7611. "Symfony\\Polyfill\\Php80\\": ""
  7612. },
  7613. "classmap": [
  7614. "Resources/stubs"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Ion Bazan",
  7624. "email": "ion.bazan@gmail.com"
  7625. },
  7626. {
  7627. "name": "Nicolas Grekas",
  7628. "email": "p@tchwork.com"
  7629. },
  7630. {
  7631. "name": "Symfony Community",
  7632. "homepage": "https://symfony.com/contributors"
  7633. }
  7634. ],
  7635. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7636. "homepage": "https://symfony.com",
  7637. "keywords": [
  7638. "compatibility",
  7639. "polyfill",
  7640. "portable",
  7641. "shim"
  7642. ],
  7643. "support": {
  7644. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7645. },
  7646. "funding": [
  7647. {
  7648. "url": "https://symfony.com/sponsor",
  7649. "type": "custom"
  7650. },
  7651. {
  7652. "url": "https://github.com/fabpot",
  7653. "type": "github"
  7654. },
  7655. {
  7656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7657. "type": "tidelift"
  7658. }
  7659. ],
  7660. "time": "2024-09-09T11:45:10+00:00"
  7661. },
  7662. {
  7663. "name": "symfony/service-contracts",
  7664. "version": "v3.5.0",
  7665. "source": {
  7666. "type": "git",
  7667. "url": "https://github.com/symfony/service-contracts.git",
  7668. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7669. },
  7670. "dist": {
  7671. "type": "zip",
  7672. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7673. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7674. "shasum": ""
  7675. },
  7676. "require": {
  7677. "php": ">=8.1",
  7678. "psr/container": "^1.1|^2.0",
  7679. "symfony/deprecation-contracts": "^2.5|^3"
  7680. },
  7681. "conflict": {
  7682. "ext-psr": "<1.1|>=2"
  7683. },
  7684. "type": "library",
  7685. "extra": {
  7686. "branch-alias": {
  7687. "dev-main": "3.5-dev"
  7688. },
  7689. "thanks": {
  7690. "name": "symfony/contracts",
  7691. "url": "https://github.com/symfony/contracts"
  7692. }
  7693. },
  7694. "autoload": {
  7695. "psr-4": {
  7696. "Symfony\\Contracts\\Service\\": ""
  7697. },
  7698. "exclude-from-classmap": [
  7699. "/Test/"
  7700. ]
  7701. },
  7702. "notification-url": "https://packagist.org/downloads/",
  7703. "license": [
  7704. "MIT"
  7705. ],
  7706. "authors": [
  7707. {
  7708. "name": "Nicolas Grekas",
  7709. "email": "p@tchwork.com"
  7710. },
  7711. {
  7712. "name": "Symfony Community",
  7713. "homepage": "https://symfony.com/contributors"
  7714. }
  7715. ],
  7716. "description": "Generic abstractions related to writing services",
  7717. "homepage": "https://symfony.com",
  7718. "keywords": [
  7719. "abstractions",
  7720. "contracts",
  7721. "decoupling",
  7722. "interfaces",
  7723. "interoperability",
  7724. "standards"
  7725. ],
  7726. "support": {
  7727. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7728. },
  7729. "funding": [
  7730. {
  7731. "url": "https://symfony.com/sponsor",
  7732. "type": "custom"
  7733. },
  7734. {
  7735. "url": "https://github.com/fabpot",
  7736. "type": "github"
  7737. },
  7738. {
  7739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7740. "type": "tidelift"
  7741. }
  7742. ],
  7743. "time": "2024-04-18T09:32:20+00:00"
  7744. },
  7745. {
  7746. "name": "symfony/string",
  7747. "version": "v6.4.15",
  7748. "source": {
  7749. "type": "git",
  7750. "url": "https://github.com/symfony/string.git",
  7751. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  7752. },
  7753. "dist": {
  7754. "type": "zip",
  7755. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7756. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  7757. "shasum": ""
  7758. },
  7759. "require": {
  7760. "php": ">=8.1",
  7761. "symfony/polyfill-ctype": "~1.8",
  7762. "symfony/polyfill-intl-grapheme": "~1.0",
  7763. "symfony/polyfill-intl-normalizer": "~1.0",
  7764. "symfony/polyfill-mbstring": "~1.0"
  7765. },
  7766. "conflict": {
  7767. "symfony/translation-contracts": "<2.5"
  7768. },
  7769. "require-dev": {
  7770. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7771. "symfony/http-client": "^5.4|^6.0|^7.0",
  7772. "symfony/intl": "^6.2|^7.0",
  7773. "symfony/translation-contracts": "^2.5|^3.0",
  7774. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7775. },
  7776. "type": "library",
  7777. "autoload": {
  7778. "files": [
  7779. "Resources/functions.php"
  7780. ],
  7781. "psr-4": {
  7782. "Symfony\\Component\\String\\": ""
  7783. },
  7784. "exclude-from-classmap": [
  7785. "/Tests/"
  7786. ]
  7787. },
  7788. "notification-url": "https://packagist.org/downloads/",
  7789. "license": [
  7790. "MIT"
  7791. ],
  7792. "authors": [
  7793. {
  7794. "name": "Nicolas Grekas",
  7795. "email": "p@tchwork.com"
  7796. },
  7797. {
  7798. "name": "Symfony Community",
  7799. "homepage": "https://symfony.com/contributors"
  7800. }
  7801. ],
  7802. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7803. "homepage": "https://symfony.com",
  7804. "keywords": [
  7805. "grapheme",
  7806. "i18n",
  7807. "string",
  7808. "unicode",
  7809. "utf-8",
  7810. "utf8"
  7811. ],
  7812. "support": {
  7813. "source": "https://github.com/symfony/string/tree/v6.4.15"
  7814. },
  7815. "funding": [
  7816. {
  7817. "url": "https://symfony.com/sponsor",
  7818. "type": "custom"
  7819. },
  7820. {
  7821. "url": "https://github.com/fabpot",
  7822. "type": "github"
  7823. },
  7824. {
  7825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7826. "type": "tidelift"
  7827. }
  7828. ],
  7829. "time": "2024-11-13T13:31:12+00:00"
  7830. },
  7831. {
  7832. "name": "symfony/translation",
  7833. "version": "v6.4.13",
  7834. "source": {
  7835. "type": "git",
  7836. "url": "https://github.com/symfony/translation.git",
  7837. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7838. },
  7839. "dist": {
  7840. "type": "zip",
  7841. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7842. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7843. "shasum": ""
  7844. },
  7845. "require": {
  7846. "php": ">=8.1",
  7847. "symfony/deprecation-contracts": "^2.5|^3",
  7848. "symfony/polyfill-mbstring": "~1.0",
  7849. "symfony/translation-contracts": "^2.5|^3.0"
  7850. },
  7851. "conflict": {
  7852. "symfony/config": "<5.4",
  7853. "symfony/console": "<5.4",
  7854. "symfony/dependency-injection": "<5.4",
  7855. "symfony/http-client-contracts": "<2.5",
  7856. "symfony/http-kernel": "<5.4",
  7857. "symfony/service-contracts": "<2.5",
  7858. "symfony/twig-bundle": "<5.4",
  7859. "symfony/yaml": "<5.4"
  7860. },
  7861. "provide": {
  7862. "symfony/translation-implementation": "2.3|3.0"
  7863. },
  7864. "require-dev": {
  7865. "nikic/php-parser": "^4.18|^5.0",
  7866. "psr/log": "^1|^2|^3",
  7867. "symfony/config": "^5.4|^6.0|^7.0",
  7868. "symfony/console": "^5.4|^6.0|^7.0",
  7869. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7870. "symfony/finder": "^5.4|^6.0|^7.0",
  7871. "symfony/http-client-contracts": "^2.5|^3.0",
  7872. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7873. "symfony/intl": "^5.4|^6.0|^7.0",
  7874. "symfony/polyfill-intl-icu": "^1.21",
  7875. "symfony/routing": "^5.4|^6.0|^7.0",
  7876. "symfony/service-contracts": "^2.5|^3",
  7877. "symfony/yaml": "^5.4|^6.0|^7.0"
  7878. },
  7879. "type": "library",
  7880. "autoload": {
  7881. "files": [
  7882. "Resources/functions.php"
  7883. ],
  7884. "psr-4": {
  7885. "Symfony\\Component\\Translation\\": ""
  7886. },
  7887. "exclude-from-classmap": [
  7888. "/Tests/"
  7889. ]
  7890. },
  7891. "notification-url": "https://packagist.org/downloads/",
  7892. "license": [
  7893. "MIT"
  7894. ],
  7895. "authors": [
  7896. {
  7897. "name": "Fabien Potencier",
  7898. "email": "fabien@symfony.com"
  7899. },
  7900. {
  7901. "name": "Symfony Community",
  7902. "homepage": "https://symfony.com/contributors"
  7903. }
  7904. ],
  7905. "description": "Provides tools to internationalize your application",
  7906. "homepage": "https://symfony.com",
  7907. "support": {
  7908. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7909. },
  7910. "funding": [
  7911. {
  7912. "url": "https://symfony.com/sponsor",
  7913. "type": "custom"
  7914. },
  7915. {
  7916. "url": "https://github.com/fabpot",
  7917. "type": "github"
  7918. },
  7919. {
  7920. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7921. "type": "tidelift"
  7922. }
  7923. ],
  7924. "time": "2024-09-27T18:14:25+00:00"
  7925. },
  7926. {
  7927. "name": "symfony/translation-contracts",
  7928. "version": "v3.5.0",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/symfony/translation-contracts.git",
  7932. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7937. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "php": ">=8.1"
  7942. },
  7943. "type": "library",
  7944. "extra": {
  7945. "branch-alias": {
  7946. "dev-main": "3.5-dev"
  7947. },
  7948. "thanks": {
  7949. "name": "symfony/contracts",
  7950. "url": "https://github.com/symfony/contracts"
  7951. }
  7952. },
  7953. "autoload": {
  7954. "psr-4": {
  7955. "Symfony\\Contracts\\Translation\\": ""
  7956. },
  7957. "exclude-from-classmap": [
  7958. "/Test/"
  7959. ]
  7960. },
  7961. "notification-url": "https://packagist.org/downloads/",
  7962. "license": [
  7963. "MIT"
  7964. ],
  7965. "authors": [
  7966. {
  7967. "name": "Nicolas Grekas",
  7968. "email": "p@tchwork.com"
  7969. },
  7970. {
  7971. "name": "Symfony Community",
  7972. "homepage": "https://symfony.com/contributors"
  7973. }
  7974. ],
  7975. "description": "Generic abstractions related to translation",
  7976. "homepage": "https://symfony.com",
  7977. "keywords": [
  7978. "abstractions",
  7979. "contracts",
  7980. "decoupling",
  7981. "interfaces",
  7982. "interoperability",
  7983. "standards"
  7984. ],
  7985. "support": {
  7986. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7987. },
  7988. "funding": [
  7989. {
  7990. "url": "https://symfony.com/sponsor",
  7991. "type": "custom"
  7992. },
  7993. {
  7994. "url": "https://github.com/fabpot",
  7995. "type": "github"
  7996. },
  7997. {
  7998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7999. "type": "tidelift"
  8000. }
  8001. ],
  8002. "time": "2024-04-18T09:32:20+00:00"
  8003. },
  8004. {
  8005. "name": "vlucas/phpdotenv",
  8006. "version": "v5.6.1",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/vlucas/phpdotenv.git",
  8010. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8015. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  8016. "shasum": ""
  8017. },
  8018. "require": {
  8019. "ext-pcre": "*",
  8020. "graham-campbell/result-type": "^1.1.3",
  8021. "php": "^7.2.5 || ^8.0",
  8022. "phpoption/phpoption": "^1.9.3",
  8023. "symfony/polyfill-ctype": "^1.24",
  8024. "symfony/polyfill-mbstring": "^1.24",
  8025. "symfony/polyfill-php80": "^1.24"
  8026. },
  8027. "require-dev": {
  8028. "bamarni/composer-bin-plugin": "^1.8.2",
  8029. "ext-filter": "*",
  8030. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8031. },
  8032. "suggest": {
  8033. "ext-filter": "Required to use the boolean validator."
  8034. },
  8035. "type": "library",
  8036. "extra": {
  8037. "bamarni-bin": {
  8038. "bin-links": true,
  8039. "forward-command": false
  8040. },
  8041. "branch-alias": {
  8042. "dev-master": "5.6-dev"
  8043. }
  8044. },
  8045. "autoload": {
  8046. "psr-4": {
  8047. "Dotenv\\": "src/"
  8048. }
  8049. },
  8050. "notification-url": "https://packagist.org/downloads/",
  8051. "license": [
  8052. "BSD-3-Clause"
  8053. ],
  8054. "authors": [
  8055. {
  8056. "name": "Graham Campbell",
  8057. "email": "hello@gjcampbell.co.uk",
  8058. "homepage": "https://github.com/GrahamCampbell"
  8059. },
  8060. {
  8061. "name": "Vance Lucas",
  8062. "email": "vance@vancelucas.com",
  8063. "homepage": "https://github.com/vlucas"
  8064. }
  8065. ],
  8066. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8067. "keywords": [
  8068. "dotenv",
  8069. "env",
  8070. "environment"
  8071. ],
  8072. "support": {
  8073. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8074. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  8075. },
  8076. "funding": [
  8077. {
  8078. "url": "https://github.com/GrahamCampbell",
  8079. "type": "github"
  8080. },
  8081. {
  8082. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8083. "type": "tidelift"
  8084. }
  8085. ],
  8086. "time": "2024-07-20T21:52:34+00:00"
  8087. }
  8088. ],
  8089. "packages-dev": [
  8090. {
  8091. "name": "clue/ndjson-react",
  8092. "version": "v1.3.0",
  8093. "source": {
  8094. "type": "git",
  8095. "url": "https://github.com/clue/reactphp-ndjson.git",
  8096. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8097. },
  8098. "dist": {
  8099. "type": "zip",
  8100. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8101. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8102. "shasum": ""
  8103. },
  8104. "require": {
  8105. "php": ">=5.3",
  8106. "react/stream": "^1.2"
  8107. },
  8108. "require-dev": {
  8109. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8110. "react/event-loop": "^1.2"
  8111. },
  8112. "type": "library",
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Clue\\React\\NDJson\\": "src/"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Christian Lück",
  8125. "email": "christian@clue.engineering"
  8126. }
  8127. ],
  8128. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8129. "homepage": "https://github.com/clue/reactphp-ndjson",
  8130. "keywords": [
  8131. "NDJSON",
  8132. "json",
  8133. "jsonlines",
  8134. "newline",
  8135. "reactphp",
  8136. "streaming"
  8137. ],
  8138. "support": {
  8139. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8140. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8141. },
  8142. "funding": [
  8143. {
  8144. "url": "https://clue.engineering/support",
  8145. "type": "custom"
  8146. },
  8147. {
  8148. "url": "https://github.com/clue",
  8149. "type": "github"
  8150. }
  8151. ],
  8152. "time": "2022-12-23T10:58:28+00:00"
  8153. },
  8154. {
  8155. "name": "composer/pcre",
  8156. "version": "3.3.2",
  8157. "source": {
  8158. "type": "git",
  8159. "url": "https://github.com/composer/pcre.git",
  8160. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  8161. },
  8162. "dist": {
  8163. "type": "zip",
  8164. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8165. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  8166. "shasum": ""
  8167. },
  8168. "require": {
  8169. "php": "^7.4 || ^8.0"
  8170. },
  8171. "conflict": {
  8172. "phpstan/phpstan": "<1.11.10"
  8173. },
  8174. "require-dev": {
  8175. "phpstan/phpstan": "^1.12 || ^2",
  8176. "phpstan/phpstan-strict-rules": "^1 || ^2",
  8177. "phpunit/phpunit": "^8 || ^9"
  8178. },
  8179. "type": "library",
  8180. "extra": {
  8181. "branch-alias": {
  8182. "dev-main": "3.x-dev"
  8183. },
  8184. "phpstan": {
  8185. "includes": [
  8186. "extension.neon"
  8187. ]
  8188. }
  8189. },
  8190. "autoload": {
  8191. "psr-4": {
  8192. "Composer\\Pcre\\": "src"
  8193. }
  8194. },
  8195. "notification-url": "https://packagist.org/downloads/",
  8196. "license": [
  8197. "MIT"
  8198. ],
  8199. "authors": [
  8200. {
  8201. "name": "Jordi Boggiano",
  8202. "email": "j.boggiano@seld.be",
  8203. "homepage": "http://seld.be"
  8204. }
  8205. ],
  8206. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8207. "keywords": [
  8208. "PCRE",
  8209. "preg",
  8210. "regex",
  8211. "regular expression"
  8212. ],
  8213. "support": {
  8214. "issues": "https://github.com/composer/pcre/issues",
  8215. "source": "https://github.com/composer/pcre/tree/3.3.2"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://packagist.com",
  8220. "type": "custom"
  8221. },
  8222. {
  8223. "url": "https://github.com/composer",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2024-11-12T16:29:46+00:00"
  8232. },
  8233. {
  8234. "name": "composer/semver",
  8235. "version": "3.4.3",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/composer/semver.git",
  8239. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8244. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": "^5.3.2 || ^7.0 || ^8.0"
  8249. },
  8250. "require-dev": {
  8251. "phpstan/phpstan": "^1.11",
  8252. "symfony/phpunit-bridge": "^3 || ^7"
  8253. },
  8254. "type": "library",
  8255. "extra": {
  8256. "branch-alias": {
  8257. "dev-main": "3.x-dev"
  8258. }
  8259. },
  8260. "autoload": {
  8261. "psr-4": {
  8262. "Composer\\Semver\\": "src"
  8263. }
  8264. },
  8265. "notification-url": "https://packagist.org/downloads/",
  8266. "license": [
  8267. "MIT"
  8268. ],
  8269. "authors": [
  8270. {
  8271. "name": "Nils Adermann",
  8272. "email": "naderman@naderman.de",
  8273. "homepage": "http://www.naderman.de"
  8274. },
  8275. {
  8276. "name": "Jordi Boggiano",
  8277. "email": "j.boggiano@seld.be",
  8278. "homepage": "http://seld.be"
  8279. },
  8280. {
  8281. "name": "Rob Bast",
  8282. "email": "rob.bast@gmail.com",
  8283. "homepage": "http://robbast.nl"
  8284. }
  8285. ],
  8286. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8287. "keywords": [
  8288. "semantic",
  8289. "semver",
  8290. "validation",
  8291. "versioning"
  8292. ],
  8293. "support": {
  8294. "irc": "ircs://irc.libera.chat:6697/composer",
  8295. "issues": "https://github.com/composer/semver/issues",
  8296. "source": "https://github.com/composer/semver/tree/3.4.3"
  8297. },
  8298. "funding": [
  8299. {
  8300. "url": "https://packagist.com",
  8301. "type": "custom"
  8302. },
  8303. {
  8304. "url": "https://github.com/composer",
  8305. "type": "github"
  8306. },
  8307. {
  8308. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8309. "type": "tidelift"
  8310. }
  8311. ],
  8312. "time": "2024-09-19T14:15:21+00:00"
  8313. },
  8314. {
  8315. "name": "composer/xdebug-handler",
  8316. "version": "3.0.5",
  8317. "source": {
  8318. "type": "git",
  8319. "url": "https://github.com/composer/xdebug-handler.git",
  8320. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8321. },
  8322. "dist": {
  8323. "type": "zip",
  8324. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8325. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8326. "shasum": ""
  8327. },
  8328. "require": {
  8329. "composer/pcre": "^1 || ^2 || ^3",
  8330. "php": "^7.2.5 || ^8.0",
  8331. "psr/log": "^1 || ^2 || ^3"
  8332. },
  8333. "require-dev": {
  8334. "phpstan/phpstan": "^1.0",
  8335. "phpstan/phpstan-strict-rules": "^1.1",
  8336. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8337. },
  8338. "type": "library",
  8339. "autoload": {
  8340. "psr-4": {
  8341. "Composer\\XdebugHandler\\": "src"
  8342. }
  8343. },
  8344. "notification-url": "https://packagist.org/downloads/",
  8345. "license": [
  8346. "MIT"
  8347. ],
  8348. "authors": [
  8349. {
  8350. "name": "John Stevenson",
  8351. "email": "john-stevenson@blueyonder.co.uk"
  8352. }
  8353. ],
  8354. "description": "Restarts a process without Xdebug.",
  8355. "keywords": [
  8356. "Xdebug",
  8357. "performance"
  8358. ],
  8359. "support": {
  8360. "irc": "ircs://irc.libera.chat:6697/composer",
  8361. "issues": "https://github.com/composer/xdebug-handler/issues",
  8362. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8363. },
  8364. "funding": [
  8365. {
  8366. "url": "https://packagist.com",
  8367. "type": "custom"
  8368. },
  8369. {
  8370. "url": "https://github.com/composer",
  8371. "type": "github"
  8372. },
  8373. {
  8374. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8375. "type": "tidelift"
  8376. }
  8377. ],
  8378. "time": "2024-05-06T16:37:16+00:00"
  8379. },
  8380. {
  8381. "name": "evenement/evenement",
  8382. "version": "v3.0.2",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/igorw/evenement.git",
  8386. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8391. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "php": ">=7.0"
  8396. },
  8397. "require-dev": {
  8398. "phpunit/phpunit": "^9 || ^6"
  8399. },
  8400. "type": "library",
  8401. "autoload": {
  8402. "psr-4": {
  8403. "Evenement\\": "src/"
  8404. }
  8405. },
  8406. "notification-url": "https://packagist.org/downloads/",
  8407. "license": [
  8408. "MIT"
  8409. ],
  8410. "authors": [
  8411. {
  8412. "name": "Igor Wiedler",
  8413. "email": "igor@wiedler.ch"
  8414. }
  8415. ],
  8416. "description": "Événement is a very simple event dispatching library for PHP",
  8417. "keywords": [
  8418. "event-dispatcher",
  8419. "event-emitter"
  8420. ],
  8421. "support": {
  8422. "issues": "https://github.com/igorw/evenement/issues",
  8423. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8424. },
  8425. "time": "2023-08-08T05:53:35+00:00"
  8426. },
  8427. {
  8428. "name": "fidry/cpu-core-counter",
  8429. "version": "1.2.0",
  8430. "source": {
  8431. "type": "git",
  8432. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8433. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8434. },
  8435. "dist": {
  8436. "type": "zip",
  8437. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8438. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8439. "shasum": ""
  8440. },
  8441. "require": {
  8442. "php": "^7.2 || ^8.0"
  8443. },
  8444. "require-dev": {
  8445. "fidry/makefile": "^0.2.0",
  8446. "fidry/php-cs-fixer-config": "^1.1.2",
  8447. "phpstan/extension-installer": "^1.2.0",
  8448. "phpstan/phpstan": "^1.9.2",
  8449. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8450. "phpstan/phpstan-phpunit": "^1.2.2",
  8451. "phpstan/phpstan-strict-rules": "^1.4.4",
  8452. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8453. "webmozarts/strict-phpunit": "^7.5"
  8454. },
  8455. "type": "library",
  8456. "autoload": {
  8457. "psr-4": {
  8458. "Fidry\\CpuCoreCounter\\": "src/"
  8459. }
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Théo FIDRY",
  8468. "email": "theo.fidry@gmail.com"
  8469. }
  8470. ],
  8471. "description": "Tiny utility to get the number of CPU cores.",
  8472. "keywords": [
  8473. "CPU",
  8474. "core"
  8475. ],
  8476. "support": {
  8477. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8478. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8479. },
  8480. "funding": [
  8481. {
  8482. "url": "https://github.com/theofidry",
  8483. "type": "github"
  8484. }
  8485. ],
  8486. "time": "2024-08-06T10:04:20+00:00"
  8487. },
  8488. {
  8489. "name": "friendsofphp/php-cs-fixer",
  8490. "version": "v3.64.0",
  8491. "source": {
  8492. "type": "git",
  8493. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8494. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8495. },
  8496. "dist": {
  8497. "type": "zip",
  8498. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8499. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8500. "shasum": ""
  8501. },
  8502. "require": {
  8503. "clue/ndjson-react": "^1.0",
  8504. "composer/semver": "^3.4",
  8505. "composer/xdebug-handler": "^3.0.3",
  8506. "ext-filter": "*",
  8507. "ext-json": "*",
  8508. "ext-tokenizer": "*",
  8509. "fidry/cpu-core-counter": "^1.0",
  8510. "php": "^7.4 || ^8.0",
  8511. "react/child-process": "^0.6.5",
  8512. "react/event-loop": "^1.0",
  8513. "react/promise": "^2.0 || ^3.0",
  8514. "react/socket": "^1.0",
  8515. "react/stream": "^1.0",
  8516. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8517. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8518. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8519. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8520. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8521. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8522. "symfony/polyfill-mbstring": "^1.28",
  8523. "symfony/polyfill-php80": "^1.28",
  8524. "symfony/polyfill-php81": "^1.28",
  8525. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8526. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8527. },
  8528. "require-dev": {
  8529. "facile-it/paraunit": "^1.3 || ^2.3",
  8530. "infection/infection": "^0.29.5",
  8531. "justinrainbow/json-schema": "^5.2",
  8532. "keradus/cli-executor": "^2.1",
  8533. "mikey179/vfsstream": "^1.6.11",
  8534. "php-coveralls/php-coveralls": "^2.7",
  8535. "php-cs-fixer/accessible-object": "^1.1",
  8536. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8537. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8538. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8539. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8540. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8541. },
  8542. "suggest": {
  8543. "ext-dom": "For handling output formats in XML",
  8544. "ext-mbstring": "For handling non-UTF8 characters."
  8545. },
  8546. "bin": [
  8547. "php-cs-fixer"
  8548. ],
  8549. "type": "application",
  8550. "autoload": {
  8551. "psr-4": {
  8552. "PhpCsFixer\\": "src/"
  8553. },
  8554. "exclude-from-classmap": [
  8555. "src/Fixer/Internal/*"
  8556. ]
  8557. },
  8558. "notification-url": "https://packagist.org/downloads/",
  8559. "license": [
  8560. "MIT"
  8561. ],
  8562. "authors": [
  8563. {
  8564. "name": "Fabien Potencier",
  8565. "email": "fabien@symfony.com"
  8566. },
  8567. {
  8568. "name": "Dariusz Rumiński",
  8569. "email": "dariusz.ruminski@gmail.com"
  8570. }
  8571. ],
  8572. "description": "A tool to automatically fix PHP code style",
  8573. "keywords": [
  8574. "Static code analysis",
  8575. "fixer",
  8576. "standards",
  8577. "static analysis"
  8578. ],
  8579. "support": {
  8580. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8581. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8582. },
  8583. "funding": [
  8584. {
  8585. "url": "https://github.com/keradus",
  8586. "type": "github"
  8587. }
  8588. ],
  8589. "time": "2024-08-30T23:09:38+00:00"
  8590. },
  8591. {
  8592. "name": "hamcrest/hamcrest-php",
  8593. "version": "v2.0.1",
  8594. "source": {
  8595. "type": "git",
  8596. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8597. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8598. },
  8599. "dist": {
  8600. "type": "zip",
  8601. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8602. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8603. "shasum": ""
  8604. },
  8605. "require": {
  8606. "php": "^5.3|^7.0|^8.0"
  8607. },
  8608. "replace": {
  8609. "cordoval/hamcrest-php": "*",
  8610. "davedevelopment/hamcrest-php": "*",
  8611. "kodova/hamcrest-php": "*"
  8612. },
  8613. "require-dev": {
  8614. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8615. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8616. },
  8617. "type": "library",
  8618. "extra": {
  8619. "branch-alias": {
  8620. "dev-master": "2.1-dev"
  8621. }
  8622. },
  8623. "autoload": {
  8624. "classmap": [
  8625. "hamcrest"
  8626. ]
  8627. },
  8628. "notification-url": "https://packagist.org/downloads/",
  8629. "license": [
  8630. "BSD-3-Clause"
  8631. ],
  8632. "description": "This is the PHP port of Hamcrest Matchers",
  8633. "keywords": [
  8634. "test"
  8635. ],
  8636. "support": {
  8637. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8638. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8639. },
  8640. "time": "2020-07-09T08:09:16+00:00"
  8641. },
  8642. {
  8643. "name": "hyperf/devtool",
  8644. "version": "v3.1.42",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/hyperf/devtool.git",
  8648. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8653. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "hyperf/code-parser": "~3.1.0",
  8658. "hyperf/command": "~3.1.0",
  8659. "hyperf/contract": "~3.1.0",
  8660. "hyperf/di": "~3.1.0",
  8661. "hyperf/support": "~3.1.0",
  8662. "hyperf/utils": "~3.1.0",
  8663. "php": ">=8.1"
  8664. },
  8665. "type": "library",
  8666. "extra": {
  8667. "branch-alias": {
  8668. "dev-master": "3.1-dev"
  8669. },
  8670. "hyperf": {
  8671. "config": "Hyperf\\Devtool\\ConfigProvider"
  8672. }
  8673. },
  8674. "autoload": {
  8675. "psr-4": {
  8676. "Hyperf\\Devtool\\": "src/"
  8677. }
  8678. },
  8679. "notification-url": "https://packagist.org/downloads/",
  8680. "license": [
  8681. "MIT"
  8682. ],
  8683. "description": "A Devtool for Hyperf.",
  8684. "homepage": "https://hyperf.io",
  8685. "keywords": [
  8686. "dev",
  8687. "devtool",
  8688. "hyperf",
  8689. "php",
  8690. "swoole"
  8691. ],
  8692. "support": {
  8693. "docs": "https://hyperf.wiki",
  8694. "issues": "https://github.com/hyperf/hyperf/issues",
  8695. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8696. "source": "https://github.com/hyperf/hyperf"
  8697. },
  8698. "funding": [
  8699. {
  8700. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8701. "type": "custom"
  8702. },
  8703. {
  8704. "url": "https://opencollective.com/hyperf",
  8705. "type": "open_collective"
  8706. }
  8707. ],
  8708. "time": "2024-09-25T02:54:12+00:00"
  8709. },
  8710. {
  8711. "name": "hyperf/testing",
  8712. "version": "v3.1.44",
  8713. "source": {
  8714. "type": "git",
  8715. "url": "https://github.com/hyperf/testing.git",
  8716. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8717. },
  8718. "dist": {
  8719. "type": "zip",
  8720. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8721. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8722. "shasum": ""
  8723. },
  8724. "require": {
  8725. "hyperf/codec": "~3.1.0",
  8726. "hyperf/collection": "~3.1.0",
  8727. "hyperf/contract": "~3.1.0",
  8728. "hyperf/coroutine": "~3.1.0",
  8729. "hyperf/http-message": "~3.1.0",
  8730. "hyperf/http-server": "~3.1.0",
  8731. "hyperf/support": "~3.1.0",
  8732. "hyperf/utils": "~3.1.0",
  8733. "php": ">=8.1",
  8734. "phpunit/phpunit": "^10.0",
  8735. "psr/container": "^1.0 || ^2.0",
  8736. "symfony/http-foundation": "^5.4 || ^6.0"
  8737. },
  8738. "suggest": {
  8739. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8740. },
  8741. "bin": [
  8742. "co-phpunit"
  8743. ],
  8744. "type": "library",
  8745. "extra": {
  8746. "branch-alias": {
  8747. "dev-master": "3.1-dev"
  8748. }
  8749. },
  8750. "autoload": {
  8751. "psr-4": {
  8752. "Hyperf\\Testing\\": "src/"
  8753. }
  8754. },
  8755. "notification-url": "https://packagist.org/downloads/",
  8756. "license": [
  8757. "MIT"
  8758. ],
  8759. "description": "Testing for hyperf",
  8760. "keywords": [
  8761. "dev",
  8762. "php",
  8763. "swoole",
  8764. "testing"
  8765. ],
  8766. "support": {
  8767. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8768. },
  8769. "funding": [
  8770. {
  8771. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8772. "type": "custom"
  8773. },
  8774. {
  8775. "url": "https://opencollective.com/hyperf",
  8776. "type": "open_collective"
  8777. }
  8778. ],
  8779. "time": "2024-10-23T10:24:12+00:00"
  8780. },
  8781. {
  8782. "name": "hyperf/watcher",
  8783. "version": "v3.1.43",
  8784. "source": {
  8785. "type": "git",
  8786. "url": "https://github.com/hyperf/watcher.git",
  8787. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8788. },
  8789. "dist": {
  8790. "type": "zip",
  8791. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8792. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8793. "shasum": ""
  8794. },
  8795. "require": {
  8796. "ext-posix": "*",
  8797. "hyperf/codec": "~3.1.0",
  8798. "hyperf/command": "~3.1.0",
  8799. "hyperf/di": "~3.1.0",
  8800. "hyperf/framework": "~3.1.0",
  8801. "hyperf/support": "~3.1.0",
  8802. "php": ">=8.1"
  8803. },
  8804. "type": "library",
  8805. "extra": {
  8806. "branch-alias": {
  8807. "dev-master": "3.1-dev"
  8808. },
  8809. "hyperf": {
  8810. "config": "Hyperf\\Watcher\\ConfigProvider"
  8811. }
  8812. },
  8813. "autoload": {
  8814. "files": [
  8815. "src/Functions.php"
  8816. ],
  8817. "psr-4": {
  8818. "Hyperf\\Watcher\\": "src/"
  8819. }
  8820. },
  8821. "notification-url": "https://packagist.org/downloads/",
  8822. "license": [
  8823. "MIT"
  8824. ],
  8825. "description": "Hot reload watcher for Hyperf",
  8826. "keywords": [
  8827. "dev",
  8828. "hyperf",
  8829. "php"
  8830. ],
  8831. "support": {
  8832. "issues": "https://github.com/hyperf/watcher/issues",
  8833. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8834. },
  8835. "funding": [
  8836. {
  8837. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8838. "type": "custom"
  8839. },
  8840. {
  8841. "url": "https://opencollective.com/hyperf",
  8842. "type": "open_collective"
  8843. }
  8844. ],
  8845. "time": "2024-10-06T12:33:12+00:00"
  8846. },
  8847. {
  8848. "name": "mockery/mockery",
  8849. "version": "1.6.12",
  8850. "source": {
  8851. "type": "git",
  8852. "url": "https://github.com/mockery/mockery.git",
  8853. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8854. },
  8855. "dist": {
  8856. "type": "zip",
  8857. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8858. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8859. "shasum": ""
  8860. },
  8861. "require": {
  8862. "hamcrest/hamcrest-php": "^2.0.1",
  8863. "lib-pcre": ">=7.0",
  8864. "php": ">=7.3"
  8865. },
  8866. "conflict": {
  8867. "phpunit/phpunit": "<8.0"
  8868. },
  8869. "require-dev": {
  8870. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8871. "symplify/easy-coding-standard": "^12.1.14"
  8872. },
  8873. "type": "library",
  8874. "autoload": {
  8875. "files": [
  8876. "library/helpers.php",
  8877. "library/Mockery.php"
  8878. ],
  8879. "psr-4": {
  8880. "Mockery\\": "library/Mockery"
  8881. }
  8882. },
  8883. "notification-url": "https://packagist.org/downloads/",
  8884. "license": [
  8885. "BSD-3-Clause"
  8886. ],
  8887. "authors": [
  8888. {
  8889. "name": "Pádraic Brady",
  8890. "email": "padraic.brady@gmail.com",
  8891. "homepage": "https://github.com/padraic",
  8892. "role": "Author"
  8893. },
  8894. {
  8895. "name": "Dave Marshall",
  8896. "email": "dave.marshall@atstsolutions.co.uk",
  8897. "homepage": "https://davedevelopment.co.uk",
  8898. "role": "Developer"
  8899. },
  8900. {
  8901. "name": "Nathanael Esayeas",
  8902. "email": "nathanael.esayeas@protonmail.com",
  8903. "homepage": "https://github.com/ghostwriter",
  8904. "role": "Lead Developer"
  8905. }
  8906. ],
  8907. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8908. "homepage": "https://github.com/mockery/mockery",
  8909. "keywords": [
  8910. "BDD",
  8911. "TDD",
  8912. "library",
  8913. "mock",
  8914. "mock objects",
  8915. "mockery",
  8916. "stub",
  8917. "test",
  8918. "test double",
  8919. "testing"
  8920. ],
  8921. "support": {
  8922. "docs": "https://docs.mockery.io/",
  8923. "issues": "https://github.com/mockery/mockery/issues",
  8924. "rss": "https://github.com/mockery/mockery/releases.atom",
  8925. "security": "https://github.com/mockery/mockery/security/advisories",
  8926. "source": "https://github.com/mockery/mockery"
  8927. },
  8928. "time": "2024-05-16T03:13:13+00:00"
  8929. },
  8930. {
  8931. "name": "myclabs/deep-copy",
  8932. "version": "1.12.1",
  8933. "source": {
  8934. "type": "git",
  8935. "url": "https://github.com/myclabs/DeepCopy.git",
  8936. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8937. },
  8938. "dist": {
  8939. "type": "zip",
  8940. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8941. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8942. "shasum": ""
  8943. },
  8944. "require": {
  8945. "php": "^7.1 || ^8.0"
  8946. },
  8947. "conflict": {
  8948. "doctrine/collections": "<1.6.8",
  8949. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8950. },
  8951. "require-dev": {
  8952. "doctrine/collections": "^1.6.8",
  8953. "doctrine/common": "^2.13.3 || ^3.2.2",
  8954. "phpspec/prophecy": "^1.10",
  8955. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8956. },
  8957. "type": "library",
  8958. "autoload": {
  8959. "files": [
  8960. "src/DeepCopy/deep_copy.php"
  8961. ],
  8962. "psr-4": {
  8963. "DeepCopy\\": "src/DeepCopy/"
  8964. }
  8965. },
  8966. "notification-url": "https://packagist.org/downloads/",
  8967. "license": [
  8968. "MIT"
  8969. ],
  8970. "description": "Create deep copies (clones) of your objects",
  8971. "keywords": [
  8972. "clone",
  8973. "copy",
  8974. "duplicate",
  8975. "object",
  8976. "object graph"
  8977. ],
  8978. "support": {
  8979. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8980. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8981. },
  8982. "funding": [
  8983. {
  8984. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8985. "type": "tidelift"
  8986. }
  8987. ],
  8988. "time": "2024-11-08T17:47:46+00:00"
  8989. },
  8990. {
  8991. "name": "phar-io/manifest",
  8992. "version": "2.0.4",
  8993. "source": {
  8994. "type": "git",
  8995. "url": "https://github.com/phar-io/manifest.git",
  8996. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8997. },
  8998. "dist": {
  8999. "type": "zip",
  9000. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9001. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9002. "shasum": ""
  9003. },
  9004. "require": {
  9005. "ext-dom": "*",
  9006. "ext-libxml": "*",
  9007. "ext-phar": "*",
  9008. "ext-xmlwriter": "*",
  9009. "phar-io/version": "^3.0.1",
  9010. "php": "^7.2 || ^8.0"
  9011. },
  9012. "type": "library",
  9013. "extra": {
  9014. "branch-alias": {
  9015. "dev-master": "2.0.x-dev"
  9016. }
  9017. },
  9018. "autoload": {
  9019. "classmap": [
  9020. "src/"
  9021. ]
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "BSD-3-Clause"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Arne Blankerts",
  9030. "email": "arne@blankerts.de",
  9031. "role": "Developer"
  9032. },
  9033. {
  9034. "name": "Sebastian Heuer",
  9035. "email": "sebastian@phpeople.de",
  9036. "role": "Developer"
  9037. },
  9038. {
  9039. "name": "Sebastian Bergmann",
  9040. "email": "sebastian@phpunit.de",
  9041. "role": "Developer"
  9042. }
  9043. ],
  9044. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9045. "support": {
  9046. "issues": "https://github.com/phar-io/manifest/issues",
  9047. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9048. },
  9049. "funding": [
  9050. {
  9051. "url": "https://github.com/theseer",
  9052. "type": "github"
  9053. }
  9054. ],
  9055. "time": "2024-03-03T12:33:53+00:00"
  9056. },
  9057. {
  9058. "name": "phar-io/version",
  9059. "version": "3.2.1",
  9060. "source": {
  9061. "type": "git",
  9062. "url": "https://github.com/phar-io/version.git",
  9063. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9064. },
  9065. "dist": {
  9066. "type": "zip",
  9067. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9068. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9069. "shasum": ""
  9070. },
  9071. "require": {
  9072. "php": "^7.2 || ^8.0"
  9073. },
  9074. "type": "library",
  9075. "autoload": {
  9076. "classmap": [
  9077. "src/"
  9078. ]
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "BSD-3-Clause"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "Arne Blankerts",
  9087. "email": "arne@blankerts.de",
  9088. "role": "Developer"
  9089. },
  9090. {
  9091. "name": "Sebastian Heuer",
  9092. "email": "sebastian@phpeople.de",
  9093. "role": "Developer"
  9094. },
  9095. {
  9096. "name": "Sebastian Bergmann",
  9097. "email": "sebastian@phpunit.de",
  9098. "role": "Developer"
  9099. }
  9100. ],
  9101. "description": "Library for handling version information and constraints",
  9102. "support": {
  9103. "issues": "https://github.com/phar-io/version/issues",
  9104. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9105. },
  9106. "time": "2022-02-21T01:04:05+00:00"
  9107. },
  9108. {
  9109. "name": "phpstan/phpstan",
  9110. "version": "1.12.11",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/phpstan/phpstan.git",
  9114. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9119. "reference": "0d1fc20a962a91be578bcfe7cf939e6e1a2ff733",
  9120. "shasum": ""
  9121. },
  9122. "require": {
  9123. "php": "^7.2|^8.0"
  9124. },
  9125. "conflict": {
  9126. "phpstan/phpstan-shim": "*"
  9127. },
  9128. "bin": [
  9129. "phpstan",
  9130. "phpstan.phar"
  9131. ],
  9132. "type": "library",
  9133. "autoload": {
  9134. "files": [
  9135. "bootstrap.php"
  9136. ]
  9137. },
  9138. "notification-url": "https://packagist.org/downloads/",
  9139. "license": [
  9140. "MIT"
  9141. ],
  9142. "description": "PHPStan - PHP Static Analysis Tool",
  9143. "keywords": [
  9144. "dev",
  9145. "static analysis"
  9146. ],
  9147. "support": {
  9148. "docs": "https://phpstan.org/user-guide/getting-started",
  9149. "forum": "https://github.com/phpstan/phpstan/discussions",
  9150. "issues": "https://github.com/phpstan/phpstan/issues",
  9151. "security": "https://github.com/phpstan/phpstan/security/policy",
  9152. "source": "https://github.com/phpstan/phpstan-src"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://github.com/ondrejmirtes",
  9157. "type": "github"
  9158. },
  9159. {
  9160. "url": "https://github.com/phpstan",
  9161. "type": "github"
  9162. }
  9163. ],
  9164. "time": "2024-11-17T14:08:01+00:00"
  9165. },
  9166. {
  9167. "name": "phpunit/php-code-coverage",
  9168. "version": "10.1.16",
  9169. "source": {
  9170. "type": "git",
  9171. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9172. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9173. },
  9174. "dist": {
  9175. "type": "zip",
  9176. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9177. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9178. "shasum": ""
  9179. },
  9180. "require": {
  9181. "ext-dom": "*",
  9182. "ext-libxml": "*",
  9183. "ext-xmlwriter": "*",
  9184. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9185. "php": ">=8.1",
  9186. "phpunit/php-file-iterator": "^4.1.0",
  9187. "phpunit/php-text-template": "^3.0.1",
  9188. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9189. "sebastian/complexity": "^3.2.0",
  9190. "sebastian/environment": "^6.1.0",
  9191. "sebastian/lines-of-code": "^2.0.2",
  9192. "sebastian/version": "^4.0.1",
  9193. "theseer/tokenizer": "^1.2.3"
  9194. },
  9195. "require-dev": {
  9196. "phpunit/phpunit": "^10.1"
  9197. },
  9198. "suggest": {
  9199. "ext-pcov": "PHP extension that provides line coverage",
  9200. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9201. },
  9202. "type": "library",
  9203. "extra": {
  9204. "branch-alias": {
  9205. "dev-main": "10.1.x-dev"
  9206. }
  9207. },
  9208. "autoload": {
  9209. "classmap": [
  9210. "src/"
  9211. ]
  9212. },
  9213. "notification-url": "https://packagist.org/downloads/",
  9214. "license": [
  9215. "BSD-3-Clause"
  9216. ],
  9217. "authors": [
  9218. {
  9219. "name": "Sebastian Bergmann",
  9220. "email": "sebastian@phpunit.de",
  9221. "role": "lead"
  9222. }
  9223. ],
  9224. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9225. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9226. "keywords": [
  9227. "coverage",
  9228. "testing",
  9229. "xunit"
  9230. ],
  9231. "support": {
  9232. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9233. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9234. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9235. },
  9236. "funding": [
  9237. {
  9238. "url": "https://github.com/sebastianbergmann",
  9239. "type": "github"
  9240. }
  9241. ],
  9242. "time": "2024-08-22T04:31:57+00:00"
  9243. },
  9244. {
  9245. "name": "phpunit/php-file-iterator",
  9246. "version": "4.1.0",
  9247. "source": {
  9248. "type": "git",
  9249. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9250. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9251. },
  9252. "dist": {
  9253. "type": "zip",
  9254. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9255. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9256. "shasum": ""
  9257. },
  9258. "require": {
  9259. "php": ">=8.1"
  9260. },
  9261. "require-dev": {
  9262. "phpunit/phpunit": "^10.0"
  9263. },
  9264. "type": "library",
  9265. "extra": {
  9266. "branch-alias": {
  9267. "dev-main": "4.0-dev"
  9268. }
  9269. },
  9270. "autoload": {
  9271. "classmap": [
  9272. "src/"
  9273. ]
  9274. },
  9275. "notification-url": "https://packagist.org/downloads/",
  9276. "license": [
  9277. "BSD-3-Clause"
  9278. ],
  9279. "authors": [
  9280. {
  9281. "name": "Sebastian Bergmann",
  9282. "email": "sebastian@phpunit.de",
  9283. "role": "lead"
  9284. }
  9285. ],
  9286. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9287. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9288. "keywords": [
  9289. "filesystem",
  9290. "iterator"
  9291. ],
  9292. "support": {
  9293. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9294. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9295. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9296. },
  9297. "funding": [
  9298. {
  9299. "url": "https://github.com/sebastianbergmann",
  9300. "type": "github"
  9301. }
  9302. ],
  9303. "time": "2023-08-31T06:24:48+00:00"
  9304. },
  9305. {
  9306. "name": "phpunit/php-invoker",
  9307. "version": "4.0.0",
  9308. "source": {
  9309. "type": "git",
  9310. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9311. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9312. },
  9313. "dist": {
  9314. "type": "zip",
  9315. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9316. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9317. "shasum": ""
  9318. },
  9319. "require": {
  9320. "php": ">=8.1"
  9321. },
  9322. "require-dev": {
  9323. "ext-pcntl": "*",
  9324. "phpunit/phpunit": "^10.0"
  9325. },
  9326. "suggest": {
  9327. "ext-pcntl": "*"
  9328. },
  9329. "type": "library",
  9330. "extra": {
  9331. "branch-alias": {
  9332. "dev-main": "4.0-dev"
  9333. }
  9334. },
  9335. "autoload": {
  9336. "classmap": [
  9337. "src/"
  9338. ]
  9339. },
  9340. "notification-url": "https://packagist.org/downloads/",
  9341. "license": [
  9342. "BSD-3-Clause"
  9343. ],
  9344. "authors": [
  9345. {
  9346. "name": "Sebastian Bergmann",
  9347. "email": "sebastian@phpunit.de",
  9348. "role": "lead"
  9349. }
  9350. ],
  9351. "description": "Invoke callables with a timeout",
  9352. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9353. "keywords": [
  9354. "process"
  9355. ],
  9356. "support": {
  9357. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9358. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9359. },
  9360. "funding": [
  9361. {
  9362. "url": "https://github.com/sebastianbergmann",
  9363. "type": "github"
  9364. }
  9365. ],
  9366. "time": "2023-02-03T06:56:09+00:00"
  9367. },
  9368. {
  9369. "name": "phpunit/php-text-template",
  9370. "version": "3.0.1",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9374. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9379. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "php": ">=8.1"
  9384. },
  9385. "require-dev": {
  9386. "phpunit/phpunit": "^10.0"
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-main": "3.0-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "classmap": [
  9396. "src/"
  9397. ]
  9398. },
  9399. "notification-url": "https://packagist.org/downloads/",
  9400. "license": [
  9401. "BSD-3-Clause"
  9402. ],
  9403. "authors": [
  9404. {
  9405. "name": "Sebastian Bergmann",
  9406. "email": "sebastian@phpunit.de",
  9407. "role": "lead"
  9408. }
  9409. ],
  9410. "description": "Simple template engine.",
  9411. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9412. "keywords": [
  9413. "template"
  9414. ],
  9415. "support": {
  9416. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9417. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9418. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9419. },
  9420. "funding": [
  9421. {
  9422. "url": "https://github.com/sebastianbergmann",
  9423. "type": "github"
  9424. }
  9425. ],
  9426. "time": "2023-08-31T14:07:24+00:00"
  9427. },
  9428. {
  9429. "name": "phpunit/php-timer",
  9430. "version": "6.0.0",
  9431. "source": {
  9432. "type": "git",
  9433. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9434. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9435. },
  9436. "dist": {
  9437. "type": "zip",
  9438. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9439. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9440. "shasum": ""
  9441. },
  9442. "require": {
  9443. "php": ">=8.1"
  9444. },
  9445. "require-dev": {
  9446. "phpunit/phpunit": "^10.0"
  9447. },
  9448. "type": "library",
  9449. "extra": {
  9450. "branch-alias": {
  9451. "dev-main": "6.0-dev"
  9452. }
  9453. },
  9454. "autoload": {
  9455. "classmap": [
  9456. "src/"
  9457. ]
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "license": [
  9461. "BSD-3-Clause"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Sebastian Bergmann",
  9466. "email": "sebastian@phpunit.de",
  9467. "role": "lead"
  9468. }
  9469. ],
  9470. "description": "Utility class for timing",
  9471. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9472. "keywords": [
  9473. "timer"
  9474. ],
  9475. "support": {
  9476. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9477. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9478. },
  9479. "funding": [
  9480. {
  9481. "url": "https://github.com/sebastianbergmann",
  9482. "type": "github"
  9483. }
  9484. ],
  9485. "time": "2023-02-03T06:57:52+00:00"
  9486. },
  9487. {
  9488. "name": "phpunit/phpunit",
  9489. "version": "10.5.38",
  9490. "source": {
  9491. "type": "git",
  9492. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9493. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9494. },
  9495. "dist": {
  9496. "type": "zip",
  9497. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9498. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9499. "shasum": ""
  9500. },
  9501. "require": {
  9502. "ext-dom": "*",
  9503. "ext-json": "*",
  9504. "ext-libxml": "*",
  9505. "ext-mbstring": "*",
  9506. "ext-xml": "*",
  9507. "ext-xmlwriter": "*",
  9508. "myclabs/deep-copy": "^1.12.0",
  9509. "phar-io/manifest": "^2.0.4",
  9510. "phar-io/version": "^3.2.1",
  9511. "php": ">=8.1",
  9512. "phpunit/php-code-coverage": "^10.1.16",
  9513. "phpunit/php-file-iterator": "^4.1.0",
  9514. "phpunit/php-invoker": "^4.0.0",
  9515. "phpunit/php-text-template": "^3.0.1",
  9516. "phpunit/php-timer": "^6.0.0",
  9517. "sebastian/cli-parser": "^2.0.1",
  9518. "sebastian/code-unit": "^2.0.0",
  9519. "sebastian/comparator": "^5.0.3",
  9520. "sebastian/diff": "^5.1.1",
  9521. "sebastian/environment": "^6.1.0",
  9522. "sebastian/exporter": "^5.1.2",
  9523. "sebastian/global-state": "^6.0.2",
  9524. "sebastian/object-enumerator": "^5.0.0",
  9525. "sebastian/recursion-context": "^5.0.0",
  9526. "sebastian/type": "^4.0.0",
  9527. "sebastian/version": "^4.0.1"
  9528. },
  9529. "suggest": {
  9530. "ext-soap": "To be able to generate mocks based on WSDL files"
  9531. },
  9532. "bin": [
  9533. "phpunit"
  9534. ],
  9535. "type": "library",
  9536. "extra": {
  9537. "branch-alias": {
  9538. "dev-main": "10.5-dev"
  9539. }
  9540. },
  9541. "autoload": {
  9542. "files": [
  9543. "src/Framework/Assert/Functions.php"
  9544. ],
  9545. "classmap": [
  9546. "src/"
  9547. ]
  9548. },
  9549. "notification-url": "https://packagist.org/downloads/",
  9550. "license": [
  9551. "BSD-3-Clause"
  9552. ],
  9553. "authors": [
  9554. {
  9555. "name": "Sebastian Bergmann",
  9556. "email": "sebastian@phpunit.de",
  9557. "role": "lead"
  9558. }
  9559. ],
  9560. "description": "The PHP Unit Testing framework.",
  9561. "homepage": "https://phpunit.de/",
  9562. "keywords": [
  9563. "phpunit",
  9564. "testing",
  9565. "xunit"
  9566. ],
  9567. "support": {
  9568. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9569. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9570. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://phpunit.de/sponsors.html",
  9575. "type": "custom"
  9576. },
  9577. {
  9578. "url": "https://github.com/sebastianbergmann",
  9579. "type": "github"
  9580. },
  9581. {
  9582. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9583. "type": "tidelift"
  9584. }
  9585. ],
  9586. "time": "2024-10-28T13:06:21+00:00"
  9587. },
  9588. {
  9589. "name": "react/cache",
  9590. "version": "v1.2.0",
  9591. "source": {
  9592. "type": "git",
  9593. "url": "https://github.com/reactphp/cache.git",
  9594. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9595. },
  9596. "dist": {
  9597. "type": "zip",
  9598. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9599. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9600. "shasum": ""
  9601. },
  9602. "require": {
  9603. "php": ">=5.3.0",
  9604. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9605. },
  9606. "require-dev": {
  9607. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9608. },
  9609. "type": "library",
  9610. "autoload": {
  9611. "psr-4": {
  9612. "React\\Cache\\": "src/"
  9613. }
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "MIT"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Christian Lück",
  9622. "email": "christian@clue.engineering",
  9623. "homepage": "https://clue.engineering/"
  9624. },
  9625. {
  9626. "name": "Cees-Jan Kiewiet",
  9627. "email": "reactphp@ceesjankiewiet.nl",
  9628. "homepage": "https://wyrihaximus.net/"
  9629. },
  9630. {
  9631. "name": "Jan Sorgalla",
  9632. "email": "jsorgalla@gmail.com",
  9633. "homepage": "https://sorgalla.com/"
  9634. },
  9635. {
  9636. "name": "Chris Boden",
  9637. "email": "cboden@gmail.com",
  9638. "homepage": "https://cboden.dev/"
  9639. }
  9640. ],
  9641. "description": "Async, Promise-based cache interface for ReactPHP",
  9642. "keywords": [
  9643. "cache",
  9644. "caching",
  9645. "promise",
  9646. "reactphp"
  9647. ],
  9648. "support": {
  9649. "issues": "https://github.com/reactphp/cache/issues",
  9650. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9651. },
  9652. "funding": [
  9653. {
  9654. "url": "https://opencollective.com/reactphp",
  9655. "type": "open_collective"
  9656. }
  9657. ],
  9658. "time": "2022-11-30T15:59:55+00:00"
  9659. },
  9660. {
  9661. "name": "react/child-process",
  9662. "version": "v0.6.5",
  9663. "source": {
  9664. "type": "git",
  9665. "url": "https://github.com/reactphp/child-process.git",
  9666. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9667. },
  9668. "dist": {
  9669. "type": "zip",
  9670. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9671. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9672. "shasum": ""
  9673. },
  9674. "require": {
  9675. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9676. "php": ">=5.3.0",
  9677. "react/event-loop": "^1.2",
  9678. "react/stream": "^1.2"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9682. "react/socket": "^1.8",
  9683. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9684. },
  9685. "type": "library",
  9686. "autoload": {
  9687. "psr-4": {
  9688. "React\\ChildProcess\\": "src"
  9689. }
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "MIT"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Christian Lück",
  9698. "email": "christian@clue.engineering",
  9699. "homepage": "https://clue.engineering/"
  9700. },
  9701. {
  9702. "name": "Cees-Jan Kiewiet",
  9703. "email": "reactphp@ceesjankiewiet.nl",
  9704. "homepage": "https://wyrihaximus.net/"
  9705. },
  9706. {
  9707. "name": "Jan Sorgalla",
  9708. "email": "jsorgalla@gmail.com",
  9709. "homepage": "https://sorgalla.com/"
  9710. },
  9711. {
  9712. "name": "Chris Boden",
  9713. "email": "cboden@gmail.com",
  9714. "homepage": "https://cboden.dev/"
  9715. }
  9716. ],
  9717. "description": "Event-driven library for executing child processes with ReactPHP.",
  9718. "keywords": [
  9719. "event-driven",
  9720. "process",
  9721. "reactphp"
  9722. ],
  9723. "support": {
  9724. "issues": "https://github.com/reactphp/child-process/issues",
  9725. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9726. },
  9727. "funding": [
  9728. {
  9729. "url": "https://github.com/WyriHaximus",
  9730. "type": "github"
  9731. },
  9732. {
  9733. "url": "https://github.com/clue",
  9734. "type": "github"
  9735. }
  9736. ],
  9737. "time": "2022-09-16T13:41:56+00:00"
  9738. },
  9739. {
  9740. "name": "react/dns",
  9741. "version": "v1.13.0",
  9742. "source": {
  9743. "type": "git",
  9744. "url": "https://github.com/reactphp/dns.git",
  9745. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9746. },
  9747. "dist": {
  9748. "type": "zip",
  9749. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9750. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9751. "shasum": ""
  9752. },
  9753. "require": {
  9754. "php": ">=5.3.0",
  9755. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9756. "react/event-loop": "^1.2",
  9757. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9758. },
  9759. "require-dev": {
  9760. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9761. "react/async": "^4.3 || ^3 || ^2",
  9762. "react/promise-timer": "^1.11"
  9763. },
  9764. "type": "library",
  9765. "autoload": {
  9766. "psr-4": {
  9767. "React\\Dns\\": "src/"
  9768. }
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "MIT"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Christian Lück",
  9777. "email": "christian@clue.engineering",
  9778. "homepage": "https://clue.engineering/"
  9779. },
  9780. {
  9781. "name": "Cees-Jan Kiewiet",
  9782. "email": "reactphp@ceesjankiewiet.nl",
  9783. "homepage": "https://wyrihaximus.net/"
  9784. },
  9785. {
  9786. "name": "Jan Sorgalla",
  9787. "email": "jsorgalla@gmail.com",
  9788. "homepage": "https://sorgalla.com/"
  9789. },
  9790. {
  9791. "name": "Chris Boden",
  9792. "email": "cboden@gmail.com",
  9793. "homepage": "https://cboden.dev/"
  9794. }
  9795. ],
  9796. "description": "Async DNS resolver for ReactPHP",
  9797. "keywords": [
  9798. "async",
  9799. "dns",
  9800. "dns-resolver",
  9801. "reactphp"
  9802. ],
  9803. "support": {
  9804. "issues": "https://github.com/reactphp/dns/issues",
  9805. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9806. },
  9807. "funding": [
  9808. {
  9809. "url": "https://opencollective.com/reactphp",
  9810. "type": "open_collective"
  9811. }
  9812. ],
  9813. "time": "2024-06-13T14:18:03+00:00"
  9814. },
  9815. {
  9816. "name": "react/event-loop",
  9817. "version": "v1.5.0",
  9818. "source": {
  9819. "type": "git",
  9820. "url": "https://github.com/reactphp/event-loop.git",
  9821. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9822. },
  9823. "dist": {
  9824. "type": "zip",
  9825. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9826. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9827. "shasum": ""
  9828. },
  9829. "require": {
  9830. "php": ">=5.3.0"
  9831. },
  9832. "require-dev": {
  9833. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9834. },
  9835. "suggest": {
  9836. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9837. },
  9838. "type": "library",
  9839. "autoload": {
  9840. "psr-4": {
  9841. "React\\EventLoop\\": "src/"
  9842. }
  9843. },
  9844. "notification-url": "https://packagist.org/downloads/",
  9845. "license": [
  9846. "MIT"
  9847. ],
  9848. "authors": [
  9849. {
  9850. "name": "Christian Lück",
  9851. "email": "christian@clue.engineering",
  9852. "homepage": "https://clue.engineering/"
  9853. },
  9854. {
  9855. "name": "Cees-Jan Kiewiet",
  9856. "email": "reactphp@ceesjankiewiet.nl",
  9857. "homepage": "https://wyrihaximus.net/"
  9858. },
  9859. {
  9860. "name": "Jan Sorgalla",
  9861. "email": "jsorgalla@gmail.com",
  9862. "homepage": "https://sorgalla.com/"
  9863. },
  9864. {
  9865. "name": "Chris Boden",
  9866. "email": "cboden@gmail.com",
  9867. "homepage": "https://cboden.dev/"
  9868. }
  9869. ],
  9870. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9871. "keywords": [
  9872. "asynchronous",
  9873. "event-loop"
  9874. ],
  9875. "support": {
  9876. "issues": "https://github.com/reactphp/event-loop/issues",
  9877. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9878. },
  9879. "funding": [
  9880. {
  9881. "url": "https://opencollective.com/reactphp",
  9882. "type": "open_collective"
  9883. }
  9884. ],
  9885. "time": "2023-11-13T13:48:05+00:00"
  9886. },
  9887. {
  9888. "name": "react/promise",
  9889. "version": "v3.2.0",
  9890. "source": {
  9891. "type": "git",
  9892. "url": "https://github.com/reactphp/promise.git",
  9893. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9894. },
  9895. "dist": {
  9896. "type": "zip",
  9897. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9898. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9899. "shasum": ""
  9900. },
  9901. "require": {
  9902. "php": ">=7.1.0"
  9903. },
  9904. "require-dev": {
  9905. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9906. "phpunit/phpunit": "^9.6 || ^7.5"
  9907. },
  9908. "type": "library",
  9909. "autoload": {
  9910. "files": [
  9911. "src/functions_include.php"
  9912. ],
  9913. "psr-4": {
  9914. "React\\Promise\\": "src/"
  9915. }
  9916. },
  9917. "notification-url": "https://packagist.org/downloads/",
  9918. "license": [
  9919. "MIT"
  9920. ],
  9921. "authors": [
  9922. {
  9923. "name": "Jan Sorgalla",
  9924. "email": "jsorgalla@gmail.com",
  9925. "homepage": "https://sorgalla.com/"
  9926. },
  9927. {
  9928. "name": "Christian Lück",
  9929. "email": "christian@clue.engineering",
  9930. "homepage": "https://clue.engineering/"
  9931. },
  9932. {
  9933. "name": "Cees-Jan Kiewiet",
  9934. "email": "reactphp@ceesjankiewiet.nl",
  9935. "homepage": "https://wyrihaximus.net/"
  9936. },
  9937. {
  9938. "name": "Chris Boden",
  9939. "email": "cboden@gmail.com",
  9940. "homepage": "https://cboden.dev/"
  9941. }
  9942. ],
  9943. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9944. "keywords": [
  9945. "promise",
  9946. "promises"
  9947. ],
  9948. "support": {
  9949. "issues": "https://github.com/reactphp/promise/issues",
  9950. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9951. },
  9952. "funding": [
  9953. {
  9954. "url": "https://opencollective.com/reactphp",
  9955. "type": "open_collective"
  9956. }
  9957. ],
  9958. "time": "2024-05-24T10:39:05+00:00"
  9959. },
  9960. {
  9961. "name": "react/socket",
  9962. "version": "v1.16.0",
  9963. "source": {
  9964. "type": "git",
  9965. "url": "https://github.com/reactphp/socket.git",
  9966. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9967. },
  9968. "dist": {
  9969. "type": "zip",
  9970. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9971. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9972. "shasum": ""
  9973. },
  9974. "require": {
  9975. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9976. "php": ">=5.3.0",
  9977. "react/dns": "^1.13",
  9978. "react/event-loop": "^1.2",
  9979. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9980. "react/stream": "^1.4"
  9981. },
  9982. "require-dev": {
  9983. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9984. "react/async": "^4.3 || ^3.3 || ^2",
  9985. "react/promise-stream": "^1.4",
  9986. "react/promise-timer": "^1.11"
  9987. },
  9988. "type": "library",
  9989. "autoload": {
  9990. "psr-4": {
  9991. "React\\Socket\\": "src/"
  9992. }
  9993. },
  9994. "notification-url": "https://packagist.org/downloads/",
  9995. "license": [
  9996. "MIT"
  9997. ],
  9998. "authors": [
  9999. {
  10000. "name": "Christian Lück",
  10001. "email": "christian@clue.engineering",
  10002. "homepage": "https://clue.engineering/"
  10003. },
  10004. {
  10005. "name": "Cees-Jan Kiewiet",
  10006. "email": "reactphp@ceesjankiewiet.nl",
  10007. "homepage": "https://wyrihaximus.net/"
  10008. },
  10009. {
  10010. "name": "Jan Sorgalla",
  10011. "email": "jsorgalla@gmail.com",
  10012. "homepage": "https://sorgalla.com/"
  10013. },
  10014. {
  10015. "name": "Chris Boden",
  10016. "email": "cboden@gmail.com",
  10017. "homepage": "https://cboden.dev/"
  10018. }
  10019. ],
  10020. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10021. "keywords": [
  10022. "Connection",
  10023. "Socket",
  10024. "async",
  10025. "reactphp",
  10026. "stream"
  10027. ],
  10028. "support": {
  10029. "issues": "https://github.com/reactphp/socket/issues",
  10030. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  10031. },
  10032. "funding": [
  10033. {
  10034. "url": "https://opencollective.com/reactphp",
  10035. "type": "open_collective"
  10036. }
  10037. ],
  10038. "time": "2024-07-26T10:38:09+00:00"
  10039. },
  10040. {
  10041. "name": "react/stream",
  10042. "version": "v1.4.0",
  10043. "source": {
  10044. "type": "git",
  10045. "url": "https://github.com/reactphp/stream.git",
  10046. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  10047. },
  10048. "dist": {
  10049. "type": "zip",
  10050. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10051. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  10052. "shasum": ""
  10053. },
  10054. "require": {
  10055. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10056. "php": ">=5.3.8",
  10057. "react/event-loop": "^1.2"
  10058. },
  10059. "require-dev": {
  10060. "clue/stream-filter": "~1.2",
  10061. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  10062. },
  10063. "type": "library",
  10064. "autoload": {
  10065. "psr-4": {
  10066. "React\\Stream\\": "src/"
  10067. }
  10068. },
  10069. "notification-url": "https://packagist.org/downloads/",
  10070. "license": [
  10071. "MIT"
  10072. ],
  10073. "authors": [
  10074. {
  10075. "name": "Christian Lück",
  10076. "email": "christian@clue.engineering",
  10077. "homepage": "https://clue.engineering/"
  10078. },
  10079. {
  10080. "name": "Cees-Jan Kiewiet",
  10081. "email": "reactphp@ceesjankiewiet.nl",
  10082. "homepage": "https://wyrihaximus.net/"
  10083. },
  10084. {
  10085. "name": "Jan Sorgalla",
  10086. "email": "jsorgalla@gmail.com",
  10087. "homepage": "https://sorgalla.com/"
  10088. },
  10089. {
  10090. "name": "Chris Boden",
  10091. "email": "cboden@gmail.com",
  10092. "homepage": "https://cboden.dev/"
  10093. }
  10094. ],
  10095. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10096. "keywords": [
  10097. "event-driven",
  10098. "io",
  10099. "non-blocking",
  10100. "pipe",
  10101. "reactphp",
  10102. "readable",
  10103. "stream",
  10104. "writable"
  10105. ],
  10106. "support": {
  10107. "issues": "https://github.com/reactphp/stream/issues",
  10108. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  10109. },
  10110. "funding": [
  10111. {
  10112. "url": "https://opencollective.com/reactphp",
  10113. "type": "open_collective"
  10114. }
  10115. ],
  10116. "time": "2024-06-11T12:45:25+00:00"
  10117. },
  10118. {
  10119. "name": "sebastian/cli-parser",
  10120. "version": "2.0.1",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10124. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10129. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "php": ">=8.1"
  10134. },
  10135. "require-dev": {
  10136. "phpunit/phpunit": "^10.0"
  10137. },
  10138. "type": "library",
  10139. "extra": {
  10140. "branch-alias": {
  10141. "dev-main": "2.0-dev"
  10142. }
  10143. },
  10144. "autoload": {
  10145. "classmap": [
  10146. "src/"
  10147. ]
  10148. },
  10149. "notification-url": "https://packagist.org/downloads/",
  10150. "license": [
  10151. "BSD-3-Clause"
  10152. ],
  10153. "authors": [
  10154. {
  10155. "name": "Sebastian Bergmann",
  10156. "email": "sebastian@phpunit.de",
  10157. "role": "lead"
  10158. }
  10159. ],
  10160. "description": "Library for parsing CLI options",
  10161. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10162. "support": {
  10163. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10164. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10165. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10166. },
  10167. "funding": [
  10168. {
  10169. "url": "https://github.com/sebastianbergmann",
  10170. "type": "github"
  10171. }
  10172. ],
  10173. "time": "2024-03-02T07:12:49+00:00"
  10174. },
  10175. {
  10176. "name": "sebastian/code-unit",
  10177. "version": "2.0.0",
  10178. "source": {
  10179. "type": "git",
  10180. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10181. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10182. },
  10183. "dist": {
  10184. "type": "zip",
  10185. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10186. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10187. "shasum": ""
  10188. },
  10189. "require": {
  10190. "php": ">=8.1"
  10191. },
  10192. "require-dev": {
  10193. "phpunit/phpunit": "^10.0"
  10194. },
  10195. "type": "library",
  10196. "extra": {
  10197. "branch-alias": {
  10198. "dev-main": "2.0-dev"
  10199. }
  10200. },
  10201. "autoload": {
  10202. "classmap": [
  10203. "src/"
  10204. ]
  10205. },
  10206. "notification-url": "https://packagist.org/downloads/",
  10207. "license": [
  10208. "BSD-3-Clause"
  10209. ],
  10210. "authors": [
  10211. {
  10212. "name": "Sebastian Bergmann",
  10213. "email": "sebastian@phpunit.de",
  10214. "role": "lead"
  10215. }
  10216. ],
  10217. "description": "Collection of value objects that represent the PHP code units",
  10218. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10219. "support": {
  10220. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10221. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10222. },
  10223. "funding": [
  10224. {
  10225. "url": "https://github.com/sebastianbergmann",
  10226. "type": "github"
  10227. }
  10228. ],
  10229. "time": "2023-02-03T06:58:43+00:00"
  10230. },
  10231. {
  10232. "name": "sebastian/code-unit-reverse-lookup",
  10233. "version": "3.0.0",
  10234. "source": {
  10235. "type": "git",
  10236. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10237. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10238. },
  10239. "dist": {
  10240. "type": "zip",
  10241. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10242. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10243. "shasum": ""
  10244. },
  10245. "require": {
  10246. "php": ">=8.1"
  10247. },
  10248. "require-dev": {
  10249. "phpunit/phpunit": "^10.0"
  10250. },
  10251. "type": "library",
  10252. "extra": {
  10253. "branch-alias": {
  10254. "dev-main": "3.0-dev"
  10255. }
  10256. },
  10257. "autoload": {
  10258. "classmap": [
  10259. "src/"
  10260. ]
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "BSD-3-Clause"
  10265. ],
  10266. "authors": [
  10267. {
  10268. "name": "Sebastian Bergmann",
  10269. "email": "sebastian@phpunit.de"
  10270. }
  10271. ],
  10272. "description": "Looks up which function or method a line of code belongs to",
  10273. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10274. "support": {
  10275. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10276. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10277. },
  10278. "funding": [
  10279. {
  10280. "url": "https://github.com/sebastianbergmann",
  10281. "type": "github"
  10282. }
  10283. ],
  10284. "time": "2023-02-03T06:59:15+00:00"
  10285. },
  10286. {
  10287. "name": "sebastian/comparator",
  10288. "version": "5.0.3",
  10289. "source": {
  10290. "type": "git",
  10291. "url": "https://github.com/sebastianbergmann/comparator.git",
  10292. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10293. },
  10294. "dist": {
  10295. "type": "zip",
  10296. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10297. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10298. "shasum": ""
  10299. },
  10300. "require": {
  10301. "ext-dom": "*",
  10302. "ext-mbstring": "*",
  10303. "php": ">=8.1",
  10304. "sebastian/diff": "^5.0",
  10305. "sebastian/exporter": "^5.0"
  10306. },
  10307. "require-dev": {
  10308. "phpunit/phpunit": "^10.5"
  10309. },
  10310. "type": "library",
  10311. "extra": {
  10312. "branch-alias": {
  10313. "dev-main": "5.0-dev"
  10314. }
  10315. },
  10316. "autoload": {
  10317. "classmap": [
  10318. "src/"
  10319. ]
  10320. },
  10321. "notification-url": "https://packagist.org/downloads/",
  10322. "license": [
  10323. "BSD-3-Clause"
  10324. ],
  10325. "authors": [
  10326. {
  10327. "name": "Sebastian Bergmann",
  10328. "email": "sebastian@phpunit.de"
  10329. },
  10330. {
  10331. "name": "Jeff Welch",
  10332. "email": "whatthejeff@gmail.com"
  10333. },
  10334. {
  10335. "name": "Volker Dusch",
  10336. "email": "github@wallbash.com"
  10337. },
  10338. {
  10339. "name": "Bernhard Schussek",
  10340. "email": "bschussek@2bepublished.at"
  10341. }
  10342. ],
  10343. "description": "Provides the functionality to compare PHP values for equality",
  10344. "homepage": "https://github.com/sebastianbergmann/comparator",
  10345. "keywords": [
  10346. "comparator",
  10347. "compare",
  10348. "equality"
  10349. ],
  10350. "support": {
  10351. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10352. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10353. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10354. },
  10355. "funding": [
  10356. {
  10357. "url": "https://github.com/sebastianbergmann",
  10358. "type": "github"
  10359. }
  10360. ],
  10361. "time": "2024-10-18T14:56:07+00:00"
  10362. },
  10363. {
  10364. "name": "sebastian/complexity",
  10365. "version": "3.2.0",
  10366. "source": {
  10367. "type": "git",
  10368. "url": "https://github.com/sebastianbergmann/complexity.git",
  10369. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10370. },
  10371. "dist": {
  10372. "type": "zip",
  10373. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10374. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10375. "shasum": ""
  10376. },
  10377. "require": {
  10378. "nikic/php-parser": "^4.18 || ^5.0",
  10379. "php": ">=8.1"
  10380. },
  10381. "require-dev": {
  10382. "phpunit/phpunit": "^10.0"
  10383. },
  10384. "type": "library",
  10385. "extra": {
  10386. "branch-alias": {
  10387. "dev-main": "3.2-dev"
  10388. }
  10389. },
  10390. "autoload": {
  10391. "classmap": [
  10392. "src/"
  10393. ]
  10394. },
  10395. "notification-url": "https://packagist.org/downloads/",
  10396. "license": [
  10397. "BSD-3-Clause"
  10398. ],
  10399. "authors": [
  10400. {
  10401. "name": "Sebastian Bergmann",
  10402. "email": "sebastian@phpunit.de",
  10403. "role": "lead"
  10404. }
  10405. ],
  10406. "description": "Library for calculating the complexity of PHP code units",
  10407. "homepage": "https://github.com/sebastianbergmann/complexity",
  10408. "support": {
  10409. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10410. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10411. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10412. },
  10413. "funding": [
  10414. {
  10415. "url": "https://github.com/sebastianbergmann",
  10416. "type": "github"
  10417. }
  10418. ],
  10419. "time": "2023-12-21T08:37:17+00:00"
  10420. },
  10421. {
  10422. "name": "sebastian/diff",
  10423. "version": "5.1.1",
  10424. "source": {
  10425. "type": "git",
  10426. "url": "https://github.com/sebastianbergmann/diff.git",
  10427. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10428. },
  10429. "dist": {
  10430. "type": "zip",
  10431. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10432. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10433. "shasum": ""
  10434. },
  10435. "require": {
  10436. "php": ">=8.1"
  10437. },
  10438. "require-dev": {
  10439. "phpunit/phpunit": "^10.0",
  10440. "symfony/process": "^6.4"
  10441. },
  10442. "type": "library",
  10443. "extra": {
  10444. "branch-alias": {
  10445. "dev-main": "5.1-dev"
  10446. }
  10447. },
  10448. "autoload": {
  10449. "classmap": [
  10450. "src/"
  10451. ]
  10452. },
  10453. "notification-url": "https://packagist.org/downloads/",
  10454. "license": [
  10455. "BSD-3-Clause"
  10456. ],
  10457. "authors": [
  10458. {
  10459. "name": "Sebastian Bergmann",
  10460. "email": "sebastian@phpunit.de"
  10461. },
  10462. {
  10463. "name": "Kore Nordmann",
  10464. "email": "mail@kore-nordmann.de"
  10465. }
  10466. ],
  10467. "description": "Diff implementation",
  10468. "homepage": "https://github.com/sebastianbergmann/diff",
  10469. "keywords": [
  10470. "diff",
  10471. "udiff",
  10472. "unidiff",
  10473. "unified diff"
  10474. ],
  10475. "support": {
  10476. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10477. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10478. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10479. },
  10480. "funding": [
  10481. {
  10482. "url": "https://github.com/sebastianbergmann",
  10483. "type": "github"
  10484. }
  10485. ],
  10486. "time": "2024-03-02T07:15:17+00:00"
  10487. },
  10488. {
  10489. "name": "sebastian/environment",
  10490. "version": "6.1.0",
  10491. "source": {
  10492. "type": "git",
  10493. "url": "https://github.com/sebastianbergmann/environment.git",
  10494. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10495. },
  10496. "dist": {
  10497. "type": "zip",
  10498. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10499. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10500. "shasum": ""
  10501. },
  10502. "require": {
  10503. "php": ">=8.1"
  10504. },
  10505. "require-dev": {
  10506. "phpunit/phpunit": "^10.0"
  10507. },
  10508. "suggest": {
  10509. "ext-posix": "*"
  10510. },
  10511. "type": "library",
  10512. "extra": {
  10513. "branch-alias": {
  10514. "dev-main": "6.1-dev"
  10515. }
  10516. },
  10517. "autoload": {
  10518. "classmap": [
  10519. "src/"
  10520. ]
  10521. },
  10522. "notification-url": "https://packagist.org/downloads/",
  10523. "license": [
  10524. "BSD-3-Clause"
  10525. ],
  10526. "authors": [
  10527. {
  10528. "name": "Sebastian Bergmann",
  10529. "email": "sebastian@phpunit.de"
  10530. }
  10531. ],
  10532. "description": "Provides functionality to handle HHVM/PHP environments",
  10533. "homepage": "https://github.com/sebastianbergmann/environment",
  10534. "keywords": [
  10535. "Xdebug",
  10536. "environment",
  10537. "hhvm"
  10538. ],
  10539. "support": {
  10540. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10541. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10542. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10543. },
  10544. "funding": [
  10545. {
  10546. "url": "https://github.com/sebastianbergmann",
  10547. "type": "github"
  10548. }
  10549. ],
  10550. "time": "2024-03-23T08:47:14+00:00"
  10551. },
  10552. {
  10553. "name": "sebastian/exporter",
  10554. "version": "5.1.2",
  10555. "source": {
  10556. "type": "git",
  10557. "url": "https://github.com/sebastianbergmann/exporter.git",
  10558. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10559. },
  10560. "dist": {
  10561. "type": "zip",
  10562. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10563. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10564. "shasum": ""
  10565. },
  10566. "require": {
  10567. "ext-mbstring": "*",
  10568. "php": ">=8.1",
  10569. "sebastian/recursion-context": "^5.0"
  10570. },
  10571. "require-dev": {
  10572. "phpunit/phpunit": "^10.0"
  10573. },
  10574. "type": "library",
  10575. "extra": {
  10576. "branch-alias": {
  10577. "dev-main": "5.1-dev"
  10578. }
  10579. },
  10580. "autoload": {
  10581. "classmap": [
  10582. "src/"
  10583. ]
  10584. },
  10585. "notification-url": "https://packagist.org/downloads/",
  10586. "license": [
  10587. "BSD-3-Clause"
  10588. ],
  10589. "authors": [
  10590. {
  10591. "name": "Sebastian Bergmann",
  10592. "email": "sebastian@phpunit.de"
  10593. },
  10594. {
  10595. "name": "Jeff Welch",
  10596. "email": "whatthejeff@gmail.com"
  10597. },
  10598. {
  10599. "name": "Volker Dusch",
  10600. "email": "github@wallbash.com"
  10601. },
  10602. {
  10603. "name": "Adam Harvey",
  10604. "email": "aharvey@php.net"
  10605. },
  10606. {
  10607. "name": "Bernhard Schussek",
  10608. "email": "bschussek@gmail.com"
  10609. }
  10610. ],
  10611. "description": "Provides the functionality to export PHP variables for visualization",
  10612. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10613. "keywords": [
  10614. "export",
  10615. "exporter"
  10616. ],
  10617. "support": {
  10618. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10619. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10620. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10621. },
  10622. "funding": [
  10623. {
  10624. "url": "https://github.com/sebastianbergmann",
  10625. "type": "github"
  10626. }
  10627. ],
  10628. "time": "2024-03-02T07:17:12+00:00"
  10629. },
  10630. {
  10631. "name": "sebastian/global-state",
  10632. "version": "6.0.2",
  10633. "source": {
  10634. "type": "git",
  10635. "url": "https://github.com/sebastianbergmann/global-state.git",
  10636. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10637. },
  10638. "dist": {
  10639. "type": "zip",
  10640. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10641. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10642. "shasum": ""
  10643. },
  10644. "require": {
  10645. "php": ">=8.1",
  10646. "sebastian/object-reflector": "^3.0",
  10647. "sebastian/recursion-context": "^5.0"
  10648. },
  10649. "require-dev": {
  10650. "ext-dom": "*",
  10651. "phpunit/phpunit": "^10.0"
  10652. },
  10653. "type": "library",
  10654. "extra": {
  10655. "branch-alias": {
  10656. "dev-main": "6.0-dev"
  10657. }
  10658. },
  10659. "autoload": {
  10660. "classmap": [
  10661. "src/"
  10662. ]
  10663. },
  10664. "notification-url": "https://packagist.org/downloads/",
  10665. "license": [
  10666. "BSD-3-Clause"
  10667. ],
  10668. "authors": [
  10669. {
  10670. "name": "Sebastian Bergmann",
  10671. "email": "sebastian@phpunit.de"
  10672. }
  10673. ],
  10674. "description": "Snapshotting of global state",
  10675. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10676. "keywords": [
  10677. "global state"
  10678. ],
  10679. "support": {
  10680. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10681. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10682. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10683. },
  10684. "funding": [
  10685. {
  10686. "url": "https://github.com/sebastianbergmann",
  10687. "type": "github"
  10688. }
  10689. ],
  10690. "time": "2024-03-02T07:19:19+00:00"
  10691. },
  10692. {
  10693. "name": "sebastian/lines-of-code",
  10694. "version": "2.0.2",
  10695. "source": {
  10696. "type": "git",
  10697. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10698. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10699. },
  10700. "dist": {
  10701. "type": "zip",
  10702. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10703. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10704. "shasum": ""
  10705. },
  10706. "require": {
  10707. "nikic/php-parser": "^4.18 || ^5.0",
  10708. "php": ">=8.1"
  10709. },
  10710. "require-dev": {
  10711. "phpunit/phpunit": "^10.0"
  10712. },
  10713. "type": "library",
  10714. "extra": {
  10715. "branch-alias": {
  10716. "dev-main": "2.0-dev"
  10717. }
  10718. },
  10719. "autoload": {
  10720. "classmap": [
  10721. "src/"
  10722. ]
  10723. },
  10724. "notification-url": "https://packagist.org/downloads/",
  10725. "license": [
  10726. "BSD-3-Clause"
  10727. ],
  10728. "authors": [
  10729. {
  10730. "name": "Sebastian Bergmann",
  10731. "email": "sebastian@phpunit.de",
  10732. "role": "lead"
  10733. }
  10734. ],
  10735. "description": "Library for counting the lines of code in PHP source code",
  10736. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10737. "support": {
  10738. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10739. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10740. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10741. },
  10742. "funding": [
  10743. {
  10744. "url": "https://github.com/sebastianbergmann",
  10745. "type": "github"
  10746. }
  10747. ],
  10748. "time": "2023-12-21T08:38:20+00:00"
  10749. },
  10750. {
  10751. "name": "sebastian/object-enumerator",
  10752. "version": "5.0.0",
  10753. "source": {
  10754. "type": "git",
  10755. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10756. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10757. },
  10758. "dist": {
  10759. "type": "zip",
  10760. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10761. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10762. "shasum": ""
  10763. },
  10764. "require": {
  10765. "php": ">=8.1",
  10766. "sebastian/object-reflector": "^3.0",
  10767. "sebastian/recursion-context": "^5.0"
  10768. },
  10769. "require-dev": {
  10770. "phpunit/phpunit": "^10.0"
  10771. },
  10772. "type": "library",
  10773. "extra": {
  10774. "branch-alias": {
  10775. "dev-main": "5.0-dev"
  10776. }
  10777. },
  10778. "autoload": {
  10779. "classmap": [
  10780. "src/"
  10781. ]
  10782. },
  10783. "notification-url": "https://packagist.org/downloads/",
  10784. "license": [
  10785. "BSD-3-Clause"
  10786. ],
  10787. "authors": [
  10788. {
  10789. "name": "Sebastian Bergmann",
  10790. "email": "sebastian@phpunit.de"
  10791. }
  10792. ],
  10793. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10794. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10795. "support": {
  10796. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10797. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10798. },
  10799. "funding": [
  10800. {
  10801. "url": "https://github.com/sebastianbergmann",
  10802. "type": "github"
  10803. }
  10804. ],
  10805. "time": "2023-02-03T07:08:32+00:00"
  10806. },
  10807. {
  10808. "name": "sebastian/object-reflector",
  10809. "version": "3.0.0",
  10810. "source": {
  10811. "type": "git",
  10812. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10813. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10814. },
  10815. "dist": {
  10816. "type": "zip",
  10817. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10818. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10819. "shasum": ""
  10820. },
  10821. "require": {
  10822. "php": ">=8.1"
  10823. },
  10824. "require-dev": {
  10825. "phpunit/phpunit": "^10.0"
  10826. },
  10827. "type": "library",
  10828. "extra": {
  10829. "branch-alias": {
  10830. "dev-main": "3.0-dev"
  10831. }
  10832. },
  10833. "autoload": {
  10834. "classmap": [
  10835. "src/"
  10836. ]
  10837. },
  10838. "notification-url": "https://packagist.org/downloads/",
  10839. "license": [
  10840. "BSD-3-Clause"
  10841. ],
  10842. "authors": [
  10843. {
  10844. "name": "Sebastian Bergmann",
  10845. "email": "sebastian@phpunit.de"
  10846. }
  10847. ],
  10848. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10849. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10850. "support": {
  10851. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10852. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10853. },
  10854. "funding": [
  10855. {
  10856. "url": "https://github.com/sebastianbergmann",
  10857. "type": "github"
  10858. }
  10859. ],
  10860. "time": "2023-02-03T07:06:18+00:00"
  10861. },
  10862. {
  10863. "name": "sebastian/recursion-context",
  10864. "version": "5.0.0",
  10865. "source": {
  10866. "type": "git",
  10867. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10868. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10869. },
  10870. "dist": {
  10871. "type": "zip",
  10872. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10873. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10874. "shasum": ""
  10875. },
  10876. "require": {
  10877. "php": ">=8.1"
  10878. },
  10879. "require-dev": {
  10880. "phpunit/phpunit": "^10.0"
  10881. },
  10882. "type": "library",
  10883. "extra": {
  10884. "branch-alias": {
  10885. "dev-main": "5.0-dev"
  10886. }
  10887. },
  10888. "autoload": {
  10889. "classmap": [
  10890. "src/"
  10891. ]
  10892. },
  10893. "notification-url": "https://packagist.org/downloads/",
  10894. "license": [
  10895. "BSD-3-Clause"
  10896. ],
  10897. "authors": [
  10898. {
  10899. "name": "Sebastian Bergmann",
  10900. "email": "sebastian@phpunit.de"
  10901. },
  10902. {
  10903. "name": "Jeff Welch",
  10904. "email": "whatthejeff@gmail.com"
  10905. },
  10906. {
  10907. "name": "Adam Harvey",
  10908. "email": "aharvey@php.net"
  10909. }
  10910. ],
  10911. "description": "Provides functionality to recursively process PHP variables",
  10912. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10913. "support": {
  10914. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10915. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10916. },
  10917. "funding": [
  10918. {
  10919. "url": "https://github.com/sebastianbergmann",
  10920. "type": "github"
  10921. }
  10922. ],
  10923. "time": "2023-02-03T07:05:40+00:00"
  10924. },
  10925. {
  10926. "name": "sebastian/type",
  10927. "version": "4.0.0",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/sebastianbergmann/type.git",
  10931. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10936. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "php": ">=8.1"
  10941. },
  10942. "require-dev": {
  10943. "phpunit/phpunit": "^10.0"
  10944. },
  10945. "type": "library",
  10946. "extra": {
  10947. "branch-alias": {
  10948. "dev-main": "4.0-dev"
  10949. }
  10950. },
  10951. "autoload": {
  10952. "classmap": [
  10953. "src/"
  10954. ]
  10955. },
  10956. "notification-url": "https://packagist.org/downloads/",
  10957. "license": [
  10958. "BSD-3-Clause"
  10959. ],
  10960. "authors": [
  10961. {
  10962. "name": "Sebastian Bergmann",
  10963. "email": "sebastian@phpunit.de",
  10964. "role": "lead"
  10965. }
  10966. ],
  10967. "description": "Collection of value objects that represent the types of the PHP type system",
  10968. "homepage": "https://github.com/sebastianbergmann/type",
  10969. "support": {
  10970. "issues": "https://github.com/sebastianbergmann/type/issues",
  10971. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10972. },
  10973. "funding": [
  10974. {
  10975. "url": "https://github.com/sebastianbergmann",
  10976. "type": "github"
  10977. }
  10978. ],
  10979. "time": "2023-02-03T07:10:45+00:00"
  10980. },
  10981. {
  10982. "name": "sebastian/version",
  10983. "version": "4.0.1",
  10984. "source": {
  10985. "type": "git",
  10986. "url": "https://github.com/sebastianbergmann/version.git",
  10987. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10988. },
  10989. "dist": {
  10990. "type": "zip",
  10991. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10992. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10993. "shasum": ""
  10994. },
  10995. "require": {
  10996. "php": ">=8.1"
  10997. },
  10998. "type": "library",
  10999. "extra": {
  11000. "branch-alias": {
  11001. "dev-main": "4.0-dev"
  11002. }
  11003. },
  11004. "autoload": {
  11005. "classmap": [
  11006. "src/"
  11007. ]
  11008. },
  11009. "notification-url": "https://packagist.org/downloads/",
  11010. "license": [
  11011. "BSD-3-Clause"
  11012. ],
  11013. "authors": [
  11014. {
  11015. "name": "Sebastian Bergmann",
  11016. "email": "sebastian@phpunit.de",
  11017. "role": "lead"
  11018. }
  11019. ],
  11020. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11021. "homepage": "https://github.com/sebastianbergmann/version",
  11022. "support": {
  11023. "issues": "https://github.com/sebastianbergmann/version/issues",
  11024. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11025. },
  11026. "funding": [
  11027. {
  11028. "url": "https://github.com/sebastianbergmann",
  11029. "type": "github"
  11030. }
  11031. ],
  11032. "time": "2023-02-07T11:34:05+00:00"
  11033. },
  11034. {
  11035. "name": "swoole/ide-helper",
  11036. "version": "5.1.5",
  11037. "source": {
  11038. "type": "git",
  11039. "url": "https://github.com/swoole/ide-helper.git",
  11040. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  11041. },
  11042. "dist": {
  11043. "type": "zip",
  11044. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  11045. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  11046. "shasum": ""
  11047. },
  11048. "type": "library",
  11049. "notification-url": "https://packagist.org/downloads/",
  11050. "license": [
  11051. "Apache-2.0"
  11052. ],
  11053. "authors": [
  11054. {
  11055. "name": "Team Swoole",
  11056. "email": "team@swoole.com"
  11057. }
  11058. ],
  11059. "description": "IDE help files for Swoole.",
  11060. "support": {
  11061. "issues": "https://github.com/swoole/ide-helper/issues",
  11062. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  11063. },
  11064. "time": "2024-11-05T07:35:30+00:00"
  11065. },
  11066. {
  11067. "name": "symfony/event-dispatcher",
  11068. "version": "v6.4.13",
  11069. "source": {
  11070. "type": "git",
  11071. "url": "https://github.com/symfony/event-dispatcher.git",
  11072. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11073. },
  11074. "dist": {
  11075. "type": "zip",
  11076. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11077. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11078. "shasum": ""
  11079. },
  11080. "require": {
  11081. "php": ">=8.1",
  11082. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11083. },
  11084. "conflict": {
  11085. "symfony/dependency-injection": "<5.4",
  11086. "symfony/service-contracts": "<2.5"
  11087. },
  11088. "provide": {
  11089. "psr/event-dispatcher-implementation": "1.0",
  11090. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11091. },
  11092. "require-dev": {
  11093. "psr/log": "^1|^2|^3",
  11094. "symfony/config": "^5.4|^6.0|^7.0",
  11095. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11096. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11097. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11098. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11099. "symfony/service-contracts": "^2.5|^3",
  11100. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11101. },
  11102. "type": "library",
  11103. "autoload": {
  11104. "psr-4": {
  11105. "Symfony\\Component\\EventDispatcher\\": ""
  11106. },
  11107. "exclude-from-classmap": [
  11108. "/Tests/"
  11109. ]
  11110. },
  11111. "notification-url": "https://packagist.org/downloads/",
  11112. "license": [
  11113. "MIT"
  11114. ],
  11115. "authors": [
  11116. {
  11117. "name": "Fabien Potencier",
  11118. "email": "fabien@symfony.com"
  11119. },
  11120. {
  11121. "name": "Symfony Community",
  11122. "homepage": "https://symfony.com/contributors"
  11123. }
  11124. ],
  11125. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11126. "homepage": "https://symfony.com",
  11127. "support": {
  11128. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11129. },
  11130. "funding": [
  11131. {
  11132. "url": "https://symfony.com/sponsor",
  11133. "type": "custom"
  11134. },
  11135. {
  11136. "url": "https://github.com/fabpot",
  11137. "type": "github"
  11138. },
  11139. {
  11140. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11141. "type": "tidelift"
  11142. }
  11143. ],
  11144. "time": "2024-09-25T14:18:03+00:00"
  11145. },
  11146. {
  11147. "name": "symfony/event-dispatcher-contracts",
  11148. "version": "v3.5.0",
  11149. "source": {
  11150. "type": "git",
  11151. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11152. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11153. },
  11154. "dist": {
  11155. "type": "zip",
  11156. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11157. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11158. "shasum": ""
  11159. },
  11160. "require": {
  11161. "php": ">=8.1",
  11162. "psr/event-dispatcher": "^1"
  11163. },
  11164. "type": "library",
  11165. "extra": {
  11166. "branch-alias": {
  11167. "dev-main": "3.5-dev"
  11168. },
  11169. "thanks": {
  11170. "name": "symfony/contracts",
  11171. "url": "https://github.com/symfony/contracts"
  11172. }
  11173. },
  11174. "autoload": {
  11175. "psr-4": {
  11176. "Symfony\\Contracts\\EventDispatcher\\": ""
  11177. }
  11178. },
  11179. "notification-url": "https://packagist.org/downloads/",
  11180. "license": [
  11181. "MIT"
  11182. ],
  11183. "authors": [
  11184. {
  11185. "name": "Nicolas Grekas",
  11186. "email": "p@tchwork.com"
  11187. },
  11188. {
  11189. "name": "Symfony Community",
  11190. "homepage": "https://symfony.com/contributors"
  11191. }
  11192. ],
  11193. "description": "Generic abstractions related to dispatching event",
  11194. "homepage": "https://symfony.com",
  11195. "keywords": [
  11196. "abstractions",
  11197. "contracts",
  11198. "decoupling",
  11199. "interfaces",
  11200. "interoperability",
  11201. "standards"
  11202. ],
  11203. "support": {
  11204. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11205. },
  11206. "funding": [
  11207. {
  11208. "url": "https://symfony.com/sponsor",
  11209. "type": "custom"
  11210. },
  11211. {
  11212. "url": "https://github.com/fabpot",
  11213. "type": "github"
  11214. },
  11215. {
  11216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11217. "type": "tidelift"
  11218. }
  11219. ],
  11220. "time": "2024-04-18T09:32:20+00:00"
  11221. },
  11222. {
  11223. "name": "symfony/filesystem",
  11224. "version": "v6.4.13",
  11225. "source": {
  11226. "type": "git",
  11227. "url": "https://github.com/symfony/filesystem.git",
  11228. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11229. },
  11230. "dist": {
  11231. "type": "zip",
  11232. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11233. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11234. "shasum": ""
  11235. },
  11236. "require": {
  11237. "php": ">=8.1",
  11238. "symfony/polyfill-ctype": "~1.8",
  11239. "symfony/polyfill-mbstring": "~1.8"
  11240. },
  11241. "require-dev": {
  11242. "symfony/process": "^5.4|^6.4|^7.0"
  11243. },
  11244. "type": "library",
  11245. "autoload": {
  11246. "psr-4": {
  11247. "Symfony\\Component\\Filesystem\\": ""
  11248. },
  11249. "exclude-from-classmap": [
  11250. "/Tests/"
  11251. ]
  11252. },
  11253. "notification-url": "https://packagist.org/downloads/",
  11254. "license": [
  11255. "MIT"
  11256. ],
  11257. "authors": [
  11258. {
  11259. "name": "Fabien Potencier",
  11260. "email": "fabien@symfony.com"
  11261. },
  11262. {
  11263. "name": "Symfony Community",
  11264. "homepage": "https://symfony.com/contributors"
  11265. }
  11266. ],
  11267. "description": "Provides basic utilities for the filesystem",
  11268. "homepage": "https://symfony.com",
  11269. "support": {
  11270. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11271. },
  11272. "funding": [
  11273. {
  11274. "url": "https://symfony.com/sponsor",
  11275. "type": "custom"
  11276. },
  11277. {
  11278. "url": "https://github.com/fabpot",
  11279. "type": "github"
  11280. },
  11281. {
  11282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11283. "type": "tidelift"
  11284. }
  11285. ],
  11286. "time": "2024-10-25T15:07:50+00:00"
  11287. },
  11288. {
  11289. "name": "symfony/http-foundation",
  11290. "version": "v6.4.15",
  11291. "source": {
  11292. "type": "git",
  11293. "url": "https://github.com/symfony/http-foundation.git",
  11294. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6"
  11295. },
  11296. "dist": {
  11297. "type": "zip",
  11298. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11299. "reference": "9b3165eb2f04aeaa1a5a2cfef73e63fe3b22dff6",
  11300. "shasum": ""
  11301. },
  11302. "require": {
  11303. "php": ">=8.1",
  11304. "symfony/deprecation-contracts": "^2.5|^3",
  11305. "symfony/polyfill-mbstring": "~1.1",
  11306. "symfony/polyfill-php83": "^1.27"
  11307. },
  11308. "conflict": {
  11309. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11310. },
  11311. "require-dev": {
  11312. "doctrine/dbal": "^2.13.1|^3|^4",
  11313. "predis/predis": "^1.1|^2.0",
  11314. "symfony/cache": "^6.4.12|^7.1.5",
  11315. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11316. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11317. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11318. "symfony/mime": "^5.4|^6.0|^7.0",
  11319. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11320. },
  11321. "type": "library",
  11322. "autoload": {
  11323. "psr-4": {
  11324. "Symfony\\Component\\HttpFoundation\\": ""
  11325. },
  11326. "exclude-from-classmap": [
  11327. "/Tests/"
  11328. ]
  11329. },
  11330. "notification-url": "https://packagist.org/downloads/",
  11331. "license": [
  11332. "MIT"
  11333. ],
  11334. "authors": [
  11335. {
  11336. "name": "Fabien Potencier",
  11337. "email": "fabien@symfony.com"
  11338. },
  11339. {
  11340. "name": "Symfony Community",
  11341. "homepage": "https://symfony.com/contributors"
  11342. }
  11343. ],
  11344. "description": "Defines an object-oriented layer for the HTTP specification",
  11345. "homepage": "https://symfony.com",
  11346. "support": {
  11347. "source": "https://github.com/symfony/http-foundation/tree/v6.4.15"
  11348. },
  11349. "funding": [
  11350. {
  11351. "url": "https://symfony.com/sponsor",
  11352. "type": "custom"
  11353. },
  11354. {
  11355. "url": "https://github.com/fabpot",
  11356. "type": "github"
  11357. },
  11358. {
  11359. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11360. "type": "tidelift"
  11361. }
  11362. ],
  11363. "time": "2024-11-08T16:09:24+00:00"
  11364. },
  11365. {
  11366. "name": "symfony/options-resolver",
  11367. "version": "v6.4.13",
  11368. "source": {
  11369. "type": "git",
  11370. "url": "https://github.com/symfony/options-resolver.git",
  11371. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11372. },
  11373. "dist": {
  11374. "type": "zip",
  11375. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11376. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11377. "shasum": ""
  11378. },
  11379. "require": {
  11380. "php": ">=8.1",
  11381. "symfony/deprecation-contracts": "^2.5|^3"
  11382. },
  11383. "type": "library",
  11384. "autoload": {
  11385. "psr-4": {
  11386. "Symfony\\Component\\OptionsResolver\\": ""
  11387. },
  11388. "exclude-from-classmap": [
  11389. "/Tests/"
  11390. ]
  11391. },
  11392. "notification-url": "https://packagist.org/downloads/",
  11393. "license": [
  11394. "MIT"
  11395. ],
  11396. "authors": [
  11397. {
  11398. "name": "Fabien Potencier",
  11399. "email": "fabien@symfony.com"
  11400. },
  11401. {
  11402. "name": "Symfony Community",
  11403. "homepage": "https://symfony.com/contributors"
  11404. }
  11405. ],
  11406. "description": "Provides an improved replacement for the array_replace PHP function",
  11407. "homepage": "https://symfony.com",
  11408. "keywords": [
  11409. "config",
  11410. "configuration",
  11411. "options"
  11412. ],
  11413. "support": {
  11414. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11415. },
  11416. "funding": [
  11417. {
  11418. "url": "https://symfony.com/sponsor",
  11419. "type": "custom"
  11420. },
  11421. {
  11422. "url": "https://github.com/fabpot",
  11423. "type": "github"
  11424. },
  11425. {
  11426. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11427. "type": "tidelift"
  11428. }
  11429. ],
  11430. "time": "2024-09-25T14:18:03+00:00"
  11431. },
  11432. {
  11433. "name": "symfony/polyfill-php81",
  11434. "version": "v1.31.0",
  11435. "source": {
  11436. "type": "git",
  11437. "url": "https://github.com/symfony/polyfill-php81.git",
  11438. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11439. },
  11440. "dist": {
  11441. "type": "zip",
  11442. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11443. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11444. "shasum": ""
  11445. },
  11446. "require": {
  11447. "php": ">=7.2"
  11448. },
  11449. "type": "library",
  11450. "extra": {
  11451. "thanks": {
  11452. "name": "symfony/polyfill",
  11453. "url": "https://github.com/symfony/polyfill"
  11454. }
  11455. },
  11456. "autoload": {
  11457. "files": [
  11458. "bootstrap.php"
  11459. ],
  11460. "psr-4": {
  11461. "Symfony\\Polyfill\\Php81\\": ""
  11462. },
  11463. "classmap": [
  11464. "Resources/stubs"
  11465. ]
  11466. },
  11467. "notification-url": "https://packagist.org/downloads/",
  11468. "license": [
  11469. "MIT"
  11470. ],
  11471. "authors": [
  11472. {
  11473. "name": "Nicolas Grekas",
  11474. "email": "p@tchwork.com"
  11475. },
  11476. {
  11477. "name": "Symfony Community",
  11478. "homepage": "https://symfony.com/contributors"
  11479. }
  11480. ],
  11481. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11482. "homepage": "https://symfony.com",
  11483. "keywords": [
  11484. "compatibility",
  11485. "polyfill",
  11486. "portable",
  11487. "shim"
  11488. ],
  11489. "support": {
  11490. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11491. },
  11492. "funding": [
  11493. {
  11494. "url": "https://symfony.com/sponsor",
  11495. "type": "custom"
  11496. },
  11497. {
  11498. "url": "https://github.com/fabpot",
  11499. "type": "github"
  11500. },
  11501. {
  11502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11503. "type": "tidelift"
  11504. }
  11505. ],
  11506. "time": "2024-09-09T11:45:10+00:00"
  11507. },
  11508. {
  11509. "name": "symfony/polyfill-php83",
  11510. "version": "v1.31.0",
  11511. "source": {
  11512. "type": "git",
  11513. "url": "https://github.com/symfony/polyfill-php83.git",
  11514. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11515. },
  11516. "dist": {
  11517. "type": "zip",
  11518. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11519. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11520. "shasum": ""
  11521. },
  11522. "require": {
  11523. "php": ">=7.2"
  11524. },
  11525. "type": "library",
  11526. "extra": {
  11527. "thanks": {
  11528. "name": "symfony/polyfill",
  11529. "url": "https://github.com/symfony/polyfill"
  11530. }
  11531. },
  11532. "autoload": {
  11533. "files": [
  11534. "bootstrap.php"
  11535. ],
  11536. "psr-4": {
  11537. "Symfony\\Polyfill\\Php83\\": ""
  11538. },
  11539. "classmap": [
  11540. "Resources/stubs"
  11541. ]
  11542. },
  11543. "notification-url": "https://packagist.org/downloads/",
  11544. "license": [
  11545. "MIT"
  11546. ],
  11547. "authors": [
  11548. {
  11549. "name": "Nicolas Grekas",
  11550. "email": "p@tchwork.com"
  11551. },
  11552. {
  11553. "name": "Symfony Community",
  11554. "homepage": "https://symfony.com/contributors"
  11555. }
  11556. ],
  11557. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11558. "homepage": "https://symfony.com",
  11559. "keywords": [
  11560. "compatibility",
  11561. "polyfill",
  11562. "portable",
  11563. "shim"
  11564. ],
  11565. "support": {
  11566. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11567. },
  11568. "funding": [
  11569. {
  11570. "url": "https://symfony.com/sponsor",
  11571. "type": "custom"
  11572. },
  11573. {
  11574. "url": "https://github.com/fabpot",
  11575. "type": "github"
  11576. },
  11577. {
  11578. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11579. "type": "tidelift"
  11580. }
  11581. ],
  11582. "time": "2024-09-09T11:45:10+00:00"
  11583. },
  11584. {
  11585. "name": "symfony/process",
  11586. "version": "v6.4.15",
  11587. "source": {
  11588. "type": "git",
  11589. "url": "https://github.com/symfony/process.git",
  11590. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  11591. },
  11592. "dist": {
  11593. "type": "zip",
  11594. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  11595. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  11596. "shasum": ""
  11597. },
  11598. "require": {
  11599. "php": ">=8.1"
  11600. },
  11601. "type": "library",
  11602. "autoload": {
  11603. "psr-4": {
  11604. "Symfony\\Component\\Process\\": ""
  11605. },
  11606. "exclude-from-classmap": [
  11607. "/Tests/"
  11608. ]
  11609. },
  11610. "notification-url": "https://packagist.org/downloads/",
  11611. "license": [
  11612. "MIT"
  11613. ],
  11614. "authors": [
  11615. {
  11616. "name": "Fabien Potencier",
  11617. "email": "fabien@symfony.com"
  11618. },
  11619. {
  11620. "name": "Symfony Community",
  11621. "homepage": "https://symfony.com/contributors"
  11622. }
  11623. ],
  11624. "description": "Executes commands in sub-processes",
  11625. "homepage": "https://symfony.com",
  11626. "support": {
  11627. "source": "https://github.com/symfony/process/tree/v6.4.15"
  11628. },
  11629. "funding": [
  11630. {
  11631. "url": "https://symfony.com/sponsor",
  11632. "type": "custom"
  11633. },
  11634. {
  11635. "url": "https://github.com/fabpot",
  11636. "type": "github"
  11637. },
  11638. {
  11639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11640. "type": "tidelift"
  11641. }
  11642. ],
  11643. "time": "2024-11-06T14:19:14+00:00"
  11644. },
  11645. {
  11646. "name": "symfony/stopwatch",
  11647. "version": "v6.4.13",
  11648. "source": {
  11649. "type": "git",
  11650. "url": "https://github.com/symfony/stopwatch.git",
  11651. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11652. },
  11653. "dist": {
  11654. "type": "zip",
  11655. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11656. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11657. "shasum": ""
  11658. },
  11659. "require": {
  11660. "php": ">=8.1",
  11661. "symfony/service-contracts": "^2.5|^3"
  11662. },
  11663. "type": "library",
  11664. "autoload": {
  11665. "psr-4": {
  11666. "Symfony\\Component\\Stopwatch\\": ""
  11667. },
  11668. "exclude-from-classmap": [
  11669. "/Tests/"
  11670. ]
  11671. },
  11672. "notification-url": "https://packagist.org/downloads/",
  11673. "license": [
  11674. "MIT"
  11675. ],
  11676. "authors": [
  11677. {
  11678. "name": "Fabien Potencier",
  11679. "email": "fabien@symfony.com"
  11680. },
  11681. {
  11682. "name": "Symfony Community",
  11683. "homepage": "https://symfony.com/contributors"
  11684. }
  11685. ],
  11686. "description": "Provides a way to profile code",
  11687. "homepage": "https://symfony.com",
  11688. "support": {
  11689. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11690. },
  11691. "funding": [
  11692. {
  11693. "url": "https://symfony.com/sponsor",
  11694. "type": "custom"
  11695. },
  11696. {
  11697. "url": "https://github.com/fabpot",
  11698. "type": "github"
  11699. },
  11700. {
  11701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11702. "type": "tidelift"
  11703. }
  11704. ],
  11705. "time": "2024-09-25T14:18:03+00:00"
  11706. },
  11707. {
  11708. "name": "theseer/tokenizer",
  11709. "version": "1.2.3",
  11710. "source": {
  11711. "type": "git",
  11712. "url": "https://github.com/theseer/tokenizer.git",
  11713. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11714. },
  11715. "dist": {
  11716. "type": "zip",
  11717. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11718. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11719. "shasum": ""
  11720. },
  11721. "require": {
  11722. "ext-dom": "*",
  11723. "ext-tokenizer": "*",
  11724. "ext-xmlwriter": "*",
  11725. "php": "^7.2 || ^8.0"
  11726. },
  11727. "type": "library",
  11728. "autoload": {
  11729. "classmap": [
  11730. "src/"
  11731. ]
  11732. },
  11733. "notification-url": "https://packagist.org/downloads/",
  11734. "license": [
  11735. "BSD-3-Clause"
  11736. ],
  11737. "authors": [
  11738. {
  11739. "name": "Arne Blankerts",
  11740. "email": "arne@blankerts.de",
  11741. "role": "Developer"
  11742. }
  11743. ],
  11744. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11745. "support": {
  11746. "issues": "https://github.com/theseer/tokenizer/issues",
  11747. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11748. },
  11749. "funding": [
  11750. {
  11751. "url": "https://github.com/theseer",
  11752. "type": "github"
  11753. }
  11754. ],
  11755. "time": "2024-03-03T12:36:25+00:00"
  11756. },
  11757. {
  11758. "name": "zx/php-tools",
  11759. "version": "v0.0.1",
  11760. "source": {
  11761. "type": "git",
  11762. "url": "https://gitee.com/open-php/php-tools.git",
  11763. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11764. },
  11765. "require": {
  11766. "php": ">=7.0"
  11767. },
  11768. "type": "library",
  11769. "autoload": {
  11770. "psr-4": {
  11771. "ZX\\": "src/"
  11772. }
  11773. },
  11774. "notification-url": "https://packagist.org/downloads/",
  11775. "license": [
  11776. "mit"
  11777. ],
  11778. "authors": [
  11779. {
  11780. "name": "zx",
  11781. "email": "903464207@qq.com"
  11782. }
  11783. ],
  11784. "description": "php-tools",
  11785. "time": "2023-06-25T06:24:10+00:00"
  11786. }
  11787. ],
  11788. "aliases": [],
  11789. "minimum-stability": "dev",
  11790. "stability-flags": [],
  11791. "prefer-stable": true,
  11792. "prefer-lowest": false,
  11793. "platform": {
  11794. "php": ">=8.1"
  11795. },
  11796. "platform-dev": [],
  11797. "plugin-api-version": "2.6.0"
  11798. }