composer.lock 419 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825
  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": "d5f7fd6fcee090d2a5947dfb2b5bd447",
  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.1",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  148. "reference": "e157ef3f3124bbf6fe7ce0ffd109e8a8ef284e7f",
  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.8.0",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6",
  163. "vimeo/psalm": "^4.10"
  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.1"
  210. },
  211. "time": "2023-02-02T22:02:53+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.2",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "bc90f12574f8c69e72afd8e61de9bfd186802077"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/bc90f12574f8c69e72afd8e61de9bfd186802077",
  510. "reference": "bc90f12574f8c69e72afd8e61de9bfd186802077",
  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.2"
  551. },
  552. "time": "2024-03-19T06:53:52+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.2",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  733. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.2"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  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.2"
  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": "2023-11-12T22:16:48+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.8.1",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  795. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  801. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  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. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  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.8.1"
  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": "2023-12-03T20:35:24+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.2",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  921. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  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.36 || ^9.6.15"
  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.2"
  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": "2023-12-03T20:19:20+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.6.2",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1004. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  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",
  1020. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  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.6.2"
  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": "2023-12-03T20:05:35+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.28",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/c96e294e99e68113ed3e237db8f976308ee42ba7",
  1120. "reference": "c96e294e99e68113ed3e237db8f976308ee42ba7",
  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-06-24T01:53:39+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/cache",
  1187. "version": "v3.1.23",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/cache.git",
  1191. "reference": "7783e220b984b26409d621da49b853340f788a6d"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/cache/zipball/7783e220b984b26409d621da49b853340f788a6d",
  1196. "reference": "7783e220b984b26409d621da49b853340f788a6d",
  1197. "shasum": ""
  1198. },
  1199. "require": {
  1200. "hyperf/codec": "~3.1.0",
  1201. "hyperf/collection": "~3.1.0",
  1202. "hyperf/contract": "~3.1.0",
  1203. "hyperf/support": "~3.1.0",
  1204. "hyperf/utils": "~3.1.0",
  1205. "php": ">=8.1",
  1206. "psr/container": "^1.0|^2.0",
  1207. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1208. },
  1209. "suggest": {
  1210. "hyperf/di": "Use cache annotations.",
  1211. "hyperf/event": "Use listener to delete annotation cache."
  1212. },
  1213. "type": "library",
  1214. "extra": {
  1215. "branch-alias": {
  1216. "dev-master": "3.1-dev"
  1217. },
  1218. "hyperf": {
  1219. "config": "Hyperf\\Cache\\ConfigProvider"
  1220. }
  1221. },
  1222. "autoload": {
  1223. "psr-4": {
  1224. "Hyperf\\Cache\\": "src/"
  1225. }
  1226. },
  1227. "notification-url": "https://packagist.org/downloads/",
  1228. "license": [
  1229. "MIT"
  1230. ],
  1231. "description": "A cache component for hyperf.",
  1232. "homepage": "https://hyperf.io",
  1233. "keywords": [
  1234. "cache",
  1235. "hyperf",
  1236. "php"
  1237. ],
  1238. "support": {
  1239. "docs": "https://hyperf.wiki",
  1240. "issues": "https://github.com/hyperf/hyperf/issues",
  1241. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1242. "source": "https://github.com/hyperf/hyperf"
  1243. },
  1244. "funding": [
  1245. {
  1246. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1247. "type": "custom"
  1248. },
  1249. {
  1250. "url": "https://opencollective.com/hyperf",
  1251. "type": "open_collective"
  1252. }
  1253. ],
  1254. "time": "2024-05-23T03:43:58+00:00"
  1255. },
  1256. {
  1257. "name": "hyperf/code-parser",
  1258. "version": "v3.1.15",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/hyperf/code-parser.git",
  1262. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1267. "reference": "820e8e6680f0d04e4187a3037a2a3eaf7141913d",
  1268. "shasum": ""
  1269. },
  1270. "require": {
  1271. "hyperf/collection": "~3.1.0",
  1272. "hyperf/stringable": "~3.1.0",
  1273. "hyperf/support": "~3.1.0",
  1274. "php": ">=8.1"
  1275. },
  1276. "suggest": {
  1277. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  1278. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  1279. },
  1280. "type": "library",
  1281. "extra": {
  1282. "branch-alias": {
  1283. "dev-master": "3.1-dev"
  1284. }
  1285. },
  1286. "autoload": {
  1287. "psr-4": {
  1288. "Hyperf\\CodeParser\\": "src/"
  1289. }
  1290. },
  1291. "notification-url": "https://packagist.org/downloads/",
  1292. "license": [
  1293. "MIT"
  1294. ],
  1295. "description": "A code parser component for Hyperf.",
  1296. "homepage": "https://hyperf.io",
  1297. "keywords": [
  1298. "code-parser",
  1299. "hyperf",
  1300. "php",
  1301. "swoole"
  1302. ],
  1303. "support": {
  1304. "docs": "https://hyperf.wiki",
  1305. "issues": "https://github.com/hyperf/hyperf/issues",
  1306. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1307. "source": "https://github.com/hyperf/hyperf"
  1308. },
  1309. "funding": [
  1310. {
  1311. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1312. "type": "custom"
  1313. },
  1314. {
  1315. "url": "https://opencollective.com/hyperf",
  1316. "type": "open_collective"
  1317. }
  1318. ],
  1319. "time": "2024-03-23T11:28:51+00:00"
  1320. },
  1321. {
  1322. "name": "hyperf/codec",
  1323. "version": "v3.1.15",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/hyperf/codec.git",
  1327. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/hyperf/codec/zipball/198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1332. "reference": "198c364ad8eadda13f1a0decdbb9221ac9c4c260",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "ext-xml": "*",
  1338. "hyperf/contract": "~3.1.0",
  1339. "php": ">=8.1"
  1340. },
  1341. "suggest": {
  1342. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  1343. },
  1344. "type": "library",
  1345. "extra": {
  1346. "branch-alias": {
  1347. "dev-master": "3.1-dev"
  1348. }
  1349. },
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Hyperf\\Codec\\": "src/"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "description": "A codec component for Hyperf.",
  1360. "homepage": "https://hyperf.io",
  1361. "keywords": [
  1362. "codec",
  1363. "hyperf",
  1364. "php",
  1365. "swoole"
  1366. ],
  1367. "support": {
  1368. "docs": "https://hyperf.wiki",
  1369. "issues": "https://github.com/hyperf/hyperf/issues",
  1370. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1371. "source": "https://github.com/hyperf/hyperf"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://opencollective.com/hyperf",
  1380. "type": "open_collective"
  1381. }
  1382. ],
  1383. "time": "2024-03-23T11:28:51+00:00"
  1384. },
  1385. {
  1386. "name": "hyperf/collection",
  1387. "version": "v3.1.25",
  1388. "source": {
  1389. "type": "git",
  1390. "url": "https://github.com/hyperf/collection.git",
  1391. "reference": "b071263a75910cb972de4686b326a9274a2464c2"
  1392. },
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://api.github.com/repos/hyperf/collection/zipball/b071263a75910cb972de4686b326a9274a2464c2",
  1396. "reference": "b071263a75910cb972de4686b326a9274a2464c2",
  1397. "shasum": ""
  1398. },
  1399. "require": {
  1400. "hyperf/conditionable": "~3.1.0",
  1401. "hyperf/contract": "~3.1.0",
  1402. "hyperf/macroable": "~3.1.0",
  1403. "hyperf/stringable": "~3.1.0",
  1404. "php": ">=8.1"
  1405. },
  1406. "type": "library",
  1407. "extra": {
  1408. "branch-alias": {
  1409. "dev-master": "3.1-dev"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "files": [
  1414. "src/Functions.php"
  1415. ],
  1416. "psr-4": {
  1417. "Hyperf\\Collection\\": "src/"
  1418. }
  1419. },
  1420. "notification-url": "https://packagist.org/downloads/",
  1421. "license": [
  1422. "MIT"
  1423. ],
  1424. "description": "Hyperf Collection package which come from illuminate/collections",
  1425. "homepage": "https://hyperf.io",
  1426. "keywords": [
  1427. "collection",
  1428. "hyperf",
  1429. "php",
  1430. "swoole"
  1431. ],
  1432. "support": {
  1433. "docs": "https://hyperf.wiki",
  1434. "issues": "https://github.com/hyperf/hyperf/issues",
  1435. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1436. "source": "https://github.com/hyperf/hyperf"
  1437. },
  1438. "funding": [
  1439. {
  1440. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1441. "type": "custom"
  1442. },
  1443. {
  1444. "url": "https://opencollective.com/hyperf",
  1445. "type": "open_collective"
  1446. }
  1447. ],
  1448. "time": "2024-06-05T07:45:03+00:00"
  1449. },
  1450. {
  1451. "name": "hyperf/command",
  1452. "version": "v3.1.22",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/hyperf/command.git",
  1456. "reference": "dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/hyperf/command/zipball/dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27",
  1461. "reference": "dce46ba82cae52f0e78bf95d8adb5ec8f23fcd27",
  1462. "shasum": "",
  1463. "mirrors": [
  1464. {
  1465. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1466. "preferred": true
  1467. }
  1468. ]
  1469. },
  1470. "require": {
  1471. "hyperf/collection": "~3.1.0",
  1472. "hyperf/context": "~3.1.0",
  1473. "hyperf/contract": "~3.1.0",
  1474. "hyperf/coroutine": "~3.1.0",
  1475. "hyperf/di": "~3.1.0",
  1476. "hyperf/stringable": "~3.1.0",
  1477. "hyperf/support": "~3.1.0",
  1478. "hyperf/tappable": "~3.1.0",
  1479. "php": ">=8.1",
  1480. "psr/event-dispatcher": "^1.0",
  1481. "symfony/console": "^5.0|^6.0|^7.0"
  1482. },
  1483. "suggest": {
  1484. "hyperf/di": "Required to use annotations.",
  1485. "hyperf/event": "Required to use listeners."
  1486. },
  1487. "type": "library",
  1488. "extra": {
  1489. "branch-alias": {
  1490. "dev-master": "3.1-dev"
  1491. },
  1492. "hyperf": {
  1493. "config": "Hyperf\\Command\\ConfigProvider"
  1494. }
  1495. },
  1496. "autoload": {
  1497. "psr-4": {
  1498. "Hyperf\\Command\\": "src/"
  1499. }
  1500. },
  1501. "notification-url": "https://packagist.org/downloads/",
  1502. "license": [
  1503. "MIT"
  1504. ],
  1505. "description": "Command for hyperf",
  1506. "keywords": [
  1507. "command",
  1508. "php",
  1509. "swoole"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/hyperf/command/issues",
  1513. "source": "https://github.com/hyperf/command/tree/v3.1.22"
  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-05-15T05:22:10+00:00"
  1526. },
  1527. {
  1528. "name": "hyperf/conditionable",
  1529. "version": "v3.1.15",
  1530. "source": {
  1531. "type": "git",
  1532. "url": "https://github.com/hyperf/conditionable.git",
  1533. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3"
  1534. },
  1535. "dist": {
  1536. "type": "zip",
  1537. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1538. "reference": "2c1555891d136904b890ba6d812d9ff50ca13ae3",
  1539. "shasum": ""
  1540. },
  1541. "require": {
  1542. "php": ">=8.1"
  1543. },
  1544. "type": "library",
  1545. "extra": {
  1546. "branch-alias": {
  1547. "dev-master": "3.1-dev"
  1548. }
  1549. },
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Hyperf\\Conditionable\\": "src/"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1560. "homepage": "https://hyperf.io",
  1561. "keywords": [
  1562. "conditionable",
  1563. "hyperf",
  1564. "php",
  1565. "swoole"
  1566. ],
  1567. "support": {
  1568. "docs": "https://hyperf.wiki",
  1569. "issues": "https://github.com/hyperf/hyperf/issues",
  1570. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1571. "source": "https://github.com/hyperf/hyperf"
  1572. },
  1573. "funding": [
  1574. {
  1575. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1576. "type": "custom"
  1577. },
  1578. {
  1579. "url": "https://opencollective.com/hyperf",
  1580. "type": "open_collective"
  1581. }
  1582. ],
  1583. "time": "2024-03-23T11:28:51+00:00"
  1584. },
  1585. {
  1586. "name": "hyperf/config",
  1587. "version": "v3.1.15",
  1588. "source": {
  1589. "type": "git",
  1590. "url": "https://github.com/hyperf/config.git",
  1591. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292"
  1592. },
  1593. "dist": {
  1594. "type": "zip",
  1595. "url": "https://api.github.com/repos/hyperf/config/zipball/5a92774d6db6bc02fc511c005c01f99d922aa292",
  1596. "reference": "5a92774d6db6bc02fc511c005c01f99d922aa292",
  1597. "shasum": ""
  1598. },
  1599. "require": {
  1600. "hyperf/collection": "~3.1.0",
  1601. "hyperf/contract": "~3.1.0",
  1602. "hyperf/support": "~3.1.0",
  1603. "php": ">=8.1",
  1604. "psr/container": "^1.0|^2.0",
  1605. "symfony/finder": "^5.0|^6.0|^7.0"
  1606. },
  1607. "suggest": {
  1608. "hyperf/context": "Required to use config()",
  1609. "hyperf/di": "Allows using @Value annotation",
  1610. "hyperf/event": "Allows using @Value annotation",
  1611. "hyperf/framework": "Allows using @Value annotation",
  1612. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1613. },
  1614. "type": "library",
  1615. "extra": {
  1616. "branch-alias": {
  1617. "dev-master": "3.1-dev"
  1618. },
  1619. "hyperf": {
  1620. "config": "Hyperf\\Config\\ConfigProvider"
  1621. }
  1622. },
  1623. "autoload": {
  1624. "files": [
  1625. "./src/Functions.php"
  1626. ],
  1627. "psr-4": {
  1628. "Hyperf\\Config\\": "src/"
  1629. }
  1630. },
  1631. "notification-url": "https://packagist.org/downloads/",
  1632. "license": [
  1633. "MIT"
  1634. ],
  1635. "description": "An independent component that provides configuration container.",
  1636. "homepage": "https://hyperf.io",
  1637. "keywords": [
  1638. "config",
  1639. "configuration",
  1640. "hyperf",
  1641. "php",
  1642. "swoole"
  1643. ],
  1644. "support": {
  1645. "docs": "https://hyperf.wiki",
  1646. "issues": "https://github.com/hyperf/hyperf/issues",
  1647. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1648. "source": "https://github.com/hyperf/hyperf"
  1649. },
  1650. "funding": [
  1651. {
  1652. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1653. "type": "custom"
  1654. },
  1655. {
  1656. "url": "https://opencollective.com/hyperf",
  1657. "type": "open_collective"
  1658. }
  1659. ],
  1660. "time": "2024-03-23T11:28:51+00:00"
  1661. },
  1662. {
  1663. "name": "hyperf/config-center",
  1664. "version": "v3.1.15",
  1665. "source": {
  1666. "type": "git",
  1667. "url": "https://github.com/hyperf/config-center.git",
  1668. "reference": "a47acc3279ca173fa393b81175b6807859cd144e"
  1669. },
  1670. "dist": {
  1671. "type": "zip",
  1672. "url": "https://api.github.com/repos/hyperf/config-center/zipball/a47acc3279ca173fa393b81175b6807859cd144e",
  1673. "reference": "a47acc3279ca173fa393b81175b6807859cd144e",
  1674. "shasum": ""
  1675. },
  1676. "require": {
  1677. "hyperf/support": "~3.1.0",
  1678. "php": ">=8.1"
  1679. },
  1680. "suggest": {
  1681. "hyperf/process": "^2.1"
  1682. },
  1683. "type": "library",
  1684. "extra": {
  1685. "branch-alias": {
  1686. "dev-master": "3.1-dev"
  1687. },
  1688. "hyperf": {
  1689. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1690. }
  1691. },
  1692. "autoload": {
  1693. "psr-4": {
  1694. "Hyperf\\ConfigCenter\\": "src/"
  1695. }
  1696. },
  1697. "notification-url": "https://packagist.org/downloads/",
  1698. "license": [
  1699. "MIT"
  1700. ],
  1701. "description": "The abstraction component of config center",
  1702. "homepage": "https://hyperf.io",
  1703. "keywords": [
  1704. "config-center",
  1705. "hyperf",
  1706. "php"
  1707. ],
  1708. "support": {
  1709. "docs": "https://hyperf.wiki",
  1710. "issues": "https://github.com/hyperf/hyperf/issues",
  1711. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1712. "source": "https://github.com/hyperf/hyperf"
  1713. },
  1714. "funding": [
  1715. {
  1716. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1717. "type": "custom"
  1718. },
  1719. {
  1720. "url": "https://opencollective.com/hyperf",
  1721. "type": "open_collective"
  1722. }
  1723. ],
  1724. "time": "2024-03-23T11:28:51+00:00"
  1725. },
  1726. {
  1727. "name": "hyperf/config-nacos",
  1728. "version": "v3.1.15",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/hyperf/config-nacos.git",
  1732. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1737. "reference": "e66bd614a5bc789f6ca28152a206218f77bc8dd2",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "hyperf/codec": "~3.1.0",
  1742. "hyperf/config-center": "~3.1.0",
  1743. "hyperf/contract": "~3.1.0",
  1744. "hyperf/guzzle": "~3.1.0",
  1745. "hyperf/nacos": "~3.1.0",
  1746. "hyperf/support": "~3.1.0",
  1747. "hyperf/utils": "~3.1.0",
  1748. "jetbrains/phpstorm-attributes": "^1.0",
  1749. "php": ">=8.1"
  1750. },
  1751. "suggest": {
  1752. "ext-json": "*",
  1753. "ext-simplexml": "*",
  1754. "ext-yaml": "*",
  1755. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1756. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1757. "hyperf/process": "Required to use processes. (~2.2.0)"
  1758. },
  1759. "type": "library",
  1760. "extra": {
  1761. "branch-alias": {
  1762. "dev-master": "3.1-dev"
  1763. },
  1764. "hyperf": {
  1765. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1766. }
  1767. },
  1768. "autoload": {
  1769. "psr-4": {
  1770. "Hyperf\\ConfigNacos\\": "src/"
  1771. }
  1772. },
  1773. "notification-url": "https://packagist.org/downloads/",
  1774. "license": [
  1775. "MIT"
  1776. ],
  1777. "description": "A nacos adapter for config center component.",
  1778. "homepage": "https://hyperf.io",
  1779. "keywords": [
  1780. "hyperf",
  1781. "nacos",
  1782. "php",
  1783. "swoole"
  1784. ],
  1785. "support": {
  1786. "docs": "https://hyperf.wiki",
  1787. "issues": "https://github.com/hyperf/hyperf/issues",
  1788. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1789. "source": "https://github.com/hyperf/hyperf"
  1790. },
  1791. "funding": [
  1792. {
  1793. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1794. "type": "custom"
  1795. },
  1796. {
  1797. "url": "https://opencollective.com/hyperf",
  1798. "type": "open_collective"
  1799. }
  1800. ],
  1801. "time": "2024-03-23T11:28:51+00:00"
  1802. },
  1803. {
  1804. "name": "hyperf/constants",
  1805. "version": "v3.1.25",
  1806. "source": {
  1807. "type": "git",
  1808. "url": "https://github.com/hyperf/constants.git",
  1809. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a"
  1810. },
  1811. "dist": {
  1812. "type": "zip",
  1813. "url": "https://api.github.com/repos/hyperf/constants/zipball/6749edf0391025e1664b3baf1253f1c4e94c928a",
  1814. "reference": "6749edf0391025e1664b3baf1253f1c4e94c928a",
  1815. "shasum": ""
  1816. },
  1817. "require": {
  1818. "hyperf/di": "~3.1.0",
  1819. "hyperf/support": "~3.1.0",
  1820. "hyperf/utils": "~3.1.0",
  1821. "php": ">=8.1"
  1822. },
  1823. "suggest": {
  1824. "hyperf/translation": "Required to use translation."
  1825. },
  1826. "type": "library",
  1827. "extra": {
  1828. "branch-alias": {
  1829. "dev-master": "3.1-dev"
  1830. },
  1831. "hyperf": {
  1832. "config": "Hyperf\\Constants\\ConfigProvider"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "Hyperf\\Constants\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "description": "A constants component for hyperf.",
  1845. "homepage": "https://hyperf.io",
  1846. "keywords": [
  1847. "constants",
  1848. "hyperf",
  1849. "php"
  1850. ],
  1851. "support": {
  1852. "docs": "https://hyperf.wiki",
  1853. "issues": "https://github.com/hyperf/hyperf/issues",
  1854. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1855. "source": "https://github.com/hyperf/hyperf"
  1856. },
  1857. "funding": [
  1858. {
  1859. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1860. "type": "custom"
  1861. },
  1862. {
  1863. "url": "https://opencollective.com/hyperf",
  1864. "type": "open_collective"
  1865. }
  1866. ],
  1867. "time": "2024-05-30T11:07:42+00:00"
  1868. },
  1869. {
  1870. "name": "hyperf/consul",
  1871. "version": "v3.1.22",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/hyperf/consul.git",
  1875. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/hyperf/consul/zipball/6e5e6936513c76812d6c1a066530543b15aec5e8",
  1880. "reference": "6e5e6936513c76812d6c1a066530543b15aec5e8",
  1881. "shasum": ""
  1882. },
  1883. "require": {
  1884. "guzzlehttp/guzzle": "^6.3|^7.0",
  1885. "php": ">=8.1"
  1886. },
  1887. "require-dev": {
  1888. "hyperf/guzzle": "~3.1.0"
  1889. },
  1890. "type": "library",
  1891. "extra": {
  1892. "branch-alias": {
  1893. "dev-master": "3.1-dev"
  1894. },
  1895. "hyperf": {
  1896. "config": "Hyperf\\Consul\\ConfigProvider"
  1897. }
  1898. },
  1899. "autoload": {
  1900. "psr-4": {
  1901. "Hyperf\\Consul\\": "src/"
  1902. }
  1903. },
  1904. "notification-url": "https://packagist.org/downloads/",
  1905. "license": [
  1906. "MIT"
  1907. ],
  1908. "description": "A Consul Client for Hyperf.",
  1909. "homepage": "https://hyperf.io",
  1910. "keywords": [
  1911. "consul",
  1912. "consul-client",
  1913. "hyperf",
  1914. "php",
  1915. "swoole"
  1916. ],
  1917. "support": {
  1918. "docs": "https://hyperf.wiki",
  1919. "issues": "https://github.com/hyperf/hyperf/issues",
  1920. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1921. "source": "https://github.com/hyperf/hyperf"
  1922. },
  1923. "funding": [
  1924. {
  1925. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1926. "type": "custom"
  1927. },
  1928. {
  1929. "url": "https://opencollective.com/hyperf",
  1930. "type": "open_collective"
  1931. }
  1932. ],
  1933. "time": "2024-05-15T06:42:24+00:00"
  1934. },
  1935. {
  1936. "name": "hyperf/context",
  1937. "version": "v3.1.15",
  1938. "source": {
  1939. "type": "git",
  1940. "url": "https://github.com/hyperf/context.git",
  1941. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69"
  1942. },
  1943. "dist": {
  1944. "type": "zip",
  1945. "url": "https://api.github.com/repos/hyperf/context/zipball/ad913fd50eb5f738c038e172c120bc6956c0da69",
  1946. "reference": "ad913fd50eb5f738c038e172c120bc6956c0da69",
  1947. "shasum": ""
  1948. },
  1949. "require": {
  1950. "hyperf/engine": "^2.0",
  1951. "php": ">=8.1"
  1952. },
  1953. "suggest": {
  1954. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "branch-alias": {
  1959. "dev-master": "3.1-dev"
  1960. }
  1961. },
  1962. "autoload": {
  1963. "psr-4": {
  1964. "Hyperf\\Context\\": "src/"
  1965. }
  1966. },
  1967. "notification-url": "https://packagist.org/downloads/",
  1968. "license": [
  1969. "MIT"
  1970. ],
  1971. "description": "A coroutine/application context library.",
  1972. "homepage": "https://hyperf.io",
  1973. "keywords": [
  1974. "Context",
  1975. "hyperf",
  1976. "php",
  1977. "swoole"
  1978. ],
  1979. "support": {
  1980. "docs": "https://hyperf.wiki",
  1981. "issues": "https://github.com/hyperf/hyperf/issues",
  1982. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1983. "source": "https://github.com/hyperf/hyperf"
  1984. },
  1985. "funding": [
  1986. {
  1987. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1988. "type": "custom"
  1989. },
  1990. {
  1991. "url": "https://opencollective.com/hyperf",
  1992. "type": "open_collective"
  1993. }
  1994. ],
  1995. "time": "2024-03-23T11:28:51+00:00"
  1996. },
  1997. {
  1998. "name": "hyperf/contract",
  1999. "version": "v3.1.15",
  2000. "source": {
  2001. "type": "git",
  2002. "url": "https://github.com/hyperf/contract.git",
  2003. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945"
  2004. },
  2005. "dist": {
  2006. "type": "zip",
  2007. "url": "https://api.github.com/repos/hyperf/contract/zipball/9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  2008. "reference": "9950abe963cc6b30c6d3506fa5b3adbd58cb1945",
  2009. "shasum": ""
  2010. },
  2011. "require": {
  2012. "php": ">=8.1"
  2013. },
  2014. "type": "library",
  2015. "extra": {
  2016. "branch-alias": {
  2017. "dev-master": "3.1-dev"
  2018. }
  2019. },
  2020. "autoload": {
  2021. "psr-4": {
  2022. "Hyperf\\Contract\\": "src/"
  2023. }
  2024. },
  2025. "notification-url": "https://packagist.org/downloads/",
  2026. "license": [
  2027. "MIT"
  2028. ],
  2029. "description": "The contracts of Hyperf.",
  2030. "homepage": "https://hyperf.io",
  2031. "keywords": [
  2032. "hyperf",
  2033. "php",
  2034. "swoole"
  2035. ],
  2036. "support": {
  2037. "docs": "https://hyperf.wiki",
  2038. "issues": "https://github.com/hyperf/hyperf/issues",
  2039. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2040. "source": "https://github.com/hyperf/hyperf"
  2041. },
  2042. "funding": [
  2043. {
  2044. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2045. "type": "custom"
  2046. },
  2047. {
  2048. "url": "https://opencollective.com/hyperf",
  2049. "type": "open_collective"
  2050. }
  2051. ],
  2052. "time": "2024-03-23T11:28:51+00:00"
  2053. },
  2054. {
  2055. "name": "hyperf/coordinator",
  2056. "version": "v3.1.21",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://github.com/hyperf/coordinator.git",
  2060. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  2065. "reference": "caf5a70f96b7f22950e1caa3ba74f72c8382493c",
  2066. "shasum": ""
  2067. },
  2068. "require": {
  2069. "hyperf/engine": "^2.0",
  2070. "php": ">=8.1"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "branch-alias": {
  2075. "dev-master": "3.1-dev"
  2076. }
  2077. },
  2078. "autoload": {
  2079. "files": [
  2080. "src/Functions.php"
  2081. ],
  2082. "psr-4": {
  2083. "Hyperf\\Coordinator\\": "src/"
  2084. }
  2085. },
  2086. "notification-url": "https://packagist.org/downloads/",
  2087. "license": [
  2088. "MIT"
  2089. ],
  2090. "description": "Hyperf Coordinator",
  2091. "homepage": "https://hyperf.io",
  2092. "keywords": [
  2093. "Coordinator",
  2094. "hyperf",
  2095. "php",
  2096. "swoole"
  2097. ],
  2098. "support": {
  2099. "docs": "https://hyperf.wiki",
  2100. "issues": "https://github.com/hyperf/hyperf/issues",
  2101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2102. "source": "https://github.com/hyperf/hyperf"
  2103. },
  2104. "funding": [
  2105. {
  2106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2107. "type": "custom"
  2108. },
  2109. {
  2110. "url": "https://opencollective.com/hyperf",
  2111. "type": "open_collective"
  2112. }
  2113. ],
  2114. "time": "2024-05-09T02:35:08+00:00"
  2115. },
  2116. {
  2117. "name": "hyperf/coroutine",
  2118. "version": "v3.1.15",
  2119. "source": {
  2120. "type": "git",
  2121. "url": "https://github.com/hyperf/coroutine.git",
  2122. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1"
  2123. },
  2124. "dist": {
  2125. "type": "zip",
  2126. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/8f4c573a9457646db3e629dacabe064eebaf8cc1",
  2127. "reference": "8f4c573a9457646db3e629dacabe064eebaf8cc1",
  2128. "shasum": ""
  2129. },
  2130. "require": {
  2131. "hyperf/context": "~3.1.0",
  2132. "hyperf/contract": "~3.1.0",
  2133. "hyperf/engine": "^2.0",
  2134. "php": ">=8.1"
  2135. },
  2136. "type": "library",
  2137. "extra": {
  2138. "branch-alias": {
  2139. "dev-master": "3.1-dev"
  2140. }
  2141. },
  2142. "autoload": {
  2143. "files": [
  2144. "src/Functions.php"
  2145. ],
  2146. "psr-4": {
  2147. "Hyperf\\Coroutine\\": "src/"
  2148. }
  2149. },
  2150. "notification-url": "https://packagist.org/downloads/",
  2151. "license": [
  2152. "MIT"
  2153. ],
  2154. "description": "Hyperf Coroutine",
  2155. "homepage": "https://hyperf.io",
  2156. "keywords": [
  2157. "coroutine",
  2158. "hyperf",
  2159. "php",
  2160. "swoole"
  2161. ],
  2162. "support": {
  2163. "docs": "https://hyperf.wiki",
  2164. "issues": "https://github.com/hyperf/hyperf/issues",
  2165. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2166. "source": "https://github.com/hyperf/hyperf"
  2167. },
  2168. "funding": [
  2169. {
  2170. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2171. "type": "custom"
  2172. },
  2173. {
  2174. "url": "https://opencollective.com/hyperf",
  2175. "type": "open_collective"
  2176. }
  2177. ],
  2178. "time": "2024-03-23T11:28:51+00:00"
  2179. },
  2180. {
  2181. "name": "hyperf/database",
  2182. "version": "v3.1.25",
  2183. "source": {
  2184. "type": "git",
  2185. "url": "https://github.com/hyperf/database.git",
  2186. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802"
  2187. },
  2188. "dist": {
  2189. "type": "zip",
  2190. "url": "https://api.github.com/repos/hyperf/database/zipball/3e69ba93d8c66c431bed94e8dab479964d471802",
  2191. "reference": "3e69ba93d8c66c431bed94e8dab479964d471802",
  2192. "shasum": ""
  2193. },
  2194. "require": {
  2195. "hyperf/code-parser": "~3.1.0",
  2196. "hyperf/collection": "~3.1.0",
  2197. "hyperf/macroable": "~3.1.0",
  2198. "hyperf/support": "~3.1.0",
  2199. "hyperf/tappable": "~3.1.0",
  2200. "hyperf/utils": "~3.1.0",
  2201. "nesbot/carbon": "^2.0",
  2202. "php": ">=8.1",
  2203. "psr/container": "^1.0|^2.0",
  2204. "psr/event-dispatcher": "^1.0"
  2205. },
  2206. "suggest": {
  2207. "doctrine/dbal": "Required to rename columns (^3.0).",
  2208. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2209. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "3.1-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Hyperf\\Database\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "description": "A flexible database library.",
  2227. "homepage": "https://hyperf.io",
  2228. "keywords": [
  2229. "database",
  2230. "hyperf",
  2231. "php"
  2232. ],
  2233. "support": {
  2234. "docs": "https://hyperf.wiki",
  2235. "issues": "https://github.com/hyperf/hyperf/issues",
  2236. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2237. "source": "https://github.com/hyperf/hyperf"
  2238. },
  2239. "funding": [
  2240. {
  2241. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2242. "type": "custom"
  2243. },
  2244. {
  2245. "url": "https://opencollective.com/hyperf",
  2246. "type": "open_collective"
  2247. }
  2248. ],
  2249. "time": "2024-06-03T07:00:15+00:00"
  2250. },
  2251. {
  2252. "name": "hyperf/db-connection",
  2253. "version": "v3.1.15",
  2254. "source": {
  2255. "type": "git",
  2256. "url": "https://github.com/hyperf/db-connection.git",
  2257. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0"
  2258. },
  2259. "dist": {
  2260. "type": "zip",
  2261. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/bfe44b0365a555fb4b947df37b662fce26b905c0",
  2262. "reference": "bfe44b0365a555fb4b947df37b662fce26b905c0",
  2263. "shasum": ""
  2264. },
  2265. "require": {
  2266. "hyperf/database": "~3.1.0",
  2267. "hyperf/di": "~3.1.0",
  2268. "hyperf/framework": "~3.1.0",
  2269. "hyperf/model-listener": "~3.1.0",
  2270. "hyperf/pool": "~3.1.0",
  2271. "hyperf/support": "~3.1.0",
  2272. "hyperf/utils": "~3.1.0",
  2273. "php": ">=8.1",
  2274. "psr/container": "^1.0|^2.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "3.1-dev"
  2280. },
  2281. "hyperf": {
  2282. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\DbConnection\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "A hyperf db connection handler for hyperf/database.",
  2295. "homepage": "https://hyperf.io",
  2296. "keywords": [
  2297. "Connection",
  2298. "database",
  2299. "hyperf",
  2300. "php"
  2301. ],
  2302. "support": {
  2303. "docs": "https://hyperf.wiki",
  2304. "issues": "https://github.com/hyperf/hyperf/issues",
  2305. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2306. "source": "https://github.com/hyperf/hyperf"
  2307. },
  2308. "funding": [
  2309. {
  2310. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2311. "type": "custom"
  2312. },
  2313. {
  2314. "url": "https://opencollective.com/hyperf",
  2315. "type": "open_collective"
  2316. }
  2317. ],
  2318. "time": "2024-03-23T11:28:51+00:00"
  2319. },
  2320. {
  2321. "name": "hyperf/di",
  2322. "version": "v3.1.25",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/hyperf/di.git",
  2326. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/hyperf/di/zipball/4815738288b50096d3b908c0d4f0f7d97a741d75",
  2331. "reference": "4815738288b50096d3b908c0d4f0f7d97a741d75",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "doctrine/instantiator": "^1.0",
  2336. "hyperf/code-parser": "~3.1.0",
  2337. "hyperf/pipeline": "~3.1.0",
  2338. "hyperf/stdlib": "~3.1.0",
  2339. "hyperf/support": "~3.1.0",
  2340. "nikic/php-parser": "^4.1",
  2341. "php": ">=8.1",
  2342. "php-di/phpdoc-reader": "^2.2",
  2343. "psr/container": "^1.0|^2.0",
  2344. "symfony/finder": "^5.0|^6.0|^7.0",
  2345. "vlucas/phpdotenv": "^5.0"
  2346. },
  2347. "suggest": {
  2348. "ext-pcntl": "Required to scan annotations.",
  2349. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2350. },
  2351. "type": "library",
  2352. "extra": {
  2353. "branch-alias": {
  2354. "dev-master": "3.1-dev"
  2355. },
  2356. "hyperf": {
  2357. "config": "Hyperf\\Di\\ConfigProvider"
  2358. }
  2359. },
  2360. "autoload": {
  2361. "psr-4": {
  2362. "Hyperf\\Di\\": "src/"
  2363. }
  2364. },
  2365. "notification-url": "https://packagist.org/downloads/",
  2366. "license": [
  2367. "MIT"
  2368. ],
  2369. "description": "A DI for Hyperf.",
  2370. "homepage": "https://hyperf.io",
  2371. "keywords": [
  2372. "annotation",
  2373. "di",
  2374. "hyperf",
  2375. "php",
  2376. "swoole"
  2377. ],
  2378. "support": {
  2379. "docs": "https://hyperf.wiki",
  2380. "issues": "https://github.com/hyperf/hyperf/issues",
  2381. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2382. "source": "https://github.com/hyperf/hyperf"
  2383. },
  2384. "funding": [
  2385. {
  2386. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2387. "type": "custom"
  2388. },
  2389. {
  2390. "url": "https://opencollective.com/hyperf",
  2391. "type": "open_collective"
  2392. }
  2393. ],
  2394. "time": "2024-06-03T06:37:01+00:00"
  2395. },
  2396. {
  2397. "name": "hyperf/dispatcher",
  2398. "version": "v3.1.15",
  2399. "source": {
  2400. "type": "git",
  2401. "url": "https://github.com/hyperf/dispatcher.git",
  2402. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328"
  2403. },
  2404. "dist": {
  2405. "type": "zip",
  2406. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/6a6f0f149081291664ff14bf34aecf2c01f89328",
  2407. "reference": "6a6f0f149081291664ff14bf34aecf2c01f89328",
  2408. "shasum": ""
  2409. },
  2410. "require": {
  2411. "hyperf/contract": "~3.1.0",
  2412. "php": ">=8.1",
  2413. "psr/container": "^1.0|^2.0",
  2414. "psr/http-message": "^1.0|^2.0",
  2415. "psr/http-server-middleware": "^1.0"
  2416. },
  2417. "type": "library",
  2418. "extra": {
  2419. "branch-alias": {
  2420. "dev-master": "3.1-dev"
  2421. },
  2422. "hyperf": {
  2423. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2424. }
  2425. },
  2426. "autoload": {
  2427. "psr-4": {
  2428. "Hyperf\\Dispatcher\\": "src/"
  2429. }
  2430. },
  2431. "notification-url": "https://packagist.org/downloads/",
  2432. "license": [
  2433. "MIT"
  2434. ],
  2435. "description": "A HTTP Server for Hyperf.",
  2436. "homepage": "https://hyperf.io",
  2437. "keywords": [
  2438. "dispatcher",
  2439. "filter",
  2440. "hyperf",
  2441. "middleware",
  2442. "php",
  2443. "swoole"
  2444. ],
  2445. "support": {
  2446. "docs": "https://hyperf.wiki",
  2447. "issues": "https://github.com/hyperf/hyperf/issues",
  2448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2449. "source": "https://github.com/hyperf/hyperf"
  2450. },
  2451. "funding": [
  2452. {
  2453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2454. "type": "custom"
  2455. },
  2456. {
  2457. "url": "https://opencollective.com/hyperf",
  2458. "type": "open_collective"
  2459. }
  2460. ],
  2461. "time": "2024-03-23T11:28:51+00:00"
  2462. },
  2463. {
  2464. "name": "hyperf/engine",
  2465. "version": "v2.11.0",
  2466. "source": {
  2467. "type": "git",
  2468. "url": "https://github.com/hyperf/engine.git",
  2469. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2470. },
  2471. "dist": {
  2472. "type": "zip",
  2473. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2474. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2475. "shasum": ""
  2476. },
  2477. "require": {
  2478. "hyperf/engine-contract": "~1.10.0",
  2479. "php": ">=8.0"
  2480. },
  2481. "conflict": {
  2482. "ext-swoole": "<5.0"
  2483. },
  2484. "require-dev": {
  2485. "friendsofphp/php-cs-fixer": "^3.0",
  2486. "hyperf/guzzle": "^3.0",
  2487. "hyperf/http-message": "^3.0",
  2488. "mockery/mockery": "^1.5",
  2489. "phpstan/phpstan": "^1.0",
  2490. "phpunit/phpunit": "^9.4",
  2491. "swoole/ide-helper": "5.*"
  2492. },
  2493. "suggest": {
  2494. "ext-sockets": "*",
  2495. "ext-swoole": ">=5.0",
  2496. "hyperf/http-message": "Required to use ResponseEmitter.",
  2497. "psr/http-message": "Required to use WebSocket Frame."
  2498. },
  2499. "type": "library",
  2500. "extra": {
  2501. "branch-alias": {
  2502. "dev-master": "2.11-dev"
  2503. },
  2504. "hyperf": {
  2505. "config": "Hyperf\\Engine\\ConfigProvider"
  2506. }
  2507. },
  2508. "autoload": {
  2509. "files": [
  2510. "src/Functions.php"
  2511. ],
  2512. "psr-4": {
  2513. "Hyperf\\Engine\\": "src/"
  2514. }
  2515. },
  2516. "notification-url": "https://packagist.org/downloads/",
  2517. "license": [
  2518. "MIT"
  2519. ],
  2520. "description": "Coroutine engine provided by swoole.",
  2521. "keywords": [
  2522. "engine",
  2523. "hyperf",
  2524. "php",
  2525. "swoole"
  2526. ],
  2527. "support": {
  2528. "issues": "https://github.com/hyperf/engine/issues",
  2529. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2530. },
  2531. "funding": [
  2532. {
  2533. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2534. "type": "custom"
  2535. },
  2536. {
  2537. "url": "https://opencollective.com/hyperf",
  2538. "type": "open_collective"
  2539. }
  2540. ],
  2541. "time": "2024-04-17T13:36:28+00:00"
  2542. },
  2543. {
  2544. "name": "hyperf/engine-contract",
  2545. "version": "v1.10.1",
  2546. "source": {
  2547. "type": "git",
  2548. "url": "https://github.com/hyperf/engine-contract.git",
  2549. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2550. },
  2551. "dist": {
  2552. "type": "zip",
  2553. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2554. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2555. "shasum": ""
  2556. },
  2557. "require": {
  2558. "php": ">=8.0"
  2559. },
  2560. "require-dev": {
  2561. "friendsofphp/php-cs-fixer": "^3.0",
  2562. "mockery/mockery": "^1.0",
  2563. "phpstan/phpstan": "^1.0",
  2564. "phpunit/phpunit": ">=7.0",
  2565. "psr/http-message": "^1.0",
  2566. "swoole/ide-helper": "^4.5"
  2567. },
  2568. "suggest": {
  2569. "psr/http-message": "Required to use WebSocket Frame."
  2570. },
  2571. "type": "library",
  2572. "extra": {
  2573. "branch-alias": {
  2574. "dev-master": "1.9-dev"
  2575. }
  2576. },
  2577. "autoload": {
  2578. "psr-4": {
  2579. "Hyperf\\Engine\\Contract\\": "src/"
  2580. }
  2581. },
  2582. "notification-url": "https://packagist.org/downloads/",
  2583. "license": [
  2584. "MIT"
  2585. ],
  2586. "description": "Contract for Coroutine Engine",
  2587. "keywords": [
  2588. "contract",
  2589. "coroutine",
  2590. "engine",
  2591. "hyperf",
  2592. "php"
  2593. ],
  2594. "support": {
  2595. "issues": "https://github.com/hyperf/engine-contract/issues",
  2596. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2597. },
  2598. "funding": [
  2599. {
  2600. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2601. "type": "custom"
  2602. },
  2603. {
  2604. "url": "https://opencollective.com/hyperf",
  2605. "type": "open_collective"
  2606. }
  2607. ],
  2608. "time": "2024-04-17T13:34:51+00:00"
  2609. },
  2610. {
  2611. "name": "hyperf/event",
  2612. "version": "v3.1.15",
  2613. "source": {
  2614. "type": "git",
  2615. "url": "https://github.com/hyperf/event.git",
  2616. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9"
  2617. },
  2618. "dist": {
  2619. "type": "zip",
  2620. "url": "https://api.github.com/repos/hyperf/event/zipball/8d008682c028e958197589e90232bb2a1d3c77d9",
  2621. "reference": "8d008682c028e958197589e90232bb2a1d3c77d9",
  2622. "shasum": ""
  2623. },
  2624. "require": {
  2625. "hyperf/contract": "~3.1.0",
  2626. "hyperf/stdlib": "~3.1.0",
  2627. "php": ">=8.1",
  2628. "psr/event-dispatcher": "^1.0"
  2629. },
  2630. "suggest": {
  2631. "hyperf/di": "Required to use annotatioins."
  2632. },
  2633. "type": "library",
  2634. "extra": {
  2635. "branch-alias": {
  2636. "dev-master": "3.1-dev"
  2637. },
  2638. "hyperf": {
  2639. "config": "Hyperf\\Event\\ConfigProvider"
  2640. }
  2641. },
  2642. "autoload": {
  2643. "psr-4": {
  2644. "Hyperf\\Event\\": "src/"
  2645. }
  2646. },
  2647. "notification-url": "https://packagist.org/downloads/",
  2648. "license": [
  2649. "MIT"
  2650. ],
  2651. "description": "an event manager that implements PSR-14.",
  2652. "homepage": "https://hyperf.io",
  2653. "keywords": [
  2654. "event",
  2655. "hyperf",
  2656. "php",
  2657. "swoole"
  2658. ],
  2659. "support": {
  2660. "docs": "https://hyperf.wiki",
  2661. "issues": "https://github.com/hyperf/hyperf/issues",
  2662. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2663. "source": "https://github.com/hyperf/hyperf"
  2664. },
  2665. "funding": [
  2666. {
  2667. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2668. "type": "custom"
  2669. },
  2670. {
  2671. "url": "https://opencollective.com/hyperf",
  2672. "type": "open_collective"
  2673. }
  2674. ],
  2675. "time": "2024-03-23T11:28:51+00:00"
  2676. },
  2677. {
  2678. "name": "hyperf/exception-handler",
  2679. "version": "v3.1.22",
  2680. "source": {
  2681. "type": "git",
  2682. "url": "https://github.com/hyperf/exception-handler.git",
  2683. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8"
  2684. },
  2685. "dist": {
  2686. "type": "zip",
  2687. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/6eefe07081ffaa0d6534273caa96722c606da6a8",
  2688. "reference": "6eefe07081ffaa0d6534273caa96722c606da6a8",
  2689. "shasum": ""
  2690. },
  2691. "require": {
  2692. "hyperf/context": "~3.1.0",
  2693. "hyperf/contract": "~3.1.0",
  2694. "hyperf/dispatcher": "~3.1.0",
  2695. "hyperf/http-message": "~3.1.0",
  2696. "hyperf/stdlib": "~3.1.0",
  2697. "hyperf/support": "~3.1.0",
  2698. "php": ">=8.1",
  2699. "psr/container": "^1.0|^2.0",
  2700. "psr/http-message": "^1.0|^2.0",
  2701. "swow/psr7-plus": "^1.0"
  2702. },
  2703. "suggest": {
  2704. "hyperf/di": "Required to use #[ExceptionHandler]",
  2705. "hyperf/event": "Required to use listeners",
  2706. "hyperf/framework": "Required to use listeners",
  2707. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2708. },
  2709. "type": "library",
  2710. "extra": {
  2711. "branch-alias": {
  2712. "dev-master": "3.1-dev"
  2713. },
  2714. "hyperf": {
  2715. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2716. }
  2717. },
  2718. "autoload": {
  2719. "psr-4": {
  2720. "Hyperf\\ExceptionHandler\\": "src/"
  2721. }
  2722. },
  2723. "notification-url": "https://packagist.org/downloads/",
  2724. "license": [
  2725. "MIT"
  2726. ],
  2727. "description": "Exception handler for hyperf",
  2728. "homepage": "https://hyperf.io",
  2729. "keywords": [
  2730. "exception-handler",
  2731. "php",
  2732. "swoole"
  2733. ],
  2734. "support": {
  2735. "docs": "https://hyperf.wiki",
  2736. "issues": "https://github.com/hyperf/hyperf/issues",
  2737. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2738. "source": "https://github.com/hyperf/hyperf"
  2739. },
  2740. "funding": [
  2741. {
  2742. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2743. "type": "custom"
  2744. },
  2745. {
  2746. "url": "https://opencollective.com/hyperf",
  2747. "type": "open_collective"
  2748. }
  2749. ],
  2750. "time": "2024-05-15T07:12:41+00:00"
  2751. },
  2752. {
  2753. "name": "hyperf/framework",
  2754. "version": "v3.1.23",
  2755. "source": {
  2756. "type": "git",
  2757. "url": "https://github.com/hyperf/framework.git",
  2758. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c"
  2759. },
  2760. "dist": {
  2761. "type": "zip",
  2762. "url": "https://api.github.com/repos/hyperf/framework/zipball/c40d529fafc197c67a64e9ca918498d417d4102c",
  2763. "reference": "c40d529fafc197c67a64e9ca918498d417d4102c",
  2764. "shasum": ""
  2765. },
  2766. "require": {
  2767. "fig/http-message-util": "^1.1.2",
  2768. "hyperf/contract": "~3.1.0",
  2769. "hyperf/coordinator": "~3.1.0",
  2770. "hyperf/coroutine": "~3.1.0",
  2771. "php": ">=8.1",
  2772. "psr/container": "^1.0|^2.0",
  2773. "psr/event-dispatcher": "^1.0",
  2774. "psr/log": "^1.0|^2.0|^3.0"
  2775. },
  2776. "suggest": {
  2777. "ext-swoole": "Required to use swoole engine.",
  2778. "hyperf/command": "Required to use Command annotation.",
  2779. "hyperf/di": "Required to use Command annotation.",
  2780. "hyperf/dispatcher": "Required to use BootApplication event.",
  2781. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2782. },
  2783. "type": "library",
  2784. "extra": {
  2785. "branch-alias": {
  2786. "dev-master": "3.1-dev"
  2787. },
  2788. "hyperf": {
  2789. "config": "Hyperf\\Framework\\ConfigProvider"
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Hyperf\\Framework\\": "src/"
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2802. "homepage": "https://hyperf.io",
  2803. "keywords": [
  2804. "Microservice",
  2805. "framework",
  2806. "hyperf",
  2807. "middleware",
  2808. "php",
  2809. "swoole"
  2810. ],
  2811. "support": {
  2812. "docs": "https://hyperf.wiki",
  2813. "issues": "https://github.com/hyperf/hyperf/issues",
  2814. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2815. "source": "https://github.com/hyperf/hyperf"
  2816. },
  2817. "funding": [
  2818. {
  2819. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2820. "type": "custom"
  2821. },
  2822. {
  2823. "url": "https://opencollective.com/hyperf",
  2824. "type": "open_collective"
  2825. }
  2826. ],
  2827. "time": "2024-05-21T05:43:48+00:00"
  2828. },
  2829. {
  2830. "name": "hyperf/guzzle",
  2831. "version": "v3.1.15",
  2832. "source": {
  2833. "type": "git",
  2834. "url": "https://github.com/hyperf/guzzle.git",
  2835. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf"
  2836. },
  2837. "dist": {
  2838. "type": "zip",
  2839. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/1281abe876925b8ef64a7372d53701fdb9a519cf",
  2840. "reference": "1281abe876925b8ef64a7372d53701fdb9a519cf",
  2841. "shasum": ""
  2842. },
  2843. "require": {
  2844. "guzzlehttp/guzzle": "^6.3|^7.0",
  2845. "php": ">=8.1",
  2846. "psr/container": "^1.0|^2.0",
  2847. "psr/http-message": "^1.0|^2.0"
  2848. },
  2849. "suggest": {
  2850. "ext-curl": "Required for CURL handler support",
  2851. "hyperf/pool": "Required to use pool handler."
  2852. },
  2853. "type": "library",
  2854. "extra": {
  2855. "branch-alias": {
  2856. "dev-master": "3.1-dev"
  2857. },
  2858. "hyperf": {
  2859. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2860. }
  2861. },
  2862. "autoload": {
  2863. "psr-4": {
  2864. "Hyperf\\Guzzle\\": "src/"
  2865. }
  2866. },
  2867. "notification-url": "https://packagist.org/downloads/",
  2868. "license": [
  2869. "MIT"
  2870. ],
  2871. "description": "Swoole coroutine handler for guzzle",
  2872. "keywords": [
  2873. "Guzzle",
  2874. "handler",
  2875. "php",
  2876. "swoole"
  2877. ],
  2878. "support": {
  2879. "issues": "https://github.com/hyperf/guzzle/issues",
  2880. "source": "https://github.com/hyperf/guzzle/tree/v3.1.15"
  2881. },
  2882. "funding": [
  2883. {
  2884. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2885. "type": "custom"
  2886. },
  2887. {
  2888. "url": "https://opencollective.com/hyperf",
  2889. "type": "open_collective"
  2890. }
  2891. ],
  2892. "time": "2024-03-23T11:28:51+00:00"
  2893. },
  2894. {
  2895. "name": "hyperf/http-message",
  2896. "version": "v3.1.25",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://github.com/hyperf/http-message.git",
  2900. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://api.github.com/repos/hyperf/http-message/zipball/6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2905. "reference": "6a7775b96fe8d65e87e4d294a8474c1e31321ac1",
  2906. "shasum": ""
  2907. },
  2908. "require": {
  2909. "hyperf/codec": "~3.1.0",
  2910. "hyperf/engine": "^2.11",
  2911. "hyperf/support": "~3.1.0",
  2912. "laminas/laminas-mime": "^2.7",
  2913. "php": ">=8.1",
  2914. "psr/http-message": "^1.0|^2.0",
  2915. "swow/psr7-plus": "^1.0"
  2916. },
  2917. "suggest": {
  2918. "psr/container": "Required to replace RequestParserInterface."
  2919. },
  2920. "type": "library",
  2921. "extra": {
  2922. "branch-alias": {
  2923. "dev-master": "3.1-dev"
  2924. },
  2925. "hyperf": {
  2926. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2927. }
  2928. },
  2929. "autoload": {
  2930. "psr-4": {
  2931. "Hyperf\\HttpMessage\\": "src/"
  2932. }
  2933. },
  2934. "notification-url": "https://packagist.org/downloads/",
  2935. "license": [
  2936. "MIT"
  2937. ],
  2938. "description": "microservice framework base on swoole",
  2939. "keywords": [
  2940. "http-message",
  2941. "hyperf",
  2942. "php",
  2943. "swoole"
  2944. ],
  2945. "support": {
  2946. "issues": "https://github.com/hyperf/http-message/issues",
  2947. "source": "https://github.com/hyperf/http-message/tree/v3.1.25"
  2948. },
  2949. "funding": [
  2950. {
  2951. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2952. "type": "custom"
  2953. },
  2954. {
  2955. "url": "https://opencollective.com/hyperf",
  2956. "type": "open_collective"
  2957. }
  2958. ],
  2959. "time": "2024-06-05T10:09:59+00:00"
  2960. },
  2961. {
  2962. "name": "hyperf/http-server",
  2963. "version": "v3.1.17",
  2964. "source": {
  2965. "type": "git",
  2966. "url": "https://github.com/hyperf/http-server.git",
  2967. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424"
  2968. },
  2969. "dist": {
  2970. "type": "zip",
  2971. "url": "https://api.github.com/repos/hyperf/http-server/zipball/d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2972. "reference": "d2c633123dd8e7d5b2bcd1b24b7047fe3adc6424",
  2973. "shasum": ""
  2974. },
  2975. "require": {
  2976. "hyperf/codec": "~3.1.0",
  2977. "hyperf/collection": "~3.1.0",
  2978. "hyperf/context": "~3.1.0",
  2979. "hyperf/contract": "~3.1.0",
  2980. "hyperf/coroutine": "~3.1.0",
  2981. "hyperf/dispatcher": "~3.1.0",
  2982. "hyperf/event": "~3.1.0",
  2983. "hyperf/exception-handler": "~3.1.0",
  2984. "hyperf/http-message": "~3.1.0",
  2985. "hyperf/macroable": "~3.1.0",
  2986. "hyperf/serializer": "~3.1.0",
  2987. "hyperf/server": "~3.1.0",
  2988. "hyperf/stdlib": "~3.1.0",
  2989. "hyperf/support": "~3.1.0",
  2990. "nikic/fast-route": "^1.3",
  2991. "php": ">=8.1",
  2992. "psr/container": "^1.0|^2.0",
  2993. "swow/psr7-plus": "^1.0"
  2994. },
  2995. "suggest": {
  2996. "hyperf/di": "Required to use annotations."
  2997. },
  2998. "type": "library",
  2999. "extra": {
  3000. "branch-alias": {
  3001. "dev-master": "3.1-dev"
  3002. },
  3003. "hyperf": {
  3004. "config": "Hyperf\\HttpServer\\ConfigProvider"
  3005. }
  3006. },
  3007. "autoload": {
  3008. "psr-4": {
  3009. "Hyperf\\HttpServer\\": "src/"
  3010. }
  3011. },
  3012. "notification-url": "https://packagist.org/downloads/",
  3013. "license": [
  3014. "MIT"
  3015. ],
  3016. "description": "A HTTP Server for Hyperf.",
  3017. "homepage": "https://hyperf.io",
  3018. "keywords": [
  3019. "http",
  3020. "http-server",
  3021. "hyperf",
  3022. "php",
  3023. "swoole"
  3024. ],
  3025. "support": {
  3026. "docs": "https://hyperf.wiki",
  3027. "issues": "https://github.com/hyperf/hyperf/issues",
  3028. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3029. "source": "https://github.com/hyperf/hyperf"
  3030. },
  3031. "funding": [
  3032. {
  3033. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3034. "type": "custom"
  3035. },
  3036. {
  3037. "url": "https://opencollective.com/hyperf",
  3038. "type": "open_collective"
  3039. }
  3040. ],
  3041. "time": "2024-04-08T07:53:54+00:00"
  3042. },
  3043. {
  3044. "name": "hyperf/json-rpc",
  3045. "version": "v3.1.23",
  3046. "source": {
  3047. "type": "git",
  3048. "url": "https://github.com/hyperf/json-rpc.git",
  3049. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93"
  3050. },
  3051. "dist": {
  3052. "type": "zip",
  3053. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  3054. "reference": "234a3d8f9873a3d391cf9229fc5033638c5c9a93",
  3055. "shasum": ""
  3056. },
  3057. "require": {
  3058. "hyperf/codec": "~3.1.0",
  3059. "hyperf/context": "~3.1.0",
  3060. "hyperf/contract": "~3.1.0",
  3061. "hyperf/engine": "^2.0",
  3062. "hyperf/http-message": "~3.1.0",
  3063. "hyperf/load-balancer": "~3.1.0",
  3064. "hyperf/rpc": "~3.1.0",
  3065. "hyperf/serializer": "~3.1.0",
  3066. "hyperf/support": "~3.1.0",
  3067. "hyperf/utils": "~3.1.0",
  3068. "php": ">=8.1",
  3069. "psr/container": "^1.0|^2.0",
  3070. "swow/psr7-plus": "^1.0"
  3071. },
  3072. "suggest": {
  3073. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3074. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3075. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3076. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3077. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3078. },
  3079. "type": "library",
  3080. "extra": {
  3081. "branch-alias": {
  3082. "dev-master": "3.1-dev"
  3083. },
  3084. "hyperf": {
  3085. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "Hyperf\\JsonRpc\\": "src/"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "MIT"
  3096. ],
  3097. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3098. "homepage": "https://hyperf.io",
  3099. "keywords": [
  3100. "hyperf",
  3101. "json-rpc",
  3102. "php",
  3103. "swoole"
  3104. ],
  3105. "support": {
  3106. "docs": "https://hyperf.wiki",
  3107. "issues": "https://github.com/hyperf/hyperf/issues",
  3108. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3109. "source": "https://github.com/hyperf/hyperf"
  3110. },
  3111. "funding": [
  3112. {
  3113. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3114. "type": "custom"
  3115. },
  3116. {
  3117. "url": "https://opencollective.com/hyperf",
  3118. "type": "open_collective"
  3119. }
  3120. ],
  3121. "time": "2024-05-23T03:43:58+00:00"
  3122. },
  3123. {
  3124. "name": "hyperf/load-balancer",
  3125. "version": "v3.1.15",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://github.com/hyperf/load-balancer.git",
  3129. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  3134. "reference": "f4bfecb7e6ef7c7cca008c90510a9e2c7f0c8f5a",
  3135. "shasum": ""
  3136. },
  3137. "require": {
  3138. "hyperf/coordinator": "~3.1.0",
  3139. "hyperf/coroutine": "~3.1.0",
  3140. "markrogoyski/math-php": "^2.0",
  3141. "php": ">=8.1",
  3142. "psr/log": "^1.0|^2.0|^3.0"
  3143. },
  3144. "type": "library",
  3145. "extra": {
  3146. "branch-alias": {
  3147. "dev-master": "3.1-dev"
  3148. },
  3149. "hyperf": {
  3150. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3151. }
  3152. },
  3153. "autoload": {
  3154. "psr-4": {
  3155. "Hyperf\\LoadBalancer\\": "src/"
  3156. }
  3157. },
  3158. "notification-url": "https://packagist.org/downloads/",
  3159. "license": [
  3160. "MIT"
  3161. ],
  3162. "description": "A load balancer library for Hyperf.",
  3163. "homepage": "https://hyperf.io",
  3164. "keywords": [
  3165. "hyperf",
  3166. "load-balancer",
  3167. "php",
  3168. "swoole"
  3169. ],
  3170. "support": {
  3171. "docs": "https://hyperf.wiki",
  3172. "issues": "https://github.com/hyperf/hyperf/issues",
  3173. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3174. "source": "https://github.com/hyperf/hyperf"
  3175. },
  3176. "funding": [
  3177. {
  3178. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3179. "type": "custom"
  3180. },
  3181. {
  3182. "url": "https://opencollective.com/hyperf",
  3183. "type": "open_collective"
  3184. }
  3185. ],
  3186. "time": "2024-03-23T11:28:51+00:00"
  3187. },
  3188. {
  3189. "name": "hyperf/logger",
  3190. "version": "v3.1.15",
  3191. "source": {
  3192. "type": "git",
  3193. "url": "https://github.com/hyperf/logger.git",
  3194. "reference": "014f511449f84f6dea0cf368531ac07f31408496"
  3195. },
  3196. "dist": {
  3197. "type": "zip",
  3198. "url": "https://api.github.com/repos/hyperf/logger/zipball/014f511449f84f6dea0cf368531ac07f31408496",
  3199. "reference": "014f511449f84f6dea0cf368531ac07f31408496",
  3200. "shasum": ""
  3201. },
  3202. "require": {
  3203. "hyperf/contract": "~3.1.0",
  3204. "hyperf/support": "~3.1.0",
  3205. "hyperf/utils": "~3.1.0",
  3206. "monolog/monolog": "^2.7|^3.1",
  3207. "php": ">=8.1",
  3208. "psr/container": "^1.0|^2.0",
  3209. "psr/log": "^1.0|^2.0|^3.0"
  3210. },
  3211. "type": "library",
  3212. "extra": {
  3213. "branch-alias": {
  3214. "dev-master": "3.1-dev"
  3215. },
  3216. "hyperf": {
  3217. "config": "Hyperf\\Logger\\ConfigProvider"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "Hyperf\\Logger\\": "src/"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "MIT"
  3228. ],
  3229. "description": "A logger component for hyperf.",
  3230. "homepage": "https://hyperf.io",
  3231. "keywords": [
  3232. "hyperf",
  3233. "logger",
  3234. "php"
  3235. ],
  3236. "support": {
  3237. "docs": "https://hyperf.wiki",
  3238. "issues": "https://github.com/hyperf/hyperf/issues",
  3239. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3240. "source": "https://github.com/hyperf/hyperf"
  3241. },
  3242. "funding": [
  3243. {
  3244. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3245. "type": "custom"
  3246. },
  3247. {
  3248. "url": "https://opencollective.com/hyperf",
  3249. "type": "open_collective"
  3250. }
  3251. ],
  3252. "time": "2024-03-23T11:28:51+00:00"
  3253. },
  3254. {
  3255. "name": "hyperf/macroable",
  3256. "version": "v3.1.23",
  3257. "source": {
  3258. "type": "git",
  3259. "url": "https://github.com/hyperf/macroable.git",
  3260. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72"
  3261. },
  3262. "dist": {
  3263. "type": "zip",
  3264. "url": "https://api.github.com/repos/hyperf/macroable/zipball/5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3265. "reference": "5f555c40bfec6aaab46f1bb1cac9ef556fbfbe72",
  3266. "shasum": ""
  3267. },
  3268. "require": {
  3269. "php": ">=8.1"
  3270. },
  3271. "type": "library",
  3272. "extra": {
  3273. "branch-alias": {
  3274. "dev-master": "3.1-dev"
  3275. }
  3276. },
  3277. "autoload": {
  3278. "psr-4": {
  3279. "Hyperf\\Macroable\\": "src/"
  3280. }
  3281. },
  3282. "notification-url": "https://packagist.org/downloads/",
  3283. "license": [
  3284. "MIT"
  3285. ],
  3286. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3287. "homepage": "https://hyperf.io",
  3288. "keywords": [
  3289. "hyperf",
  3290. "macroable",
  3291. "php",
  3292. "swoole"
  3293. ],
  3294. "support": {
  3295. "docs": "https://hyperf.wiki",
  3296. "issues": "https://github.com/hyperf/hyperf/issues",
  3297. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3298. "source": "https://github.com/hyperf/hyperf"
  3299. },
  3300. "funding": [
  3301. {
  3302. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3303. "type": "custom"
  3304. },
  3305. {
  3306. "url": "https://opencollective.com/hyperf",
  3307. "type": "open_collective"
  3308. }
  3309. ],
  3310. "time": "2024-05-20T09:55:40+00:00"
  3311. },
  3312. {
  3313. "name": "hyperf/memory",
  3314. "version": "v3.1.15",
  3315. "source": {
  3316. "type": "git",
  3317. "url": "https://github.com/hyperf/memory.git",
  3318. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943"
  3319. },
  3320. "dist": {
  3321. "type": "zip",
  3322. "url": "https://api.github.com/repos/hyperf/memory/zipball/1ad9df27b0817e74bb31b000735072c75fb41943",
  3323. "reference": "1ad9df27b0817e74bb31b000735072c75fb41943",
  3324. "shasum": ""
  3325. },
  3326. "require": {
  3327. "php": ">=8.1"
  3328. },
  3329. "type": "library",
  3330. "extra": {
  3331. "branch-alias": {
  3332. "dev-master": "3.1-dev"
  3333. },
  3334. "hyperf": {
  3335. "config": "Hyperf\\Memory\\ConfigProvider"
  3336. }
  3337. },
  3338. "autoload": {
  3339. "psr-4": {
  3340. "Hyperf\\Memory\\": "src/"
  3341. }
  3342. },
  3343. "notification-url": "https://packagist.org/downloads/",
  3344. "license": [
  3345. "MIT"
  3346. ],
  3347. "description": "An independent component that use to operate and manage memory.",
  3348. "homepage": "https://hyperf.io",
  3349. "keywords": [
  3350. "hyperf",
  3351. "memory",
  3352. "php",
  3353. "swoole"
  3354. ],
  3355. "support": {
  3356. "docs": "https://hyperf.wiki",
  3357. "issues": "https://github.com/hyperf/hyperf/issues",
  3358. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3359. "source": "https://github.com/hyperf/hyperf"
  3360. },
  3361. "funding": [
  3362. {
  3363. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3364. "type": "custom"
  3365. },
  3366. {
  3367. "url": "https://opencollective.com/hyperf",
  3368. "type": "open_collective"
  3369. }
  3370. ],
  3371. "time": "2024-03-23T11:28:51+00:00"
  3372. },
  3373. {
  3374. "name": "hyperf/model-listener",
  3375. "version": "v3.1.15",
  3376. "source": {
  3377. "type": "git",
  3378. "url": "https://github.com/hyperf/model-listener.git",
  3379. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6"
  3380. },
  3381. "dist": {
  3382. "type": "zip",
  3383. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3384. "reference": "a65804ea8cac4e383d275a1fff7f79cd6f387da6",
  3385. "shasum": ""
  3386. },
  3387. "require": {
  3388. "hyperf/contract": "~3.1.0",
  3389. "hyperf/database": "~3.1.0",
  3390. "hyperf/di": "~3.1.0",
  3391. "hyperf/event": "~3.1.0",
  3392. "hyperf/support": "~3.1.0",
  3393. "hyperf/utils": "~3.1.0",
  3394. "php": ">=8.1",
  3395. "psr/container": "^1.0|^2.0"
  3396. },
  3397. "type": "library",
  3398. "extra": {
  3399. "branch-alias": {
  3400. "dev-master": "3.1-dev"
  3401. },
  3402. "hyperf": {
  3403. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3404. }
  3405. },
  3406. "autoload": {
  3407. "psr-4": {
  3408. "Hyperf\\ModelListener\\": "src/"
  3409. }
  3410. },
  3411. "notification-url": "https://packagist.org/downloads/",
  3412. "license": [
  3413. "MIT"
  3414. ],
  3415. "description": "A model listener for Hyperf.",
  3416. "homepage": "https://hyperf.io",
  3417. "keywords": [
  3418. "hyperf",
  3419. "model-listener",
  3420. "php",
  3421. "swoole"
  3422. ],
  3423. "support": {
  3424. "docs": "https://hyperf.wiki",
  3425. "issues": "https://github.com/hyperf/hyperf/issues",
  3426. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3427. "source": "https://github.com/hyperf/hyperf"
  3428. },
  3429. "funding": [
  3430. {
  3431. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3432. "type": "custom"
  3433. },
  3434. {
  3435. "url": "https://opencollective.com/hyperf",
  3436. "type": "open_collective"
  3437. }
  3438. ],
  3439. "time": "2024-03-23T11:28:51+00:00"
  3440. },
  3441. {
  3442. "name": "hyperf/nacos",
  3443. "version": "v3.1.15",
  3444. "source": {
  3445. "type": "git",
  3446. "url": "https://github.com/hyperf/nacos.git",
  3447. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be"
  3448. },
  3449. "dist": {
  3450. "type": "zip",
  3451. "url": "https://api.github.com/repos/hyperf/nacos/zipball/b0dbfdf67f12740faab73a9496269f230c7459be",
  3452. "reference": "b0dbfdf67f12740faab73a9496269f230c7459be",
  3453. "shasum": ""
  3454. },
  3455. "require": {
  3456. "guzzlehttp/guzzle": "^6.5|^7.0",
  3457. "hyperf/codec": "~3.1.0",
  3458. "hyperf/contract": "~3.1.0",
  3459. "hyperf/support": "~3.1.0",
  3460. "hyperf/utils": "~3.1.0",
  3461. "jetbrains/phpstorm-attributes": "^1.0",
  3462. "php": ">=8.1"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "branch-alias": {
  3467. "dev-master": "3.1-dev"
  3468. },
  3469. "hyperf": {
  3470. "config": "Hyperf\\Nacos\\ConfigProvider"
  3471. }
  3472. },
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Hyperf\\Nacos\\": "src/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "description": "Nacos SDK",
  3483. "keywords": [
  3484. "hyperf",
  3485. "nacos",
  3486. "php"
  3487. ],
  3488. "support": {
  3489. "issues": "https://github.com/hyperf/nacos/issues",
  3490. "source": "https://github.com/hyperf/nacos/tree/v3.1.15"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3495. "type": "custom"
  3496. },
  3497. {
  3498. "url": "https://opencollective.com/hyperf",
  3499. "type": "open_collective"
  3500. }
  3501. ],
  3502. "time": "2024-03-23T11:28:51+00:00"
  3503. },
  3504. {
  3505. "name": "hyperf/paginator",
  3506. "version": "v3.1.42",
  3507. "source": {
  3508. "type": "git",
  3509. "url": "https://github.com/hyperf/paginator.git",
  3510. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a"
  3511. },
  3512. "dist": {
  3513. "type": "zip",
  3514. "url": "https://api.github.com/repos/hyperf/paginator/zipball/b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3515. "reference": "b637a3deeee69f4a3e5a6d62ab8214244b98412a",
  3516. "shasum": ""
  3517. },
  3518. "require": {
  3519. "hyperf/contract": "~3.1.0",
  3520. "hyperf/support": "~3.1.0",
  3521. "hyperf/utils": "~3.1.0",
  3522. "php": ">=8.1"
  3523. },
  3524. "suggest": {
  3525. "hyperf/event": "Reqiured to use PageResolverListener.",
  3526. "hyperf/framework": "Reqiured to use PageResolverListener.",
  3527. "hyperf/http-server": "Reqiured to use PageResolverListener."
  3528. },
  3529. "type": "library",
  3530. "extra": {
  3531. "branch-alias": {
  3532. "dev-master": "3.1-dev"
  3533. },
  3534. "hyperf": {
  3535. "config": "Hyperf\\Paginator\\ConfigProvider"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "psr-4": {
  3540. "Hyperf\\Paginator\\": "src/"
  3541. }
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "description": "A paginator component for hyperf.",
  3548. "homepage": "https://hyperf.io",
  3549. "keywords": [
  3550. "hyperf",
  3551. "paginator",
  3552. "php"
  3553. ],
  3554. "support": {
  3555. "docs": "https://hyperf.wiki",
  3556. "issues": "https://github.com/hyperf/hyperf/issues",
  3557. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3558. "source": "https://github.com/hyperf/hyperf"
  3559. },
  3560. "funding": [
  3561. {
  3562. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3563. "type": "custom"
  3564. },
  3565. {
  3566. "url": "https://opencollective.com/hyperf",
  3567. "type": "open_collective"
  3568. }
  3569. ],
  3570. "time": "2024-09-25T02:54:12+00:00"
  3571. },
  3572. {
  3573. "name": "hyperf/pipeline",
  3574. "version": "v3.1.15",
  3575. "source": {
  3576. "type": "git",
  3577. "url": "https://github.com/hyperf/pipeline.git",
  3578. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8"
  3579. },
  3580. "dist": {
  3581. "type": "zip",
  3582. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3583. "reference": "ad4dbaeea2dc1166bb02e3ac5572f4eb773315a8",
  3584. "shasum": ""
  3585. },
  3586. "require": {
  3587. "php": ">=8.1",
  3588. "psr/container": "^1.0|^2.0"
  3589. },
  3590. "type": "library",
  3591. "extra": {
  3592. "branch-alias": {
  3593. "dev-master": "3.1-dev"
  3594. }
  3595. },
  3596. "autoload": {
  3597. "psr-4": {
  3598. "Hyperf\\Pipeline\\": "src/"
  3599. }
  3600. },
  3601. "notification-url": "https://packagist.org/downloads/",
  3602. "license": [
  3603. "MIT"
  3604. ],
  3605. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3606. "homepage": "https://hyperf.io",
  3607. "keywords": [
  3608. "hyperf",
  3609. "php",
  3610. "pipeline",
  3611. "swoole"
  3612. ],
  3613. "support": {
  3614. "docs": "https://hyperf.wiki",
  3615. "issues": "https://github.com/hyperf/hyperf/issues",
  3616. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3617. "source": "https://github.com/hyperf/hyperf"
  3618. },
  3619. "funding": [
  3620. {
  3621. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3622. "type": "custom"
  3623. },
  3624. {
  3625. "url": "https://opencollective.com/hyperf",
  3626. "type": "open_collective"
  3627. }
  3628. ],
  3629. "time": "2024-03-23T11:28:51+00:00"
  3630. },
  3631. {
  3632. "name": "hyperf/pool",
  3633. "version": "v3.1.15",
  3634. "source": {
  3635. "type": "git",
  3636. "url": "https://github.com/hyperf/pool.git",
  3637. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7"
  3638. },
  3639. "dist": {
  3640. "type": "zip",
  3641. "url": "https://api.github.com/repos/hyperf/pool/zipball/34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3642. "reference": "34d907adf5bb2727160bfcdeafe0e98cab00d6c7",
  3643. "shasum": ""
  3644. },
  3645. "require": {
  3646. "hyperf/contract": "~3.1.0",
  3647. "hyperf/support": "~3.1.0",
  3648. "hyperf/utils": "~3.1.0",
  3649. "php": ">=8.1",
  3650. "psr/container": "^1.0|^2.0"
  3651. },
  3652. "suggest": {
  3653. "psr/event-dispatcher": "Required to use events."
  3654. },
  3655. "type": "library",
  3656. "extra": {
  3657. "branch-alias": {
  3658. "dev-master": "3.1-dev"
  3659. },
  3660. "hyperf": {
  3661. "config": "Hyperf\\Pool\\ConfigProvider"
  3662. }
  3663. },
  3664. "autoload": {
  3665. "psr-4": {
  3666. "Hyperf\\Pool\\": "src/"
  3667. }
  3668. },
  3669. "notification-url": "https://packagist.org/downloads/",
  3670. "license": [
  3671. "MIT"
  3672. ],
  3673. "description": "An independent universal connection pool component.",
  3674. "homepage": "https://hyperf.io",
  3675. "keywords": [
  3676. "connection-pool",
  3677. "hyperf",
  3678. "php",
  3679. "swoole"
  3680. ],
  3681. "support": {
  3682. "docs": "https://hyperf.wiki",
  3683. "issues": "https://github.com/hyperf/hyperf/issues",
  3684. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3685. "source": "https://github.com/hyperf/hyperf"
  3686. },
  3687. "funding": [
  3688. {
  3689. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3690. "type": "custom"
  3691. },
  3692. {
  3693. "url": "https://opencollective.com/hyperf",
  3694. "type": "open_collective"
  3695. }
  3696. ],
  3697. "time": "2024-03-23T11:28:51+00:00"
  3698. },
  3699. {
  3700. "name": "hyperf/process",
  3701. "version": "v3.1.15",
  3702. "source": {
  3703. "type": "git",
  3704. "url": "https://github.com/hyperf/process.git",
  3705. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b"
  3706. },
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://api.github.com/repos/hyperf/process/zipball/2d45d4002a64f23406e3c36d3edf5da42147156b",
  3710. "reference": "2d45d4002a64f23406e3c36d3edf5da42147156b",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "hyperf/contract": "~3.1.0",
  3715. "hyperf/support": "~3.1.0",
  3716. "hyperf/utils": "~3.1.0",
  3717. "php": ">=8.1",
  3718. "psr/container": "^1.0|^2.0",
  3719. "psr/event-dispatcher": "^1.0"
  3720. },
  3721. "suggest": {
  3722. "hyperf/di": "Required to use annotations.",
  3723. "hyperf/event": "Required to dump the message before and after process.",
  3724. "hyperf/framework": "Required to use BootProcessListener."
  3725. },
  3726. "type": "library",
  3727. "extra": {
  3728. "branch-alias": {
  3729. "dev-master": "3.1-dev"
  3730. },
  3731. "hyperf": {
  3732. "config": "Hyperf\\Process\\ConfigProvider"
  3733. }
  3734. },
  3735. "autoload": {
  3736. "psr-4": {
  3737. "Hyperf\\Process\\": "src/"
  3738. }
  3739. },
  3740. "notification-url": "https://packagist.org/downloads/",
  3741. "license": [
  3742. "MIT"
  3743. ],
  3744. "description": "A process component for hyperf.",
  3745. "homepage": "https://hyperf.io",
  3746. "keywords": [
  3747. "hyperf",
  3748. "php",
  3749. "process"
  3750. ],
  3751. "support": {
  3752. "docs": "https://hyperf.wiki",
  3753. "issues": "https://github.com/hyperf/hyperf/issues",
  3754. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3755. "source": "https://github.com/hyperf/hyperf"
  3756. },
  3757. "funding": [
  3758. {
  3759. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3760. "type": "custom"
  3761. },
  3762. {
  3763. "url": "https://opencollective.com/hyperf",
  3764. "type": "open_collective"
  3765. }
  3766. ],
  3767. "time": "2024-03-23T11:28:51+00:00"
  3768. },
  3769. {
  3770. "name": "hyperf/redis",
  3771. "version": "v3.1.18",
  3772. "source": {
  3773. "type": "git",
  3774. "url": "https://github.com/hyperf/redis.git",
  3775. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca"
  3776. },
  3777. "dist": {
  3778. "type": "zip",
  3779. "url": "https://api.github.com/repos/hyperf/redis/zipball/85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3780. "reference": "85bea22b580bc32dd1d8e8750936b1d386e8deca",
  3781. "shasum": ""
  3782. },
  3783. "require": {
  3784. "ext-redis": "^5.0|^6.0",
  3785. "hyperf/contract": "~3.1.0",
  3786. "hyperf/pool": "~3.1.0",
  3787. "hyperf/support": "~3.1.0",
  3788. "hyperf/tappable": "~3.1.0",
  3789. "hyperf/utils": "~3.1.0",
  3790. "php": ">=8.1",
  3791. "psr/container": "^1.0|^2.0"
  3792. },
  3793. "suggest": {
  3794. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3795. "hyperf/di": "Create the RedisPool via dependency injection."
  3796. },
  3797. "type": "library",
  3798. "extra": {
  3799. "branch-alias": {
  3800. "dev-master": "3.1-dev"
  3801. },
  3802. "hyperf": {
  3803. "config": "Hyperf\\Redis\\ConfigProvider"
  3804. }
  3805. },
  3806. "autoload": {
  3807. "psr-4": {
  3808. "Hyperf\\Redis\\": "src/"
  3809. }
  3810. },
  3811. "notification-url": "https://packagist.org/downloads/",
  3812. "license": [
  3813. "MIT"
  3814. ],
  3815. "description": "A redis component for hyperf.",
  3816. "homepage": "https://hyperf.io",
  3817. "keywords": [
  3818. "hyperf",
  3819. "php",
  3820. "pool",
  3821. "redis"
  3822. ],
  3823. "support": {
  3824. "docs": "https://hyperf.wiki",
  3825. "issues": "https://github.com/hyperf/hyperf/issues",
  3826. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3827. "source": "https://github.com/hyperf/hyperf"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3832. "type": "custom"
  3833. },
  3834. {
  3835. "url": "https://opencollective.com/hyperf",
  3836. "type": "open_collective"
  3837. }
  3838. ],
  3839. "time": "2024-04-11T10:18:35+00:00"
  3840. },
  3841. {
  3842. "name": "hyperf/rpc",
  3843. "version": "v3.1.15",
  3844. "source": {
  3845. "type": "git",
  3846. "url": "https://github.com/hyperf/rpc.git",
  3847. "reference": "f5b0109aec760272357270662ad0914c4848b8c0"
  3848. },
  3849. "dist": {
  3850. "type": "zip",
  3851. "url": "https://api.github.com/repos/hyperf/rpc/zipball/f5b0109aec760272357270662ad0914c4848b8c0",
  3852. "reference": "f5b0109aec760272357270662ad0914c4848b8c0",
  3853. "shasum": ""
  3854. },
  3855. "require": {
  3856. "hyperf/codec": "~3.1.0",
  3857. "hyperf/contract": "~3.1.0",
  3858. "hyperf/support": "~3.1.0",
  3859. "jetbrains/phpstorm-attributes": "^1.0",
  3860. "php": ">=8.1"
  3861. },
  3862. "type": "library",
  3863. "extra": {
  3864. "branch-alias": {
  3865. "dev-master": "3.1-dev"
  3866. },
  3867. "hyperf": []
  3868. },
  3869. "autoload": {
  3870. "psr-4": {
  3871. "Hyperf\\Rpc\\": "src/"
  3872. }
  3873. },
  3874. "notification-url": "https://packagist.org/downloads/",
  3875. "license": [
  3876. "MIT"
  3877. ],
  3878. "description": "A rpc basic library for Hyperf.",
  3879. "homepage": "https://hyperf.io",
  3880. "keywords": [
  3881. "hyperf",
  3882. "php",
  3883. "rpc",
  3884. "swoole"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2024-03-23T11:28:51+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/rpc-client",
  3906. "version": "v3.1.15",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/rpc-client.git",
  3910. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3915. "reference": "4edf79c56d4aae19343cd3d6e0993ca4f37c4a8e",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "hyperf/code-parser": "~3.1.0",
  3920. "hyperf/load-balancer": "~3.1.0",
  3921. "hyperf/rpc": "~3.1.0",
  3922. "hyperf/support": "~3.1.0",
  3923. "hyperf/utils": "~3.1.0",
  3924. "jetbrains/phpstorm-attributes": "^1.0",
  3925. "php": ">=8.1",
  3926. "psr/container": "^1.0|^2.0"
  3927. },
  3928. "suggest": {
  3929. "hyperf/di": "For better container experience.",
  3930. "hyperf/pool": "Required to use connection pool.",
  3931. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3932. },
  3933. "type": "library",
  3934. "extra": {
  3935. "branch-alias": {
  3936. "dev-master": "3.1-dev"
  3937. },
  3938. "hyperf": {
  3939. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3940. }
  3941. },
  3942. "autoload": {
  3943. "psr-4": {
  3944. "Hyperf\\RpcClient\\": "src/"
  3945. }
  3946. },
  3947. "notification-url": "https://packagist.org/downloads/",
  3948. "license": [
  3949. "MIT"
  3950. ],
  3951. "description": "An abstract rpc server component for Hyperf.",
  3952. "homepage": "https://hyperf.io",
  3953. "keywords": [
  3954. "hyperf",
  3955. "json-rpc",
  3956. "php",
  3957. "rpc",
  3958. "rpc-client",
  3959. "swoole"
  3960. ],
  3961. "support": {
  3962. "docs": "https://hyperf.wiki",
  3963. "issues": "https://github.com/hyperf/hyperf/issues",
  3964. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3965. "source": "https://github.com/hyperf/hyperf"
  3966. },
  3967. "funding": [
  3968. {
  3969. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3970. "type": "custom"
  3971. },
  3972. {
  3973. "url": "https://opencollective.com/hyperf",
  3974. "type": "open_collective"
  3975. }
  3976. ],
  3977. "time": "2024-03-23T11:28:51+00:00"
  3978. },
  3979. {
  3980. "name": "hyperf/rpc-server",
  3981. "version": "v3.1.20",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://github.com/hyperf/rpc-server.git",
  3985. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3990. "reference": "9c820dc51893c6443c01fd0f2f534fc4bcc8a4f1",
  3991. "shasum": ""
  3992. },
  3993. "require": {
  3994. "hyperf/http-server": "~3.1.0",
  3995. "hyperf/rpc": "~3.1.0",
  3996. "php": ">=8.1"
  3997. },
  3998. "suggest": {
  3999. "hyperf/di": "Required to use annotations."
  4000. },
  4001. "type": "library",
  4002. "extra": {
  4003. "branch-alias": {
  4004. "dev-master": "3.1-dev"
  4005. },
  4006. "hyperf": {
  4007. "config": "Hyperf\\RpcServer\\ConfigProvider"
  4008. }
  4009. },
  4010. "autoload": {
  4011. "psr-4": {
  4012. "Hyperf\\RpcServer\\": "src/"
  4013. }
  4014. },
  4015. "notification-url": "https://packagist.org/downloads/",
  4016. "license": [
  4017. "MIT"
  4018. ],
  4019. "description": "An abstract rpc server component for Hyperf.",
  4020. "homepage": "https://hyperf.io",
  4021. "keywords": [
  4022. "hyperf",
  4023. "php",
  4024. "rpc",
  4025. "rpc-server",
  4026. "swoole"
  4027. ],
  4028. "support": {
  4029. "docs": "https://hyperf.wiki",
  4030. "issues": "https://github.com/hyperf/hyperf/issues",
  4031. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4032. "source": "https://github.com/hyperf/hyperf"
  4033. },
  4034. "funding": [
  4035. {
  4036. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4037. "type": "custom"
  4038. },
  4039. {
  4040. "url": "https://opencollective.com/hyperf",
  4041. "type": "open_collective"
  4042. }
  4043. ],
  4044. "time": "2024-04-22T01:46:29+00:00"
  4045. },
  4046. {
  4047. "name": "hyperf/serializer",
  4048. "version": "v3.1.23",
  4049. "source": {
  4050. "type": "git",
  4051. "url": "https://github.com/hyperf/serializer.git",
  4052. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb"
  4053. },
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://api.github.com/repos/hyperf/serializer/zipball/d9b4f012565c90176c7cc117043c5907ea3795bb",
  4057. "reference": "d9b4f012565c90176c7cc117043c5907ea3795bb",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "hyperf/contract": "~3.1.0",
  4062. "php": ">=8.1"
  4063. },
  4064. "suggest": {
  4065. "hyperf/di": "Required to use ExceptionNormalizer",
  4066. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  4067. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  4068. },
  4069. "type": "library",
  4070. "extra": {
  4071. "branch-alias": {
  4072. "dev-master": "3.1-dev"
  4073. },
  4074. "hyperf": {
  4075. "config": "Hyperf\\Serializer\\ConfigProvider"
  4076. }
  4077. },
  4078. "autoload": {
  4079. "psr-4": {
  4080. "Hyperf\\Serializer\\": "src/"
  4081. }
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "description": "A serializer component for Hyperf.",
  4088. "homepage": "https://hyperf.io",
  4089. "keywords": [
  4090. "hyperf",
  4091. "php",
  4092. "swoole",
  4093. "tappable"
  4094. ],
  4095. "support": {
  4096. "docs": "https://hyperf.wiki",
  4097. "issues": "https://github.com/hyperf/hyperf/issues",
  4098. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4099. "source": "https://github.com/hyperf/hyperf"
  4100. },
  4101. "funding": [
  4102. {
  4103. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4104. "type": "custom"
  4105. },
  4106. {
  4107. "url": "https://opencollective.com/hyperf",
  4108. "type": "open_collective"
  4109. }
  4110. ],
  4111. "time": "2024-05-23T03:43:58+00:00"
  4112. },
  4113. {
  4114. "name": "hyperf/server",
  4115. "version": "v3.1.23",
  4116. "source": {
  4117. "type": "git",
  4118. "url": "https://github.com/hyperf/server.git",
  4119. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c"
  4120. },
  4121. "dist": {
  4122. "type": "zip",
  4123. "url": "https://api.github.com/repos/hyperf/server/zipball/56c34b808df8f1e85991c26ee47c17025a29581c",
  4124. "reference": "56c34b808df8f1e85991c26ee47c17025a29581c",
  4125. "shasum": ""
  4126. },
  4127. "require": {
  4128. "hyperf/contract": "~3.1.0",
  4129. "hyperf/coordinator": "~3.1.0",
  4130. "hyperf/engine": "^2.8",
  4131. "hyperf/support": "~3.1.0",
  4132. "hyperf/tappable": "~3.1.0",
  4133. "php": ">=8.1",
  4134. "psr/container": "^1.0|^2.0",
  4135. "psr/event-dispatcher": "^1.0",
  4136. "psr/log": "^1.0|^2.0|^3.0",
  4137. "symfony/console": "^5.0|^6.0|^7.0"
  4138. },
  4139. "suggest": {
  4140. "hyperf/event": "Dump the info after server start.",
  4141. "hyperf/framework": "Dump the info after server start."
  4142. },
  4143. "type": "library",
  4144. "extra": {
  4145. "branch-alias": {
  4146. "dev-master": "3.1-dev"
  4147. },
  4148. "hyperf": {
  4149. "config": "Hyperf\\Server\\ConfigProvider"
  4150. }
  4151. },
  4152. "autoload": {
  4153. "psr-4": {
  4154. "Hyperf\\Server\\": "src/"
  4155. }
  4156. },
  4157. "notification-url": "https://packagist.org/downloads/",
  4158. "license": [
  4159. "MIT"
  4160. ],
  4161. "description": "A base server library for Hyperf.",
  4162. "homepage": "https://hyperf.io",
  4163. "keywords": [
  4164. "hyperf",
  4165. "php",
  4166. "server",
  4167. "swoole"
  4168. ],
  4169. "support": {
  4170. "docs": "https://hyperf.wiki",
  4171. "issues": "https://github.com/hyperf/hyperf/issues",
  4172. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4173. "source": "https://github.com/hyperf/hyperf"
  4174. },
  4175. "funding": [
  4176. {
  4177. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4178. "type": "custom"
  4179. },
  4180. {
  4181. "url": "https://opencollective.com/hyperf",
  4182. "type": "open_collective"
  4183. }
  4184. ],
  4185. "time": "2024-05-23T03:43:58+00:00"
  4186. },
  4187. {
  4188. "name": "hyperf/service-governance",
  4189. "version": "v3.1.15",
  4190. "source": {
  4191. "type": "git",
  4192. "url": "https://github.com/hyperf/service-governance.git",
  4193. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a"
  4194. },
  4195. "dist": {
  4196. "type": "zip",
  4197. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  4198. "reference": "e2d11bc91cc0ac5c32bf0ffa3a8c95ef3987b06a",
  4199. "shasum": ""
  4200. },
  4201. "require": {
  4202. "hyperf/contract": "~3.1.0",
  4203. "hyperf/support": "~3.1.0",
  4204. "jetbrains/phpstorm-attributes": "^1.0",
  4205. "php": ">=8.1"
  4206. },
  4207. "suggest": {
  4208. "hyperf/event": "Required to use RegisterServiceListener.",
  4209. "hyperf/framework": "Required to use RegisterServiceListener.",
  4210. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4211. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4212. },
  4213. "type": "library",
  4214. "extra": {
  4215. "branch-alias": {
  4216. "dev-master": "3.1-dev"
  4217. },
  4218. "hyperf": {
  4219. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4220. }
  4221. },
  4222. "autoload": {
  4223. "psr-4": {
  4224. "Hyperf\\ServiceGovernance\\": "src/"
  4225. }
  4226. },
  4227. "notification-url": "https://packagist.org/downloads/",
  4228. "license": [
  4229. "MIT"
  4230. ],
  4231. "description": "A service governance component for Hyperf.",
  4232. "homepage": "https://hyperf.io",
  4233. "keywords": [
  4234. "hyperf",
  4235. "php",
  4236. "service-governance",
  4237. "swoole"
  4238. ],
  4239. "support": {
  4240. "docs": "https://hyperf.wiki",
  4241. "issues": "https://github.com/hyperf/hyperf/issues",
  4242. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4243. "source": "https://github.com/hyperf/hyperf"
  4244. },
  4245. "funding": [
  4246. {
  4247. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4248. "type": "custom"
  4249. },
  4250. {
  4251. "url": "https://opencollective.com/hyperf",
  4252. "type": "open_collective"
  4253. }
  4254. ],
  4255. "time": "2024-03-23T11:28:51+00:00"
  4256. },
  4257. {
  4258. "name": "hyperf/service-governance-consul",
  4259. "version": "v3.1.15",
  4260. "source": {
  4261. "type": "git",
  4262. "url": "https://github.com/hyperf/service-governance-consul.git",
  4263. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4"
  4264. },
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4268. "reference": "fba1aa56a3298559ff290de9640e6eb5cfcf9ce4",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "hyperf/consul": "~3.1.0",
  4273. "hyperf/contract": "~3.1.0",
  4274. "hyperf/service-governance": "~3.1.0",
  4275. "hyperf/support": "~3.1.0",
  4276. "hyperf/utils": "~3.1.0",
  4277. "php": ">=8.1"
  4278. },
  4279. "type": "library",
  4280. "extra": {
  4281. "branch-alias": {
  4282. "dev-master": "3.1-dev"
  4283. },
  4284. "hyperf": {
  4285. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4291. }
  4292. },
  4293. "notification-url": "https://packagist.org/downloads/",
  4294. "license": [
  4295. "MIT"
  4296. ],
  4297. "description": "A consul adapter for service governance.",
  4298. "homepage": "https://hyperf.io",
  4299. "keywords": [
  4300. "consul-adapter",
  4301. "hyperf",
  4302. "php",
  4303. "service-governance",
  4304. "swoole"
  4305. ],
  4306. "support": {
  4307. "docs": "https://hyperf.wiki",
  4308. "issues": "https://github.com/hyperf/hyperf/issues",
  4309. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4310. "source": "https://github.com/hyperf/hyperf"
  4311. },
  4312. "funding": [
  4313. {
  4314. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4315. "type": "custom"
  4316. },
  4317. {
  4318. "url": "https://opencollective.com/hyperf",
  4319. "type": "open_collective"
  4320. }
  4321. ],
  4322. "time": "2024-03-23T11:28:51+00:00"
  4323. },
  4324. {
  4325. "name": "hyperf/service-governance-nacos",
  4326. "version": "v3.1.15",
  4327. "source": {
  4328. "type": "git",
  4329. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4330. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf"
  4331. },
  4332. "dist": {
  4333. "type": "zip",
  4334. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4335. "reference": "8f27ed823c17f55c88aa81ff31003f8995fa87cf",
  4336. "shasum": ""
  4337. },
  4338. "require": {
  4339. "hyperf/codec": "~3.1.0",
  4340. "hyperf/contract": "~3.1.0",
  4341. "hyperf/nacos": "~3.1.0",
  4342. "hyperf/service-governance": "~3.1.0",
  4343. "hyperf/support": "~3.1.0",
  4344. "hyperf/utils": "~3.1.0",
  4345. "php": ">=8.1"
  4346. },
  4347. "type": "library",
  4348. "extra": {
  4349. "branch-alias": {
  4350. "dev-master": "3.1-dev"
  4351. },
  4352. "hyperf": {
  4353. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4354. }
  4355. },
  4356. "autoload": {
  4357. "psr-4": {
  4358. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4359. }
  4360. },
  4361. "notification-url": "https://packagist.org/downloads/",
  4362. "license": [
  4363. "MIT"
  4364. ],
  4365. "description": "A nacos adapter for service governance.",
  4366. "homepage": "https://hyperf.io",
  4367. "keywords": [
  4368. "hyperf",
  4369. "nacos-adapter",
  4370. "php",
  4371. "service-governance",
  4372. "swoole"
  4373. ],
  4374. "support": {
  4375. "docs": "https://hyperf.wiki",
  4376. "issues": "https://github.com/hyperf/hyperf/issues",
  4377. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4378. "source": "https://github.com/hyperf/hyperf"
  4379. },
  4380. "funding": [
  4381. {
  4382. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4383. "type": "custom"
  4384. },
  4385. {
  4386. "url": "https://opencollective.com/hyperf",
  4387. "type": "open_collective"
  4388. }
  4389. ],
  4390. "time": "2024-03-23T11:28:51+00:00"
  4391. },
  4392. {
  4393. "name": "hyperf/snowflake",
  4394. "version": "v3.1.15",
  4395. "source": {
  4396. "type": "git",
  4397. "url": "https://github.com/hyperf/snowflake.git",
  4398. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f"
  4399. },
  4400. "dist": {
  4401. "type": "zip",
  4402. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/a77b0d4c9215ef257781967a11334d2b9366390f",
  4403. "reference": "a77b0d4c9215ef257781967a11334d2b9366390f",
  4404. "shasum": "",
  4405. "mirrors": [
  4406. {
  4407. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4408. "preferred": true
  4409. }
  4410. ]
  4411. },
  4412. "require": {
  4413. "hyperf/contract": "~3.1.0",
  4414. "php": ">=8.1"
  4415. },
  4416. "suggest": {
  4417. "hyperf/config": "Required to read snowflake config.",
  4418. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4419. "psr/container": "Required to use MetaGeneratorFactory."
  4420. },
  4421. "type": "library",
  4422. "extra": {
  4423. "branch-alias": {
  4424. "dev-master": "3.1-dev"
  4425. },
  4426. "hyperf": {
  4427. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4428. }
  4429. },
  4430. "autoload": {
  4431. "psr-4": {
  4432. "Hyperf\\Snowflake\\": "src/"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "description": "A snowflake library",
  4440. "homepage": "https://hyperf.io",
  4441. "keywords": [
  4442. "php",
  4443. "snowflake"
  4444. ],
  4445. "support": {
  4446. "docs": "https://hyperf.wiki",
  4447. "issues": "https://github.com/hyperf/hyperf/issues",
  4448. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4449. "source": "https://github.com/hyperf/hyperf"
  4450. },
  4451. "funding": [
  4452. {
  4453. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4454. "type": "custom"
  4455. },
  4456. {
  4457. "url": "https://opencollective.com/hyperf",
  4458. "type": "open_collective"
  4459. }
  4460. ],
  4461. "time": "2024-03-23T11:28:51+00:00"
  4462. },
  4463. {
  4464. "name": "hyperf/stdlib",
  4465. "version": "v3.1.15",
  4466. "source": {
  4467. "type": "git",
  4468. "url": "https://github.com/hyperf/stdlib.git",
  4469. "reference": "636fdc1f15d9357b4747fa649874725f2276b118"
  4470. },
  4471. "dist": {
  4472. "type": "zip",
  4473. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/636fdc1f15d9357b4747fa649874725f2276b118",
  4474. "reference": "636fdc1f15d9357b4747fa649874725f2276b118",
  4475. "shasum": ""
  4476. },
  4477. "require": {
  4478. "php": ">=8.1"
  4479. },
  4480. "type": "library",
  4481. "extra": {
  4482. "branch-alias": {
  4483. "dev-master": "3.1-dev"
  4484. }
  4485. },
  4486. "autoload": {
  4487. "psr-4": {
  4488. "Hyperf\\Stdlib\\": "src/"
  4489. }
  4490. },
  4491. "notification-url": "https://packagist.org/downloads/",
  4492. "license": [
  4493. "MIT"
  4494. ],
  4495. "description": "A stdlib component for Hyperf.",
  4496. "homepage": "https://hyperf.io",
  4497. "keywords": [
  4498. "hyperf",
  4499. "php",
  4500. "stdlib",
  4501. "swoole"
  4502. ],
  4503. "support": {
  4504. "docs": "https://hyperf.wiki",
  4505. "issues": "https://github.com/hyperf/hyperf/issues",
  4506. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4507. "source": "https://github.com/hyperf/hyperf"
  4508. },
  4509. "funding": [
  4510. {
  4511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4512. "type": "custom"
  4513. },
  4514. {
  4515. "url": "https://opencollective.com/hyperf",
  4516. "type": "open_collective"
  4517. }
  4518. ],
  4519. "time": "2024-03-23T11:28:51+00:00"
  4520. },
  4521. {
  4522. "name": "hyperf/stringable",
  4523. "version": "v3.1.24",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/hyperf/stringable.git",
  4527. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/hyperf/stringable/zipball/ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4532. "reference": "ee6b1788489ddb0c06c8f12ed5ccfa70dfa7efbc",
  4533. "shasum": ""
  4534. },
  4535. "require": {
  4536. "ext-mbstring": "*",
  4537. "hyperf/collection": "~3.1.0",
  4538. "hyperf/conditionable": "~3.1.0",
  4539. "hyperf/macroable": "~3.1.0",
  4540. "hyperf/tappable": "~3.1.0",
  4541. "php": ">=8.1"
  4542. },
  4543. "suggest": {
  4544. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4545. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4546. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4547. },
  4548. "type": "library",
  4549. "extra": {
  4550. "branch-alias": {
  4551. "dev-master": "3.1-dev"
  4552. }
  4553. },
  4554. "autoload": {
  4555. "files": [
  4556. "src/Functions.php"
  4557. ],
  4558. "psr-4": {
  4559. "Hyperf\\Stringable\\": "src/"
  4560. }
  4561. },
  4562. "notification-url": "https://packagist.org/downloads/",
  4563. "license": [
  4564. "MIT"
  4565. ],
  4566. "description": "Hyperf Stringable package which come from illuminate/support",
  4567. "homepage": "https://hyperf.io",
  4568. "keywords": [
  4569. "hyperf",
  4570. "php",
  4571. "stringable",
  4572. "swoole"
  4573. ],
  4574. "support": {
  4575. "docs": "https://hyperf.wiki",
  4576. "issues": "https://github.com/hyperf/hyperf/issues",
  4577. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4578. "source": "https://github.com/hyperf/hyperf"
  4579. },
  4580. "funding": [
  4581. {
  4582. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4583. "type": "custom"
  4584. },
  4585. {
  4586. "url": "https://opencollective.com/hyperf",
  4587. "type": "open_collective"
  4588. }
  4589. ],
  4590. "time": "2024-05-27T03:20:24+00:00"
  4591. },
  4592. {
  4593. "name": "hyperf/support",
  4594. "version": "v3.1.25",
  4595. "source": {
  4596. "type": "git",
  4597. "url": "https://github.com/hyperf/support.git",
  4598. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d"
  4599. },
  4600. "dist": {
  4601. "type": "zip",
  4602. "url": "https://api.github.com/repos/hyperf/support/zipball/4b74b58b94cf029696a93d479068341a67b27a0d",
  4603. "reference": "4b74b58b94cf029696a93d479068341a67b27a0d",
  4604. "shasum": ""
  4605. },
  4606. "require": {
  4607. "hyperf/collection": "~3.1.0",
  4608. "hyperf/context": "~3.1.0",
  4609. "hyperf/contract": "~3.1.0",
  4610. "hyperf/coroutine": "~3.1.0",
  4611. "hyperf/macroable": "~3.1.0",
  4612. "hyperf/stringable": "~3.1.0",
  4613. "php": ">=8.1"
  4614. },
  4615. "suggest": {
  4616. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4617. },
  4618. "type": "library",
  4619. "extra": {
  4620. "branch-alias": {
  4621. "dev-master": "3.1-dev"
  4622. }
  4623. },
  4624. "autoload": {
  4625. "files": [
  4626. "src/Functions.php"
  4627. ],
  4628. "psr-4": {
  4629. "Hyperf\\Support\\": "src/"
  4630. }
  4631. },
  4632. "notification-url": "https://packagist.org/downloads/",
  4633. "license": [
  4634. "MIT"
  4635. ],
  4636. "description": "A support component for Hyperf.",
  4637. "homepage": "https://hyperf.io",
  4638. "keywords": [
  4639. "hyperf",
  4640. "php",
  4641. "support",
  4642. "swoole"
  4643. ],
  4644. "support": {
  4645. "docs": "https://hyperf.wiki",
  4646. "issues": "https://github.com/hyperf/hyperf/issues",
  4647. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4648. "source": "https://github.com/hyperf/hyperf"
  4649. },
  4650. "funding": [
  4651. {
  4652. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4653. "type": "custom"
  4654. },
  4655. {
  4656. "url": "https://opencollective.com/hyperf",
  4657. "type": "open_collective"
  4658. }
  4659. ],
  4660. "time": "2024-05-30T09:57:29+00:00"
  4661. },
  4662. {
  4663. "name": "hyperf/tappable",
  4664. "version": "v3.1.15",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/hyperf/tappable.git",
  4668. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/hyperf/tappable/zipball/69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4673. "reference": "69f22bbc8ecb5b930cc95a49ae9bf0ca0efbfdf1",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "php": ">=8.1"
  4678. },
  4679. "type": "library",
  4680. "extra": {
  4681. "branch-alias": {
  4682. "dev-master": "3.1-dev"
  4683. }
  4684. },
  4685. "autoload": {
  4686. "files": [
  4687. "src/Functions.php"
  4688. ],
  4689. "psr-4": {
  4690. "Hyperf\\Tappable\\": "src/"
  4691. }
  4692. },
  4693. "notification-url": "https://packagist.org/downloads/",
  4694. "license": [
  4695. "MIT"
  4696. ],
  4697. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4698. "homepage": "https://hyperf.io",
  4699. "keywords": [
  4700. "hyperf",
  4701. "php",
  4702. "swoole",
  4703. "tappable"
  4704. ],
  4705. "support": {
  4706. "docs": "https://hyperf.wiki",
  4707. "issues": "https://github.com/hyperf/hyperf/issues",
  4708. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4709. "source": "https://github.com/hyperf/hyperf"
  4710. },
  4711. "funding": [
  4712. {
  4713. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4714. "type": "custom"
  4715. },
  4716. {
  4717. "url": "https://opencollective.com/hyperf",
  4718. "type": "open_collective"
  4719. }
  4720. ],
  4721. "time": "2024-03-23T11:28:51+00:00"
  4722. },
  4723. {
  4724. "name": "hyperf/translation",
  4725. "version": "v3.1.15",
  4726. "source": {
  4727. "type": "git",
  4728. "url": "https://github.com/hyperf/translation.git",
  4729. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d"
  4730. },
  4731. "dist": {
  4732. "type": "zip",
  4733. "url": "https://api.github.com/repos/hyperf/translation/zipball/7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4734. "reference": "7403e87ac42255079724b66c2c2aa04c3dc22a4d",
  4735. "shasum": ""
  4736. },
  4737. "require": {
  4738. "hyperf/contract": "~3.1.0",
  4739. "hyperf/macroable": "~3.1.0",
  4740. "hyperf/support": "~3.1.0",
  4741. "hyperf/utils": "~3.1.0",
  4742. "php": ">=8.1",
  4743. "psr/container": "^1.0|^2.0"
  4744. },
  4745. "type": "library",
  4746. "extra": {
  4747. "branch-alias": {
  4748. "dev-master": "3.1-dev"
  4749. },
  4750. "hyperf": {
  4751. "config": "Hyperf\\Translation\\ConfigProvider"
  4752. }
  4753. },
  4754. "autoload": {
  4755. "files": [
  4756. "src/Functions.php"
  4757. ],
  4758. "psr-4": {
  4759. "Hyperf\\Translation\\": "src/"
  4760. }
  4761. },
  4762. "notification-url": "https://packagist.org/downloads/",
  4763. "license": [
  4764. "MIT"
  4765. ],
  4766. "description": "An independent translation component, forked by illuminate/translation.",
  4767. "keywords": [
  4768. "hyperf",
  4769. "translation"
  4770. ],
  4771. "support": {
  4772. "issues": "https://github.com/hyperf/translation/issues",
  4773. "source": "https://github.com/hyperf/translation/tree/v3.1.15"
  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-03-23T11:28:51+00:00"
  4786. },
  4787. {
  4788. "name": "hyperf/utils",
  4789. "version": "v3.1.0",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://github.com/hyperf/utils.git",
  4793. "reference": "10522904195eb5af9090bbd072589fb387c91041"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://api.github.com/repos/hyperf/utils/zipball/10522904195eb5af9090bbd072589fb387c91041",
  4798. "reference": "10522904195eb5af9090bbd072589fb387c91041",
  4799. "shasum": ""
  4800. },
  4801. "require": {
  4802. "doctrine/inflector": "^2.0",
  4803. "hyperf/code-parser": "~3.1.0",
  4804. "hyperf/codec": "~3.1.0",
  4805. "hyperf/collection": "~3.1.0",
  4806. "hyperf/context": "~3.1.0",
  4807. "hyperf/contract": "~3.1.0",
  4808. "hyperf/coordinator": "~3.1.0",
  4809. "hyperf/coroutine": "~3.1.0",
  4810. "hyperf/engine": "^2.0",
  4811. "hyperf/macroable": "~3.1.0",
  4812. "hyperf/serializer": "~3.1.0",
  4813. "hyperf/stringable": "~3.1.0",
  4814. "hyperf/support": "~3.1.0",
  4815. "php": ">=8.1"
  4816. },
  4817. "type": "library",
  4818. "extra": {
  4819. "branch-alias": {
  4820. "dev-master": "3.1-dev"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "description": "A tools package that could help developer solved the problem quickly.",
  4828. "homepage": "https://hyperf.io",
  4829. "keywords": [
  4830. "hyperf",
  4831. "php",
  4832. "swoole",
  4833. "utils"
  4834. ],
  4835. "support": {
  4836. "docs": "https://hyperf.wiki",
  4837. "issues": "https://github.com/hyperf/hyperf/issues",
  4838. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4839. "source": "https://github.com/hyperf/hyperf"
  4840. },
  4841. "funding": [
  4842. {
  4843. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4844. "type": "custom"
  4845. },
  4846. {
  4847. "url": "https://opencollective.com/hyperf",
  4848. "type": "open_collective"
  4849. }
  4850. ],
  4851. "time": "2023-11-24T03:10:53+00:00"
  4852. },
  4853. {
  4854. "name": "hyperf/validation",
  4855. "version": "v3.1.25",
  4856. "source": {
  4857. "type": "git",
  4858. "url": "https://github.com/hyperf/validation.git",
  4859. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914"
  4860. },
  4861. "dist": {
  4862. "type": "zip",
  4863. "url": "https://api.github.com/repos/hyperf/validation/zipball/a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4864. "reference": "a940bc50f9c0657a3aeed1b14c75ecfe35115914",
  4865. "shasum": ""
  4866. },
  4867. "require": {
  4868. "egulias/email-validator": "^3.0",
  4869. "hyperf/collection": "~3.1.0",
  4870. "hyperf/conditionable": "~3.1.0",
  4871. "hyperf/contract": "~3.1.0",
  4872. "hyperf/di": "~3.1.0",
  4873. "hyperf/framework": "~3.1.0",
  4874. "hyperf/macroable": "~3.1.0",
  4875. "hyperf/stringable": "~3.1.0",
  4876. "hyperf/support": "~3.1.0",
  4877. "hyperf/tappable": "~3.1.0",
  4878. "hyperf/translation": "~3.1.0",
  4879. "hyperf/utils": "~3.1.0",
  4880. "nesbot/carbon": "^2.21",
  4881. "php": ">=8.1",
  4882. "psr/container": "^1.0|^2.0",
  4883. "psr/event-dispatcher": "^1.0",
  4884. "psr/http-message": "^1.0|^2.0"
  4885. },
  4886. "suggest": {
  4887. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4888. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4889. },
  4890. "type": "library",
  4891. "extra": {
  4892. "branch-alias": {
  4893. "dev-master": "3.1-dev"
  4894. },
  4895. "hyperf": {
  4896. "config": "Hyperf\\Validation\\ConfigProvider"
  4897. }
  4898. },
  4899. "autoload": {
  4900. "psr-4": {
  4901. "Hyperf\\Validation\\": "src/"
  4902. }
  4903. },
  4904. "notification-url": "https://packagist.org/downloads/",
  4905. "license": [
  4906. "MIT"
  4907. ],
  4908. "description": "hyperf validation",
  4909. "keywords": [
  4910. "hyperf",
  4911. "validation"
  4912. ],
  4913. "support": {
  4914. "issues": "https://github.com/hyperf/validation/issues",
  4915. "source": "https://github.com/hyperf/validation/tree/v3.1.25"
  4916. },
  4917. "funding": [
  4918. {
  4919. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4920. "type": "custom"
  4921. },
  4922. {
  4923. "url": "https://opencollective.com/hyperf",
  4924. "type": "open_collective"
  4925. }
  4926. ],
  4927. "time": "2024-05-30T08:59:48+00:00"
  4928. },
  4929. {
  4930. "name": "hyperf/websocket-server",
  4931. "version": "v3.1.16",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://github.com/hyperf/websocket-server.git",
  4935. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/b4b0903ff87a1763941c014bf755b352663d73d4",
  4940. "reference": "b4b0903ff87a1763941c014bf755b352663d73d4",
  4941. "shasum": "",
  4942. "mirrors": [
  4943. {
  4944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4945. "preferred": true
  4946. }
  4947. ]
  4948. },
  4949. "require": {
  4950. "hyperf/collection": "~3.1.0",
  4951. "hyperf/contract": "~3.1.0",
  4952. "hyperf/exception-handler": "~3.1.0",
  4953. "hyperf/http-server": "~3.1.0",
  4954. "hyperf/support": "~3.1.0",
  4955. "hyperf/utils": "~3.1.0",
  4956. "php": ">=8.1",
  4957. "psr/container": "^1.0|^2.0",
  4958. "psr/event-dispatcher": "^1.0"
  4959. },
  4960. "type": "library",
  4961. "extra": {
  4962. "branch-alias": {
  4963. "dev-master": "3.1-dev"
  4964. },
  4965. "hyperf": {
  4966. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4967. }
  4968. },
  4969. "autoload": {
  4970. "psr-4": {
  4971. "Hyperf\\WebSocketServer\\": "src/"
  4972. }
  4973. },
  4974. "notification-url": "https://packagist.org/downloads/",
  4975. "license": [
  4976. "MIT"
  4977. ],
  4978. "description": "A websocket server library for Hyperf.",
  4979. "homepage": "https://hyperf.io",
  4980. "keywords": [
  4981. "hyperf",
  4982. "php",
  4983. "swoole",
  4984. "websocket"
  4985. ],
  4986. "support": {
  4987. "docs": "https://hyperf.wiki",
  4988. "issues": "https://github.com/hyperf/hyperf/issues",
  4989. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4990. "source": "https://github.com/hyperf/hyperf"
  4991. },
  4992. "funding": [
  4993. {
  4994. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4995. "type": "custom"
  4996. },
  4997. {
  4998. "url": "https://opencollective.com/hyperf",
  4999. "type": "open_collective"
  5000. }
  5001. ],
  5002. "time": "2024-04-02T02:40:09+00:00"
  5003. },
  5004. {
  5005. "name": "jetbrains/phpstorm-attributes",
  5006. "version": "1.1",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  5010. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  5015. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  5016. "shasum": ""
  5017. },
  5018. "type": "library",
  5019. "autoload": {
  5020. "psr-4": {
  5021. "JetBrains\\PhpStorm\\": "src/"
  5022. }
  5023. },
  5024. "notification-url": "https://packagist.org/downloads/",
  5025. "license": [
  5026. "Apache-2.0"
  5027. ],
  5028. "authors": [
  5029. {
  5030. "name": "JetBrains",
  5031. "homepage": "https://www.jetbrains.com"
  5032. }
  5033. ],
  5034. "description": "PhpStorm specific attributes",
  5035. "keywords": [
  5036. "attributes",
  5037. "jetbrains",
  5038. "phpstorm"
  5039. ],
  5040. "support": {
  5041. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  5042. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  5043. },
  5044. "time": "2023-09-01T08:50:25+00:00"
  5045. },
  5046. {
  5047. "name": "laminas/laminas-mime",
  5048. "version": "2.12.0",
  5049. "source": {
  5050. "type": "git",
  5051. "url": "https://github.com/laminas/laminas-mime.git",
  5052. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  5053. },
  5054. "dist": {
  5055. "type": "zip",
  5056. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  5057. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  5058. "shasum": ""
  5059. },
  5060. "require": {
  5061. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  5062. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  5063. },
  5064. "conflict": {
  5065. "zendframework/zend-mime": "*"
  5066. },
  5067. "require-dev": {
  5068. "laminas/laminas-coding-standard": "~2.4.0",
  5069. "laminas/laminas-mail": "^2.19.0",
  5070. "phpunit/phpunit": "~9.5.25"
  5071. },
  5072. "suggest": {
  5073. "laminas/laminas-mail": "Laminas\\Mail component"
  5074. },
  5075. "type": "library",
  5076. "autoload": {
  5077. "psr-4": {
  5078. "Laminas\\Mime\\": "src/"
  5079. }
  5080. },
  5081. "notification-url": "https://packagist.org/downloads/",
  5082. "license": [
  5083. "BSD-3-Clause"
  5084. ],
  5085. "description": "Create and parse MIME messages and parts",
  5086. "homepage": "https://laminas.dev",
  5087. "keywords": [
  5088. "laminas",
  5089. "mime"
  5090. ],
  5091. "support": {
  5092. "chat": "https://laminas.dev/chat",
  5093. "docs": "https://docs.laminas.dev/laminas-mime/",
  5094. "forum": "https://discourse.laminas.dev",
  5095. "issues": "https://github.com/laminas/laminas-mime/issues",
  5096. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5097. "source": "https://github.com/laminas/laminas-mime"
  5098. },
  5099. "funding": [
  5100. {
  5101. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5102. "type": "community_bridge"
  5103. }
  5104. ],
  5105. "time": "2023-11-02T16:47:19+00:00"
  5106. },
  5107. {
  5108. "name": "laminas/laminas-stdlib",
  5109. "version": "3.19.0",
  5110. "source": {
  5111. "type": "git",
  5112. "url": "https://github.com/laminas/laminas-stdlib.git",
  5113. "reference": "6a192dd0882b514e45506f533b833b623b78fff3"
  5114. },
  5115. "dist": {
  5116. "type": "zip",
  5117. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/6a192dd0882b514e45506f533b833b623b78fff3",
  5118. "reference": "6a192dd0882b514e45506f533b833b623b78fff3",
  5119. "shasum": ""
  5120. },
  5121. "require": {
  5122. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5123. },
  5124. "conflict": {
  5125. "zendframework/zend-stdlib": "*"
  5126. },
  5127. "require-dev": {
  5128. "laminas/laminas-coding-standard": "^2.5",
  5129. "phpbench/phpbench": "^1.2.15",
  5130. "phpunit/phpunit": "^10.5.8",
  5131. "psalm/plugin-phpunit": "^0.18.4",
  5132. "vimeo/psalm": "^5.20.0"
  5133. },
  5134. "type": "library",
  5135. "autoload": {
  5136. "psr-4": {
  5137. "Laminas\\Stdlib\\": "src/"
  5138. }
  5139. },
  5140. "notification-url": "https://packagist.org/downloads/",
  5141. "license": [
  5142. "BSD-3-Clause"
  5143. ],
  5144. "description": "SPL extensions, array utilities, error handlers, and more",
  5145. "homepage": "https://laminas.dev",
  5146. "keywords": [
  5147. "laminas",
  5148. "stdlib"
  5149. ],
  5150. "support": {
  5151. "chat": "https://laminas.dev/chat",
  5152. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5153. "forum": "https://discourse.laminas.dev",
  5154. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5155. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5156. "source": "https://github.com/laminas/laminas-stdlib"
  5157. },
  5158. "funding": [
  5159. {
  5160. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5161. "type": "community_bridge"
  5162. }
  5163. ],
  5164. "time": "2024-01-19T12:39:49+00:00"
  5165. },
  5166. {
  5167. "name": "lcobucci/clock",
  5168. "version": "2.3.0",
  5169. "source": {
  5170. "type": "git",
  5171. "url": "https://github.com/lcobucci/clock.git",
  5172. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5173. },
  5174. "dist": {
  5175. "type": "zip",
  5176. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5177. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5178. "shasum": ""
  5179. },
  5180. "require": {
  5181. "php": "~8.1.0 || ~8.2.0",
  5182. "stella-maris/clock": "^0.1.7"
  5183. },
  5184. "provide": {
  5185. "psr/clock-implementation": "1.0"
  5186. },
  5187. "require-dev": {
  5188. "infection/infection": "^0.26",
  5189. "lcobucci/coding-standard": "^9.0",
  5190. "phpstan/extension-installer": "^1.2",
  5191. "phpstan/phpstan": "^1.9.4",
  5192. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5193. "phpstan/phpstan-phpunit": "^1.3.2",
  5194. "phpstan/phpstan-strict-rules": "^1.4.4",
  5195. "phpunit/phpunit": "^9.5.27"
  5196. },
  5197. "type": "library",
  5198. "autoload": {
  5199. "psr-4": {
  5200. "Lcobucci\\Clock\\": "src"
  5201. }
  5202. },
  5203. "notification-url": "https://packagist.org/downloads/",
  5204. "license": [
  5205. "MIT"
  5206. ],
  5207. "authors": [
  5208. {
  5209. "name": "Luís Cobucci",
  5210. "email": "lcobucci@gmail.com"
  5211. }
  5212. ],
  5213. "description": "Yet another clock abstraction",
  5214. "support": {
  5215. "issues": "https://github.com/lcobucci/clock/issues",
  5216. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://github.com/lcobucci",
  5221. "type": "github"
  5222. },
  5223. {
  5224. "url": "https://www.patreon.com/lcobucci",
  5225. "type": "patreon"
  5226. }
  5227. ],
  5228. "time": "2022-12-19T14:38:11+00:00"
  5229. },
  5230. {
  5231. "name": "lcobucci/jwt",
  5232. "version": "4.1.5",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/lcobucci/jwt.git",
  5236. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5241. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "ext-hash": "*",
  5246. "ext-json": "*",
  5247. "ext-mbstring": "*",
  5248. "ext-openssl": "*",
  5249. "ext-sodium": "*",
  5250. "lcobucci/clock": "^2.0",
  5251. "php": "^7.4 || ^8.0"
  5252. },
  5253. "require-dev": {
  5254. "infection/infection": "^0.21",
  5255. "lcobucci/coding-standard": "^6.0",
  5256. "mikey179/vfsstream": "^1.6.7",
  5257. "phpbench/phpbench": "^1.0",
  5258. "phpstan/extension-installer": "^1.0",
  5259. "phpstan/phpstan": "^0.12",
  5260. "phpstan/phpstan-deprecation-rules": "^0.12",
  5261. "phpstan/phpstan-phpunit": "^0.12",
  5262. "phpstan/phpstan-strict-rules": "^0.12",
  5263. "phpunit/php-invoker": "^3.1",
  5264. "phpunit/phpunit": "^9.5"
  5265. },
  5266. "type": "library",
  5267. "autoload": {
  5268. "psr-4": {
  5269. "Lcobucci\\JWT\\": "src"
  5270. }
  5271. },
  5272. "notification-url": "https://packagist.org/downloads/",
  5273. "license": [
  5274. "BSD-3-Clause"
  5275. ],
  5276. "authors": [
  5277. {
  5278. "name": "Luís Cobucci",
  5279. "email": "lcobucci@gmail.com",
  5280. "role": "Developer"
  5281. }
  5282. ],
  5283. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5284. "keywords": [
  5285. "JWS",
  5286. "jwt"
  5287. ],
  5288. "support": {
  5289. "issues": "https://github.com/lcobucci/jwt/issues",
  5290. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5291. },
  5292. "funding": [
  5293. {
  5294. "url": "https://github.com/lcobucci",
  5295. "type": "github"
  5296. },
  5297. {
  5298. "url": "https://www.patreon.com/lcobucci",
  5299. "type": "patreon"
  5300. }
  5301. ],
  5302. "time": "2021-09-28T19:34:56+00:00"
  5303. },
  5304. {
  5305. "name": "markrogoyski/math-php",
  5306. "version": "v2.10.0",
  5307. "source": {
  5308. "type": "git",
  5309. "url": "https://github.com/markrogoyski/math-php.git",
  5310. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5311. },
  5312. "dist": {
  5313. "type": "zip",
  5314. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5315. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5316. "shasum": ""
  5317. },
  5318. "require": {
  5319. "ext-json": "*",
  5320. "php": ">=7.2.0"
  5321. },
  5322. "require-dev": {
  5323. "php-coveralls/php-coveralls": "^2.0",
  5324. "php-parallel-lint/php-parallel-lint": "^1.2",
  5325. "phploc/phploc": "*",
  5326. "phpmd/phpmd": "^2.6",
  5327. "phpstan/phpstan": "^1.10",
  5328. "phpunit/phpunit": "^8.5",
  5329. "squizlabs/php_codesniffer": "3.*"
  5330. },
  5331. "type": "library",
  5332. "autoload": {
  5333. "psr-4": {
  5334. "MathPHP\\": "src/"
  5335. }
  5336. },
  5337. "notification-url": "https://packagist.org/downloads/",
  5338. "license": [
  5339. "MIT"
  5340. ],
  5341. "authors": [
  5342. {
  5343. "name": "Mark Rogoyski",
  5344. "email": "mark@rogoyski.com",
  5345. "homepage": "https://github.com/markrogoyski",
  5346. "role": "Lead developer"
  5347. },
  5348. {
  5349. "name": "Kevin Nowaczyk",
  5350. "homepage": "https://github.com/Beakerboy",
  5351. "role": "Developer"
  5352. },
  5353. {
  5354. "name": "MathPHP Community of Contributors",
  5355. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5356. }
  5357. ],
  5358. "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",
  5359. "homepage": "https://github.com/markrogoyski/math-php/",
  5360. "keywords": [
  5361. "algebra",
  5362. "combinatorics",
  5363. "distributions",
  5364. "linear algebra",
  5365. "math",
  5366. "mathematics",
  5367. "matrix",
  5368. "numerical analysis",
  5369. "probability",
  5370. "regressions",
  5371. "statistics"
  5372. ],
  5373. "support": {
  5374. "issues": "https://github.com/markrogoyski/math-php/issues",
  5375. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5376. },
  5377. "time": "2024-04-17T00:09:51+00:00"
  5378. },
  5379. {
  5380. "name": "monolog/monolog",
  5381. "version": "3.6.0",
  5382. "source": {
  5383. "type": "git",
  5384. "url": "https://github.com/Seldaek/monolog.git",
  5385. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654"
  5386. },
  5387. "dist": {
  5388. "type": "zip",
  5389. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5390. "reference": "4b18b21a5527a3d5ffdac2fd35d3ab25a9597654",
  5391. "shasum": ""
  5392. },
  5393. "require": {
  5394. "php": ">=8.1",
  5395. "psr/log": "^2.0 || ^3.0"
  5396. },
  5397. "provide": {
  5398. "psr/log-implementation": "3.0.0"
  5399. },
  5400. "require-dev": {
  5401. "aws/aws-sdk-php": "^3.0",
  5402. "doctrine/couchdb": "~1.0@dev",
  5403. "elasticsearch/elasticsearch": "^7 || ^8",
  5404. "ext-json": "*",
  5405. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5406. "guzzlehttp/guzzle": "^7.4.5",
  5407. "guzzlehttp/psr7": "^2.2",
  5408. "mongodb/mongodb": "^1.8",
  5409. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5410. "phpstan/phpstan": "^1.9",
  5411. "phpstan/phpstan-deprecation-rules": "^1.0",
  5412. "phpstan/phpstan-strict-rules": "^1.4",
  5413. "phpunit/phpunit": "^10.5.17",
  5414. "predis/predis": "^1.1 || ^2",
  5415. "ruflin/elastica": "^7",
  5416. "symfony/mailer": "^5.4 || ^6",
  5417. "symfony/mime": "^5.4 || ^6"
  5418. },
  5419. "suggest": {
  5420. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5421. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5422. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5423. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5424. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5425. "ext-mbstring": "Allow to work properly with unicode symbols",
  5426. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5427. "ext-openssl": "Required to send log messages using SSL",
  5428. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5429. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5430. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5431. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5432. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5433. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5434. },
  5435. "type": "library",
  5436. "extra": {
  5437. "branch-alias": {
  5438. "dev-main": "3.x-dev"
  5439. }
  5440. },
  5441. "autoload": {
  5442. "psr-4": {
  5443. "Monolog\\": "src/Monolog"
  5444. }
  5445. },
  5446. "notification-url": "https://packagist.org/downloads/",
  5447. "license": [
  5448. "MIT"
  5449. ],
  5450. "authors": [
  5451. {
  5452. "name": "Jordi Boggiano",
  5453. "email": "j.boggiano@seld.be",
  5454. "homepage": "https://seld.be"
  5455. }
  5456. ],
  5457. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5458. "homepage": "https://github.com/Seldaek/monolog",
  5459. "keywords": [
  5460. "log",
  5461. "logging",
  5462. "psr-3"
  5463. ],
  5464. "support": {
  5465. "issues": "https://github.com/Seldaek/monolog/issues",
  5466. "source": "https://github.com/Seldaek/monolog/tree/3.6.0"
  5467. },
  5468. "funding": [
  5469. {
  5470. "url": "https://github.com/Seldaek",
  5471. "type": "github"
  5472. },
  5473. {
  5474. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5475. "type": "tidelift"
  5476. }
  5477. ],
  5478. "time": "2024-04-12T21:02:21+00:00"
  5479. },
  5480. {
  5481. "name": "nesbot/carbon",
  5482. "version": "2.72.5",
  5483. "source": {
  5484. "type": "git",
  5485. "url": "https://github.com/briannesbitt/Carbon.git",
  5486. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5487. },
  5488. "dist": {
  5489. "type": "zip",
  5490. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5491. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5492. "shasum": ""
  5493. },
  5494. "require": {
  5495. "carbonphp/carbon-doctrine-types": "*",
  5496. "ext-json": "*",
  5497. "php": "^7.1.8 || ^8.0",
  5498. "psr/clock": "^1.0",
  5499. "symfony/polyfill-mbstring": "^1.0",
  5500. "symfony/polyfill-php80": "^1.16",
  5501. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5502. },
  5503. "provide": {
  5504. "psr/clock-implementation": "1.0"
  5505. },
  5506. "require-dev": {
  5507. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5508. "doctrine/orm": "^2.7 || ^3.0",
  5509. "friendsofphp/php-cs-fixer": "^3.0",
  5510. "kylekatarnls/multi-tester": "^2.0",
  5511. "ondrejmirtes/better-reflection": "*",
  5512. "phpmd/phpmd": "^2.9",
  5513. "phpstan/extension-installer": "^1.0",
  5514. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5515. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5516. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5517. "squizlabs/php_codesniffer": "^3.4"
  5518. },
  5519. "bin": [
  5520. "bin/carbon"
  5521. ],
  5522. "type": "library",
  5523. "extra": {
  5524. "branch-alias": {
  5525. "dev-master": "3.x-dev",
  5526. "dev-2.x": "2.x-dev"
  5527. },
  5528. "laravel": {
  5529. "providers": [
  5530. "Carbon\\Laravel\\ServiceProvider"
  5531. ]
  5532. },
  5533. "phpstan": {
  5534. "includes": [
  5535. "extension.neon"
  5536. ]
  5537. }
  5538. },
  5539. "autoload": {
  5540. "psr-4": {
  5541. "Carbon\\": "src/Carbon/"
  5542. }
  5543. },
  5544. "notification-url": "https://packagist.org/downloads/",
  5545. "license": [
  5546. "MIT"
  5547. ],
  5548. "authors": [
  5549. {
  5550. "name": "Brian Nesbitt",
  5551. "email": "brian@nesbot.com",
  5552. "homepage": "https://markido.com"
  5553. },
  5554. {
  5555. "name": "kylekatarnls",
  5556. "homepage": "https://github.com/kylekatarnls"
  5557. }
  5558. ],
  5559. "description": "An API extension for DateTime that supports 281 different languages.",
  5560. "homepage": "https://carbon.nesbot.com",
  5561. "keywords": [
  5562. "date",
  5563. "datetime",
  5564. "time"
  5565. ],
  5566. "support": {
  5567. "docs": "https://carbon.nesbot.com/docs",
  5568. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5569. "source": "https://github.com/briannesbitt/Carbon"
  5570. },
  5571. "funding": [
  5572. {
  5573. "url": "https://github.com/sponsors/kylekatarnls",
  5574. "type": "github"
  5575. },
  5576. {
  5577. "url": "https://opencollective.com/Carbon#sponsor",
  5578. "type": "opencollective"
  5579. },
  5580. {
  5581. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5582. "type": "tidelift"
  5583. }
  5584. ],
  5585. "time": "2024-06-03T19:18:41+00:00"
  5586. },
  5587. {
  5588. "name": "nikic/fast-route",
  5589. "version": "v1.3.0",
  5590. "source": {
  5591. "type": "git",
  5592. "url": "https://github.com/nikic/FastRoute.git",
  5593. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5594. },
  5595. "dist": {
  5596. "type": "zip",
  5597. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5598. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5599. "shasum": ""
  5600. },
  5601. "require": {
  5602. "php": ">=5.4.0"
  5603. },
  5604. "require-dev": {
  5605. "phpunit/phpunit": "^4.8.35|~5.7"
  5606. },
  5607. "type": "library",
  5608. "autoload": {
  5609. "files": [
  5610. "src/functions.php"
  5611. ],
  5612. "psr-4": {
  5613. "FastRoute\\": "src/"
  5614. }
  5615. },
  5616. "notification-url": "https://packagist.org/downloads/",
  5617. "license": [
  5618. "BSD-3-Clause"
  5619. ],
  5620. "authors": [
  5621. {
  5622. "name": "Nikita Popov",
  5623. "email": "nikic@php.net"
  5624. }
  5625. ],
  5626. "description": "Fast request router for PHP",
  5627. "keywords": [
  5628. "router",
  5629. "routing"
  5630. ],
  5631. "support": {
  5632. "issues": "https://github.com/nikic/FastRoute/issues",
  5633. "source": "https://github.com/nikic/FastRoute/tree/master"
  5634. },
  5635. "time": "2018-02-13T20:26:39+00:00"
  5636. },
  5637. {
  5638. "name": "nikic/php-parser",
  5639. "version": "v4.19.1",
  5640. "source": {
  5641. "type": "git",
  5642. "url": "https://github.com/nikic/PHP-Parser.git",
  5643. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b"
  5644. },
  5645. "dist": {
  5646. "type": "zip",
  5647. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4e1b88d21c69391150ace211e9eaf05810858d0b",
  5648. "reference": "4e1b88d21c69391150ace211e9eaf05810858d0b",
  5649. "shasum": ""
  5650. },
  5651. "require": {
  5652. "ext-tokenizer": "*",
  5653. "php": ">=7.1"
  5654. },
  5655. "require-dev": {
  5656. "ircmaxell/php-yacc": "^0.0.7",
  5657. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  5658. },
  5659. "bin": [
  5660. "bin/php-parse"
  5661. ],
  5662. "type": "library",
  5663. "extra": {
  5664. "branch-alias": {
  5665. "dev-master": "4.9-dev"
  5666. }
  5667. },
  5668. "autoload": {
  5669. "psr-4": {
  5670. "PhpParser\\": "lib/PhpParser"
  5671. }
  5672. },
  5673. "notification-url": "https://packagist.org/downloads/",
  5674. "license": [
  5675. "BSD-3-Clause"
  5676. ],
  5677. "authors": [
  5678. {
  5679. "name": "Nikita Popov"
  5680. }
  5681. ],
  5682. "description": "A PHP parser written in PHP",
  5683. "keywords": [
  5684. "parser",
  5685. "php"
  5686. ],
  5687. "support": {
  5688. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5689. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.1"
  5690. },
  5691. "time": "2024-03-17T08:10:35+00:00"
  5692. },
  5693. {
  5694. "name": "paragonie/constant_time_encoding",
  5695. "version": "v3.0.0",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5699. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5704. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5705. "shasum": "",
  5706. "mirrors": [
  5707. {
  5708. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5709. "preferred": true
  5710. }
  5711. ]
  5712. },
  5713. "require": {
  5714. "php": "^8"
  5715. },
  5716. "require-dev": {
  5717. "phpunit/phpunit": "^9",
  5718. "vimeo/psalm": "^4|^5"
  5719. },
  5720. "type": "library",
  5721. "autoload": {
  5722. "psr-4": {
  5723. "ParagonIE\\ConstantTime\\": "src/"
  5724. }
  5725. },
  5726. "notification-url": "https://packagist.org/downloads/",
  5727. "license": [
  5728. "MIT"
  5729. ],
  5730. "authors": [
  5731. {
  5732. "name": "Paragon Initiative Enterprises",
  5733. "email": "security@paragonie.com",
  5734. "homepage": "https://paragonie.com",
  5735. "role": "Maintainer"
  5736. },
  5737. {
  5738. "name": "Steve 'Sc00bz' Thomas",
  5739. "email": "steve@tobtu.com",
  5740. "homepage": "https://www.tobtu.com",
  5741. "role": "Original Developer"
  5742. }
  5743. ],
  5744. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5745. "keywords": [
  5746. "base16",
  5747. "base32",
  5748. "base32_decode",
  5749. "base32_encode",
  5750. "base64",
  5751. "base64_decode",
  5752. "base64_encode",
  5753. "bin2hex",
  5754. "encoding",
  5755. "hex",
  5756. "hex2bin",
  5757. "rfc4648"
  5758. ],
  5759. "support": {
  5760. "email": "info@paragonie.com",
  5761. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5762. "source": "https://github.com/paragonie/constant_time_encoding"
  5763. },
  5764. "time": "2024-05-08T12:36:18+00:00"
  5765. },
  5766. {
  5767. "name": "paragonie/random_compat",
  5768. "version": "v9.99.100",
  5769. "source": {
  5770. "type": "git",
  5771. "url": "https://github.com/paragonie/random_compat.git",
  5772. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5773. },
  5774. "dist": {
  5775. "type": "zip",
  5776. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5777. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5778. "shasum": "",
  5779. "mirrors": [
  5780. {
  5781. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5782. "preferred": true
  5783. }
  5784. ]
  5785. },
  5786. "require": {
  5787. "php": ">= 7"
  5788. },
  5789. "require-dev": {
  5790. "phpunit/phpunit": "4.*|5.*",
  5791. "vimeo/psalm": "^1"
  5792. },
  5793. "suggest": {
  5794. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5795. },
  5796. "type": "library",
  5797. "notification-url": "https://packagist.org/downloads/",
  5798. "license": [
  5799. "MIT"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "Paragon Initiative Enterprises",
  5804. "email": "security@paragonie.com",
  5805. "homepage": "https://paragonie.com"
  5806. }
  5807. ],
  5808. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5809. "keywords": [
  5810. "csprng",
  5811. "polyfill",
  5812. "pseudorandom",
  5813. "random"
  5814. ],
  5815. "support": {
  5816. "email": "info@paragonie.com",
  5817. "issues": "https://github.com/paragonie/random_compat/issues",
  5818. "source": "https://github.com/paragonie/random_compat"
  5819. },
  5820. "time": "2020-10-15T08:29:30+00:00"
  5821. },
  5822. {
  5823. "name": "php-amqplib/php-amqplib",
  5824. "version": "v3.6.1",
  5825. "source": {
  5826. "type": "git",
  5827. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5828. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72"
  5829. },
  5830. "dist": {
  5831. "type": "zip",
  5832. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5833. "reference": "76eee289e98b0b309a761787e65cbe1acbaf8c72",
  5834. "shasum": "",
  5835. "mirrors": [
  5836. {
  5837. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5838. "preferred": true
  5839. }
  5840. ]
  5841. },
  5842. "require": {
  5843. "ext-mbstring": "*",
  5844. "ext-sockets": "*",
  5845. "php": "^7.2||^8.0",
  5846. "phpseclib/phpseclib": "^2.0|^3.0"
  5847. },
  5848. "conflict": {
  5849. "php": "7.4.0 - 7.4.1"
  5850. },
  5851. "replace": {
  5852. "videlalvaro/php-amqplib": "self.version"
  5853. },
  5854. "require-dev": {
  5855. "ext-curl": "*",
  5856. "nategood/httpful": "^0.2.20",
  5857. "phpunit/phpunit": "^7.5|^9.5",
  5858. "squizlabs/php_codesniffer": "^3.6"
  5859. },
  5860. "type": "library",
  5861. "extra": {
  5862. "branch-alias": {
  5863. "dev-master": "3.0-dev"
  5864. }
  5865. },
  5866. "autoload": {
  5867. "psr-4": {
  5868. "PhpAmqpLib\\": "PhpAmqpLib/"
  5869. }
  5870. },
  5871. "notification-url": "https://packagist.org/downloads/",
  5872. "license": [
  5873. "LGPL-2.1-or-later"
  5874. ],
  5875. "authors": [
  5876. {
  5877. "name": "Alvaro Videla",
  5878. "role": "Original Maintainer"
  5879. },
  5880. {
  5881. "name": "Raúl Araya",
  5882. "email": "nubeiro@gmail.com",
  5883. "role": "Maintainer"
  5884. },
  5885. {
  5886. "name": "Luke Bakken",
  5887. "email": "luke@bakken.io",
  5888. "role": "Maintainer"
  5889. },
  5890. {
  5891. "name": "Ramūnas Dronga",
  5892. "email": "github@ramuno.lt",
  5893. "role": "Maintainer"
  5894. }
  5895. ],
  5896. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5897. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5898. "keywords": [
  5899. "message",
  5900. "queue",
  5901. "rabbitmq"
  5902. ],
  5903. "support": {
  5904. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5905. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.6.1"
  5906. },
  5907. "time": "2024-02-07T17:21:26+00:00"
  5908. },
  5909. {
  5910. "name": "php-di/phpdoc-reader",
  5911. "version": "2.2.1",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5915. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5920. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": ">=7.2.0"
  5925. },
  5926. "require-dev": {
  5927. "mnapoli/hard-mode": "~0.3.0",
  5928. "phpunit/phpunit": "^8.5|^9.0"
  5929. },
  5930. "type": "library",
  5931. "autoload": {
  5932. "psr-4": {
  5933. "PhpDocReader\\": "src/PhpDocReader"
  5934. }
  5935. },
  5936. "notification-url": "https://packagist.org/downloads/",
  5937. "license": [
  5938. "MIT"
  5939. ],
  5940. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5941. "keywords": [
  5942. "phpdoc",
  5943. "reflection"
  5944. ],
  5945. "support": {
  5946. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5947. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5948. },
  5949. "time": "2020-10-12T12:39:22+00:00"
  5950. },
  5951. {
  5952. "name": "phper666/jwt-auth",
  5953. "version": "v4.0.11",
  5954. "source": {
  5955. "type": "git",
  5956. "url": "https://github.com/phper666/jwt-auth.git",
  5957. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5958. },
  5959. "dist": {
  5960. "type": "zip",
  5961. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5962. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5963. "shasum": ""
  5964. },
  5965. "require": {
  5966. "ext-swoole": ">=4.4",
  5967. "lcobucci/jwt": "4.1.5",
  5968. "nesbot/carbon": "^1.0 || ^2.0",
  5969. "php": ">=7.4"
  5970. },
  5971. "suggest": {
  5972. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5973. "hyperf/command": "required hyperf/command ~2.2.0",
  5974. "hyperf/config": "required hyperf/config ~2.2.0",
  5975. "hyperf/di": "required hyperf/di ~2.2.0"
  5976. },
  5977. "type": "library",
  5978. "extra": {
  5979. "hyperf": {
  5980. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5981. }
  5982. },
  5983. "autoload": {
  5984. "files": [
  5985. "src/Functions.php"
  5986. ],
  5987. "psr-4": {
  5988. "Phper666\\JWTAuth\\": "src/"
  5989. }
  5990. },
  5991. "notification-url": "https://packagist.org/downloads/",
  5992. "license": [
  5993. "MIT"
  5994. ],
  5995. "authors": [
  5996. {
  5997. "name": "Li Yuzhao",
  5998. "email": "562405704@qq.com",
  5999. "homepage": "https://github.com/phper666/jwt-auth",
  6000. "role": "Developer"
  6001. }
  6002. ],
  6003. "description": "jwt-auth Component",
  6004. "keywords": [
  6005. "hyperf",
  6006. "php"
  6007. ],
  6008. "support": {
  6009. "issues": "https://github.com/phper666/jwt-auth/issues",
  6010. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  6011. },
  6012. "time": "2024-02-02T13:24:54+00:00"
  6013. },
  6014. {
  6015. "name": "phpoption/phpoption",
  6016. "version": "1.9.2",
  6017. "source": {
  6018. "type": "git",
  6019. "url": "https://github.com/schmittjoh/php-option.git",
  6020. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820"
  6021. },
  6022. "dist": {
  6023. "type": "zip",
  6024. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/80735db690fe4fc5c76dfa7f9b770634285fa820",
  6025. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  6026. "shasum": ""
  6027. },
  6028. "require": {
  6029. "php": "^7.2.5 || ^8.0"
  6030. },
  6031. "require-dev": {
  6032. "bamarni/composer-bin-plugin": "^1.8.2",
  6033. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6034. },
  6035. "type": "library",
  6036. "extra": {
  6037. "bamarni-bin": {
  6038. "bin-links": true,
  6039. "forward-command": true
  6040. },
  6041. "branch-alias": {
  6042. "dev-master": "1.9-dev"
  6043. }
  6044. },
  6045. "autoload": {
  6046. "psr-4": {
  6047. "PhpOption\\": "src/PhpOption/"
  6048. }
  6049. },
  6050. "notification-url": "https://packagist.org/downloads/",
  6051. "license": [
  6052. "Apache-2.0"
  6053. ],
  6054. "authors": [
  6055. {
  6056. "name": "Johannes M. Schmitt",
  6057. "email": "schmittjoh@gmail.com",
  6058. "homepage": "https://github.com/schmittjoh"
  6059. },
  6060. {
  6061. "name": "Graham Campbell",
  6062. "email": "hello@gjcampbell.co.uk",
  6063. "homepage": "https://github.com/GrahamCampbell"
  6064. }
  6065. ],
  6066. "description": "Option Type for PHP",
  6067. "keywords": [
  6068. "language",
  6069. "option",
  6070. "php",
  6071. "type"
  6072. ],
  6073. "support": {
  6074. "issues": "https://github.com/schmittjoh/php-option/issues",
  6075. "source": "https://github.com/schmittjoh/php-option/tree/1.9.2"
  6076. },
  6077. "funding": [
  6078. {
  6079. "url": "https://github.com/GrahamCampbell",
  6080. "type": "github"
  6081. },
  6082. {
  6083. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6084. "type": "tidelift"
  6085. }
  6086. ],
  6087. "time": "2023-11-12T21:59:55+00:00"
  6088. },
  6089. {
  6090. "name": "phpseclib/phpseclib",
  6091. "version": "3.0.39",
  6092. "source": {
  6093. "type": "git",
  6094. "url": "https://github.com/phpseclib/phpseclib.git",
  6095. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485"
  6096. },
  6097. "dist": {
  6098. "type": "zip",
  6099. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485",
  6100. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485",
  6101. "shasum": "",
  6102. "mirrors": [
  6103. {
  6104. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6105. "preferred": true
  6106. }
  6107. ]
  6108. },
  6109. "require": {
  6110. "paragonie/constant_time_encoding": "^1|^2|^3",
  6111. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6112. "php": ">=5.6.1"
  6113. },
  6114. "require-dev": {
  6115. "phpunit/phpunit": "*"
  6116. },
  6117. "suggest": {
  6118. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6119. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6120. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6121. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6122. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6123. },
  6124. "type": "library",
  6125. "autoload": {
  6126. "files": [
  6127. "phpseclib/bootstrap.php"
  6128. ],
  6129. "psr-4": {
  6130. "phpseclib3\\": "phpseclib/"
  6131. }
  6132. },
  6133. "notification-url": "https://packagist.org/downloads/",
  6134. "license": [
  6135. "MIT"
  6136. ],
  6137. "authors": [
  6138. {
  6139. "name": "Jim Wigginton",
  6140. "email": "terrafrost@php.net",
  6141. "role": "Lead Developer"
  6142. },
  6143. {
  6144. "name": "Patrick Monnerat",
  6145. "email": "pm@datasphere.ch",
  6146. "role": "Developer"
  6147. },
  6148. {
  6149. "name": "Andreas Fischer",
  6150. "email": "bantu@phpbb.com",
  6151. "role": "Developer"
  6152. },
  6153. {
  6154. "name": "Hans-Jürgen Petrich",
  6155. "email": "petrich@tronic-media.com",
  6156. "role": "Developer"
  6157. },
  6158. {
  6159. "name": "Graham Campbell",
  6160. "email": "graham@alt-three.com",
  6161. "role": "Developer"
  6162. }
  6163. ],
  6164. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6165. "homepage": "http://phpseclib.sourceforge.net",
  6166. "keywords": [
  6167. "BigInteger",
  6168. "aes",
  6169. "asn.1",
  6170. "asn1",
  6171. "blowfish",
  6172. "crypto",
  6173. "cryptography",
  6174. "encryption",
  6175. "rsa",
  6176. "security",
  6177. "sftp",
  6178. "signature",
  6179. "signing",
  6180. "ssh",
  6181. "twofish",
  6182. "x.509",
  6183. "x509"
  6184. ],
  6185. "support": {
  6186. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6187. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39"
  6188. },
  6189. "funding": [
  6190. {
  6191. "url": "https://github.com/terrafrost",
  6192. "type": "github"
  6193. },
  6194. {
  6195. "url": "https://www.patreon.com/phpseclib",
  6196. "type": "patreon"
  6197. },
  6198. {
  6199. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6200. "type": "tidelift"
  6201. }
  6202. ],
  6203. "time": "2024-06-24T06:27:33+00:00"
  6204. },
  6205. {
  6206. "name": "psr/cache",
  6207. "version": "3.0.0",
  6208. "source": {
  6209. "type": "git",
  6210. "url": "https://github.com/php-fig/cache.git",
  6211. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6212. },
  6213. "dist": {
  6214. "type": "zip",
  6215. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6216. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6217. "shasum": ""
  6218. },
  6219. "require": {
  6220. "php": ">=8.0.0"
  6221. },
  6222. "type": "library",
  6223. "extra": {
  6224. "branch-alias": {
  6225. "dev-master": "1.0.x-dev"
  6226. }
  6227. },
  6228. "autoload": {
  6229. "psr-4": {
  6230. "Psr\\Cache\\": "src/"
  6231. }
  6232. },
  6233. "notification-url": "https://packagist.org/downloads/",
  6234. "license": [
  6235. "MIT"
  6236. ],
  6237. "authors": [
  6238. {
  6239. "name": "PHP-FIG",
  6240. "homepage": "https://www.php-fig.org/"
  6241. }
  6242. ],
  6243. "description": "Common interface for caching libraries",
  6244. "keywords": [
  6245. "cache",
  6246. "psr",
  6247. "psr-6"
  6248. ],
  6249. "support": {
  6250. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6251. },
  6252. "time": "2021-02-03T23:26:27+00:00"
  6253. },
  6254. {
  6255. "name": "psr/clock",
  6256. "version": "1.0.0",
  6257. "source": {
  6258. "type": "git",
  6259. "url": "https://github.com/php-fig/clock.git",
  6260. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6261. },
  6262. "dist": {
  6263. "type": "zip",
  6264. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6265. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6266. "shasum": ""
  6267. },
  6268. "require": {
  6269. "php": "^7.0 || ^8.0"
  6270. },
  6271. "type": "library",
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Psr\\Clock\\": "src/"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "PHP-FIG",
  6284. "homepage": "https://www.php-fig.org/"
  6285. }
  6286. ],
  6287. "description": "Common interface for reading the clock.",
  6288. "homepage": "https://github.com/php-fig/clock",
  6289. "keywords": [
  6290. "clock",
  6291. "now",
  6292. "psr",
  6293. "psr-20",
  6294. "time"
  6295. ],
  6296. "support": {
  6297. "issues": "https://github.com/php-fig/clock/issues",
  6298. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6299. },
  6300. "time": "2022-11-25T14:36:26+00:00"
  6301. },
  6302. {
  6303. "name": "psr/container",
  6304. "version": "2.0.2",
  6305. "source": {
  6306. "type": "git",
  6307. "url": "https://github.com/php-fig/container.git",
  6308. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6309. },
  6310. "dist": {
  6311. "type": "zip",
  6312. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6313. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6314. "shasum": ""
  6315. },
  6316. "require": {
  6317. "php": ">=7.4.0"
  6318. },
  6319. "type": "library",
  6320. "extra": {
  6321. "branch-alias": {
  6322. "dev-master": "2.0.x-dev"
  6323. }
  6324. },
  6325. "autoload": {
  6326. "psr-4": {
  6327. "Psr\\Container\\": "src/"
  6328. }
  6329. },
  6330. "notification-url": "https://packagist.org/downloads/",
  6331. "license": [
  6332. "MIT"
  6333. ],
  6334. "authors": [
  6335. {
  6336. "name": "PHP-FIG",
  6337. "homepage": "https://www.php-fig.org/"
  6338. }
  6339. ],
  6340. "description": "Common Container Interface (PHP FIG PSR-11)",
  6341. "homepage": "https://github.com/php-fig/container",
  6342. "keywords": [
  6343. "PSR-11",
  6344. "container",
  6345. "container-interface",
  6346. "container-interop",
  6347. "psr"
  6348. ],
  6349. "support": {
  6350. "issues": "https://github.com/php-fig/container/issues",
  6351. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6352. },
  6353. "time": "2021-11-05T16:47:00+00:00"
  6354. },
  6355. {
  6356. "name": "psr/event-dispatcher",
  6357. "version": "1.0.0",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/php-fig/event-dispatcher.git",
  6361. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6366. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "php": ">=7.2.0"
  6371. },
  6372. "type": "library",
  6373. "extra": {
  6374. "branch-alias": {
  6375. "dev-master": "1.0.x-dev"
  6376. }
  6377. },
  6378. "autoload": {
  6379. "psr-4": {
  6380. "Psr\\EventDispatcher\\": "src/"
  6381. }
  6382. },
  6383. "notification-url": "https://packagist.org/downloads/",
  6384. "license": [
  6385. "MIT"
  6386. ],
  6387. "authors": [
  6388. {
  6389. "name": "PHP-FIG",
  6390. "homepage": "http://www.php-fig.org/"
  6391. }
  6392. ],
  6393. "description": "Standard interfaces for event handling.",
  6394. "keywords": [
  6395. "events",
  6396. "psr",
  6397. "psr-14"
  6398. ],
  6399. "support": {
  6400. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6401. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6402. },
  6403. "time": "2019-01-08T18:20:26+00:00"
  6404. },
  6405. {
  6406. "name": "psr/http-client",
  6407. "version": "1.0.3",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/php-fig/http-client.git",
  6411. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6416. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "php": "^7.0 || ^8.0",
  6421. "psr/http-message": "^1.0 || ^2.0"
  6422. },
  6423. "type": "library",
  6424. "extra": {
  6425. "branch-alias": {
  6426. "dev-master": "1.0.x-dev"
  6427. }
  6428. },
  6429. "autoload": {
  6430. "psr-4": {
  6431. "Psr\\Http\\Client\\": "src/"
  6432. }
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "PHP-FIG",
  6441. "homepage": "https://www.php-fig.org/"
  6442. }
  6443. ],
  6444. "description": "Common interface for HTTP clients",
  6445. "homepage": "https://github.com/php-fig/http-client",
  6446. "keywords": [
  6447. "http",
  6448. "http-client",
  6449. "psr",
  6450. "psr-18"
  6451. ],
  6452. "support": {
  6453. "source": "https://github.com/php-fig/http-client"
  6454. },
  6455. "time": "2023-09-23T14:17:50+00:00"
  6456. },
  6457. {
  6458. "name": "psr/http-factory",
  6459. "version": "1.1.0",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://github.com/php-fig/http-factory.git",
  6463. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6468. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6469. "shasum": ""
  6470. },
  6471. "require": {
  6472. "php": ">=7.1",
  6473. "psr/http-message": "^1.0 || ^2.0"
  6474. },
  6475. "type": "library",
  6476. "extra": {
  6477. "branch-alias": {
  6478. "dev-master": "1.0.x-dev"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "psr-4": {
  6483. "Psr\\Http\\Message\\": "src/"
  6484. }
  6485. },
  6486. "notification-url": "https://packagist.org/downloads/",
  6487. "license": [
  6488. "MIT"
  6489. ],
  6490. "authors": [
  6491. {
  6492. "name": "PHP-FIG",
  6493. "homepage": "https://www.php-fig.org/"
  6494. }
  6495. ],
  6496. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6497. "keywords": [
  6498. "factory",
  6499. "http",
  6500. "message",
  6501. "psr",
  6502. "psr-17",
  6503. "psr-7",
  6504. "request",
  6505. "response"
  6506. ],
  6507. "support": {
  6508. "source": "https://github.com/php-fig/http-factory"
  6509. },
  6510. "time": "2024-04-15T12:06:14+00:00"
  6511. },
  6512. {
  6513. "name": "psr/http-message",
  6514. "version": "2.0",
  6515. "source": {
  6516. "type": "git",
  6517. "url": "https://github.com/php-fig/http-message.git",
  6518. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6519. },
  6520. "dist": {
  6521. "type": "zip",
  6522. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6523. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6524. "shasum": ""
  6525. },
  6526. "require": {
  6527. "php": "^7.2 || ^8.0"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "branch-alias": {
  6532. "dev-master": "2.0.x-dev"
  6533. }
  6534. },
  6535. "autoload": {
  6536. "psr-4": {
  6537. "Psr\\Http\\Message\\": "src/"
  6538. }
  6539. },
  6540. "notification-url": "https://packagist.org/downloads/",
  6541. "license": [
  6542. "MIT"
  6543. ],
  6544. "authors": [
  6545. {
  6546. "name": "PHP-FIG",
  6547. "homepage": "https://www.php-fig.org/"
  6548. }
  6549. ],
  6550. "description": "Common interface for HTTP messages",
  6551. "homepage": "https://github.com/php-fig/http-message",
  6552. "keywords": [
  6553. "http",
  6554. "http-message",
  6555. "psr",
  6556. "psr-7",
  6557. "request",
  6558. "response"
  6559. ],
  6560. "support": {
  6561. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6562. },
  6563. "time": "2023-04-04T09:54:51+00:00"
  6564. },
  6565. {
  6566. "name": "psr/http-server-handler",
  6567. "version": "1.0.2",
  6568. "source": {
  6569. "type": "git",
  6570. "url": "https://github.com/php-fig/http-server-handler.git",
  6571. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6572. },
  6573. "dist": {
  6574. "type": "zip",
  6575. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6576. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6577. "shasum": ""
  6578. },
  6579. "require": {
  6580. "php": ">=7.0",
  6581. "psr/http-message": "^1.0 || ^2.0"
  6582. },
  6583. "type": "library",
  6584. "extra": {
  6585. "branch-alias": {
  6586. "dev-master": "1.0.x-dev"
  6587. }
  6588. },
  6589. "autoload": {
  6590. "psr-4": {
  6591. "Psr\\Http\\Server\\": "src/"
  6592. }
  6593. },
  6594. "notification-url": "https://packagist.org/downloads/",
  6595. "license": [
  6596. "MIT"
  6597. ],
  6598. "authors": [
  6599. {
  6600. "name": "PHP-FIG",
  6601. "homepage": "https://www.php-fig.org/"
  6602. }
  6603. ],
  6604. "description": "Common interface for HTTP server-side request handler",
  6605. "keywords": [
  6606. "handler",
  6607. "http",
  6608. "http-interop",
  6609. "psr",
  6610. "psr-15",
  6611. "psr-7",
  6612. "request",
  6613. "response",
  6614. "server"
  6615. ],
  6616. "support": {
  6617. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6618. },
  6619. "time": "2023-04-10T20:06:20+00:00"
  6620. },
  6621. {
  6622. "name": "psr/http-server-middleware",
  6623. "version": "1.0.2",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/php-fig/http-server-middleware.git",
  6627. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6632. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "php": ">=7.0",
  6637. "psr/http-message": "^1.0 || ^2.0",
  6638. "psr/http-server-handler": "^1.0"
  6639. },
  6640. "type": "library",
  6641. "extra": {
  6642. "branch-alias": {
  6643. "dev-master": "1.0.x-dev"
  6644. }
  6645. },
  6646. "autoload": {
  6647. "psr-4": {
  6648. "Psr\\Http\\Server\\": "src/"
  6649. }
  6650. },
  6651. "notification-url": "https://packagist.org/downloads/",
  6652. "license": [
  6653. "MIT"
  6654. ],
  6655. "authors": [
  6656. {
  6657. "name": "PHP-FIG",
  6658. "homepage": "https://www.php-fig.org/"
  6659. }
  6660. ],
  6661. "description": "Common interface for HTTP server-side middleware",
  6662. "keywords": [
  6663. "http",
  6664. "http-interop",
  6665. "middleware",
  6666. "psr",
  6667. "psr-15",
  6668. "psr-7",
  6669. "request",
  6670. "response"
  6671. ],
  6672. "support": {
  6673. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6674. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6675. },
  6676. "time": "2023-04-11T06:14:47+00:00"
  6677. },
  6678. {
  6679. "name": "psr/log",
  6680. "version": "3.0.0",
  6681. "source": {
  6682. "type": "git",
  6683. "url": "https://github.com/php-fig/log.git",
  6684. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6685. },
  6686. "dist": {
  6687. "type": "zip",
  6688. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6689. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6690. "shasum": ""
  6691. },
  6692. "require": {
  6693. "php": ">=8.0.0"
  6694. },
  6695. "type": "library",
  6696. "extra": {
  6697. "branch-alias": {
  6698. "dev-master": "3.x-dev"
  6699. }
  6700. },
  6701. "autoload": {
  6702. "psr-4": {
  6703. "Psr\\Log\\": "src"
  6704. }
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "PHP-FIG",
  6713. "homepage": "https://www.php-fig.org/"
  6714. }
  6715. ],
  6716. "description": "Common interface for logging libraries",
  6717. "homepage": "https://github.com/php-fig/log",
  6718. "keywords": [
  6719. "log",
  6720. "psr",
  6721. "psr-3"
  6722. ],
  6723. "support": {
  6724. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6725. },
  6726. "time": "2021-07-14T16:46:02+00:00"
  6727. },
  6728. {
  6729. "name": "psr/simple-cache",
  6730. "version": "3.0.0",
  6731. "source": {
  6732. "type": "git",
  6733. "url": "https://github.com/php-fig/simple-cache.git",
  6734. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6735. },
  6736. "dist": {
  6737. "type": "zip",
  6738. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6739. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6740. "shasum": ""
  6741. },
  6742. "require": {
  6743. "php": ">=8.0.0"
  6744. },
  6745. "type": "library",
  6746. "extra": {
  6747. "branch-alias": {
  6748. "dev-master": "3.0.x-dev"
  6749. }
  6750. },
  6751. "autoload": {
  6752. "psr-4": {
  6753. "Psr\\SimpleCache\\": "src/"
  6754. }
  6755. },
  6756. "notification-url": "https://packagist.org/downloads/",
  6757. "license": [
  6758. "MIT"
  6759. ],
  6760. "authors": [
  6761. {
  6762. "name": "PHP-FIG",
  6763. "homepage": "https://www.php-fig.org/"
  6764. }
  6765. ],
  6766. "description": "Common interfaces for simple caching",
  6767. "keywords": [
  6768. "cache",
  6769. "caching",
  6770. "psr",
  6771. "psr-16",
  6772. "simple-cache"
  6773. ],
  6774. "support": {
  6775. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6776. },
  6777. "time": "2021-10-29T13:26:27+00:00"
  6778. },
  6779. {
  6780. "name": "ralouphie/getallheaders",
  6781. "version": "3.0.3",
  6782. "source": {
  6783. "type": "git",
  6784. "url": "https://github.com/ralouphie/getallheaders.git",
  6785. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6786. },
  6787. "dist": {
  6788. "type": "zip",
  6789. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6790. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6791. "shasum": ""
  6792. },
  6793. "require": {
  6794. "php": ">=5.6"
  6795. },
  6796. "require-dev": {
  6797. "php-coveralls/php-coveralls": "^2.1",
  6798. "phpunit/phpunit": "^5 || ^6.5"
  6799. },
  6800. "type": "library",
  6801. "autoload": {
  6802. "files": [
  6803. "src/getallheaders.php"
  6804. ]
  6805. },
  6806. "notification-url": "https://packagist.org/downloads/",
  6807. "license": [
  6808. "MIT"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "Ralph Khattar",
  6813. "email": "ralph.khattar@gmail.com"
  6814. }
  6815. ],
  6816. "description": "A polyfill for getallheaders.",
  6817. "support": {
  6818. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6819. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6820. },
  6821. "time": "2019-03-08T08:55:37+00:00"
  6822. },
  6823. {
  6824. "name": "stella-maris/clock",
  6825. "version": "0.1.7",
  6826. "source": {
  6827. "type": "git",
  6828. "url": "https://github.com/stella-maris-solutions/clock.git",
  6829. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6830. },
  6831. "dist": {
  6832. "type": "zip",
  6833. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6834. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6835. "shasum": ""
  6836. },
  6837. "require": {
  6838. "php": "^7.0|^8.0",
  6839. "psr/clock": "^1.0"
  6840. },
  6841. "type": "library",
  6842. "autoload": {
  6843. "psr-4": {
  6844. "StellaMaris\\Clock\\": "src"
  6845. }
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Andreas Heigl",
  6854. "role": "Maintainer"
  6855. }
  6856. ],
  6857. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6858. "homepage": "https://gitlab.com/stella-maris/clock",
  6859. "keywords": [
  6860. "clock",
  6861. "datetime",
  6862. "point in time",
  6863. "psr20"
  6864. ],
  6865. "support": {
  6866. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6867. },
  6868. "time": "2022-11-25T16:15:06+00:00"
  6869. },
  6870. {
  6871. "name": "swow/psr7-plus",
  6872. "version": "v1.1.2",
  6873. "source": {
  6874. "type": "git",
  6875. "url": "https://github.com/swow/psr7-plus.git",
  6876. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6877. },
  6878. "dist": {
  6879. "type": "zip",
  6880. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6881. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6882. "shasum": ""
  6883. },
  6884. "require": {
  6885. "php": ">=8.0",
  6886. "psr/http-client": "^1.0",
  6887. "psr/http-factory": "^1.0",
  6888. "psr/http-message": "^1.1|^2.0"
  6889. },
  6890. "type": "library",
  6891. "autoload": {
  6892. "psr-4": {
  6893. "Swow\\Psr7\\Message\\": "src/Message/"
  6894. }
  6895. },
  6896. "notification-url": "https://packagist.org/downloads/",
  6897. "license": [
  6898. "Apache-2.0"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "twose",
  6903. "email": "twosee@php.net"
  6904. }
  6905. ],
  6906. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6907. "keywords": [
  6908. "http",
  6909. "psr17",
  6910. "psr7",
  6911. "swow",
  6912. "websocket"
  6913. ],
  6914. "support": {
  6915. "issues": "https://github.com/swow/swow",
  6916. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6917. },
  6918. "time": "2023-06-15T09:18:11+00:00"
  6919. },
  6920. {
  6921. "name": "symfony/console",
  6922. "version": "v6.4.8",
  6923. "source": {
  6924. "type": "git",
  6925. "url": "https://github.com/symfony/console.git",
  6926. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
  6927. },
  6928. "dist": {
  6929. "type": "zip",
  6930. "url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6931. "reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
  6932. "shasum": ""
  6933. },
  6934. "require": {
  6935. "php": ">=8.1",
  6936. "symfony/deprecation-contracts": "^2.5|^3",
  6937. "symfony/polyfill-mbstring": "~1.0",
  6938. "symfony/service-contracts": "^2.5|^3",
  6939. "symfony/string": "^5.4|^6.0|^7.0"
  6940. },
  6941. "conflict": {
  6942. "symfony/dependency-injection": "<5.4",
  6943. "symfony/dotenv": "<5.4",
  6944. "symfony/event-dispatcher": "<5.4",
  6945. "symfony/lock": "<5.4",
  6946. "symfony/process": "<5.4"
  6947. },
  6948. "provide": {
  6949. "psr/log-implementation": "1.0|2.0|3.0"
  6950. },
  6951. "require-dev": {
  6952. "psr/log": "^1|^2|^3",
  6953. "symfony/config": "^5.4|^6.0|^7.0",
  6954. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6955. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6956. "symfony/http-foundation": "^6.4|^7.0",
  6957. "symfony/http-kernel": "^6.4|^7.0",
  6958. "symfony/lock": "^5.4|^6.0|^7.0",
  6959. "symfony/messenger": "^5.4|^6.0|^7.0",
  6960. "symfony/process": "^5.4|^6.0|^7.0",
  6961. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6962. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6963. },
  6964. "type": "library",
  6965. "autoload": {
  6966. "psr-4": {
  6967. "Symfony\\Component\\Console\\": ""
  6968. },
  6969. "exclude-from-classmap": [
  6970. "/Tests/"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Fabien Potencier",
  6980. "email": "fabien@symfony.com"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "Eases the creation of beautiful and testable command line interfaces",
  6988. "homepage": "https://symfony.com",
  6989. "keywords": [
  6990. "cli",
  6991. "command-line",
  6992. "console",
  6993. "terminal"
  6994. ],
  6995. "support": {
  6996. "source": "https://github.com/symfony/console/tree/v6.4.8"
  6997. },
  6998. "funding": [
  6999. {
  7000. "url": "https://symfony.com/sponsor",
  7001. "type": "custom"
  7002. },
  7003. {
  7004. "url": "https://github.com/fabpot",
  7005. "type": "github"
  7006. },
  7007. {
  7008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7009. "type": "tidelift"
  7010. }
  7011. ],
  7012. "time": "2024-05-31T14:49:08+00:00"
  7013. },
  7014. {
  7015. "name": "symfony/deprecation-contracts",
  7016. "version": "v3.5.0",
  7017. "source": {
  7018. "type": "git",
  7019. "url": "https://github.com/symfony/deprecation-contracts.git",
  7020. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7021. },
  7022. "dist": {
  7023. "type": "zip",
  7024. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7025. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7026. "shasum": ""
  7027. },
  7028. "require": {
  7029. "php": ">=8.1"
  7030. },
  7031. "type": "library",
  7032. "extra": {
  7033. "branch-alias": {
  7034. "dev-main": "3.5-dev"
  7035. },
  7036. "thanks": {
  7037. "name": "symfony/contracts",
  7038. "url": "https://github.com/symfony/contracts"
  7039. }
  7040. },
  7041. "autoload": {
  7042. "files": [
  7043. "function.php"
  7044. ]
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Nicolas Grekas",
  7053. "email": "p@tchwork.com"
  7054. },
  7055. {
  7056. "name": "Symfony Community",
  7057. "homepage": "https://symfony.com/contributors"
  7058. }
  7059. ],
  7060. "description": "A generic function and convention to trigger deprecation notices",
  7061. "homepage": "https://symfony.com",
  7062. "support": {
  7063. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7064. },
  7065. "funding": [
  7066. {
  7067. "url": "https://symfony.com/sponsor",
  7068. "type": "custom"
  7069. },
  7070. {
  7071. "url": "https://github.com/fabpot",
  7072. "type": "github"
  7073. },
  7074. {
  7075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7076. "type": "tidelift"
  7077. }
  7078. ],
  7079. "time": "2024-04-18T09:32:20+00:00"
  7080. },
  7081. {
  7082. "name": "symfony/finder",
  7083. "version": "v6.4.8",
  7084. "source": {
  7085. "type": "git",
  7086. "url": "https://github.com/symfony/finder.git",
  7087. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c"
  7088. },
  7089. "dist": {
  7090. "type": "zip",
  7091. "url": "https://api.github.com/repos/symfony/finder/zipball/3ef977a43883215d560a2cecb82ec8e62131471c",
  7092. "reference": "3ef977a43883215d560a2cecb82ec8e62131471c",
  7093. "shasum": ""
  7094. },
  7095. "require": {
  7096. "php": ">=8.1"
  7097. },
  7098. "require-dev": {
  7099. "symfony/filesystem": "^6.0|^7.0"
  7100. },
  7101. "type": "library",
  7102. "autoload": {
  7103. "psr-4": {
  7104. "Symfony\\Component\\Finder\\": ""
  7105. },
  7106. "exclude-from-classmap": [
  7107. "/Tests/"
  7108. ]
  7109. },
  7110. "notification-url": "https://packagist.org/downloads/",
  7111. "license": [
  7112. "MIT"
  7113. ],
  7114. "authors": [
  7115. {
  7116. "name": "Fabien Potencier",
  7117. "email": "fabien@symfony.com"
  7118. },
  7119. {
  7120. "name": "Symfony Community",
  7121. "homepage": "https://symfony.com/contributors"
  7122. }
  7123. ],
  7124. "description": "Finds files and directories via an intuitive fluent interface",
  7125. "homepage": "https://symfony.com",
  7126. "support": {
  7127. "source": "https://github.com/symfony/finder/tree/v6.4.8"
  7128. },
  7129. "funding": [
  7130. {
  7131. "url": "https://symfony.com/sponsor",
  7132. "type": "custom"
  7133. },
  7134. {
  7135. "url": "https://github.com/fabpot",
  7136. "type": "github"
  7137. },
  7138. {
  7139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7140. "type": "tidelift"
  7141. }
  7142. ],
  7143. "time": "2024-05-31T14:49:08+00:00"
  7144. },
  7145. {
  7146. "name": "symfony/polyfill-ctype",
  7147. "version": "v1.29.0",
  7148. "source": {
  7149. "type": "git",
  7150. "url": "https://github.com/symfony/polyfill-ctype.git",
  7151. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  7152. },
  7153. "dist": {
  7154. "type": "zip",
  7155. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7156. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  7157. "shasum": ""
  7158. },
  7159. "require": {
  7160. "php": ">=7.1"
  7161. },
  7162. "provide": {
  7163. "ext-ctype": "*"
  7164. },
  7165. "suggest": {
  7166. "ext-ctype": "For best performance"
  7167. },
  7168. "type": "library",
  7169. "extra": {
  7170. "thanks": {
  7171. "name": "symfony/polyfill",
  7172. "url": "https://github.com/symfony/polyfill"
  7173. }
  7174. },
  7175. "autoload": {
  7176. "files": [
  7177. "bootstrap.php"
  7178. ],
  7179. "psr-4": {
  7180. "Symfony\\Polyfill\\Ctype\\": ""
  7181. }
  7182. },
  7183. "notification-url": "https://packagist.org/downloads/",
  7184. "license": [
  7185. "MIT"
  7186. ],
  7187. "authors": [
  7188. {
  7189. "name": "Gert de Pagter",
  7190. "email": "BackEndTea@gmail.com"
  7191. },
  7192. {
  7193. "name": "Symfony Community",
  7194. "homepage": "https://symfony.com/contributors"
  7195. }
  7196. ],
  7197. "description": "Symfony polyfill for ctype functions",
  7198. "homepage": "https://symfony.com",
  7199. "keywords": [
  7200. "compatibility",
  7201. "ctype",
  7202. "polyfill",
  7203. "portable"
  7204. ],
  7205. "support": {
  7206. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  7207. },
  7208. "funding": [
  7209. {
  7210. "url": "https://symfony.com/sponsor",
  7211. "type": "custom"
  7212. },
  7213. {
  7214. "url": "https://github.com/fabpot",
  7215. "type": "github"
  7216. },
  7217. {
  7218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7219. "type": "tidelift"
  7220. }
  7221. ],
  7222. "time": "2024-01-29T20:11:03+00:00"
  7223. },
  7224. {
  7225. "name": "symfony/polyfill-intl-grapheme",
  7226. "version": "v1.29.0",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7230. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7235. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  7236. "shasum": ""
  7237. },
  7238. "require": {
  7239. "php": ">=7.1"
  7240. },
  7241. "suggest": {
  7242. "ext-intl": "For best performance"
  7243. },
  7244. "type": "library",
  7245. "extra": {
  7246. "thanks": {
  7247. "name": "symfony/polyfill",
  7248. "url": "https://github.com/symfony/polyfill"
  7249. }
  7250. },
  7251. "autoload": {
  7252. "files": [
  7253. "bootstrap.php"
  7254. ],
  7255. "psr-4": {
  7256. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7257. }
  7258. },
  7259. "notification-url": "https://packagist.org/downloads/",
  7260. "license": [
  7261. "MIT"
  7262. ],
  7263. "authors": [
  7264. {
  7265. "name": "Nicolas Grekas",
  7266. "email": "p@tchwork.com"
  7267. },
  7268. {
  7269. "name": "Symfony Community",
  7270. "homepage": "https://symfony.com/contributors"
  7271. }
  7272. ],
  7273. "description": "Symfony polyfill for intl's grapheme_* functions",
  7274. "homepage": "https://symfony.com",
  7275. "keywords": [
  7276. "compatibility",
  7277. "grapheme",
  7278. "intl",
  7279. "polyfill",
  7280. "portable",
  7281. "shim"
  7282. ],
  7283. "support": {
  7284. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  7285. },
  7286. "funding": [
  7287. {
  7288. "url": "https://symfony.com/sponsor",
  7289. "type": "custom"
  7290. },
  7291. {
  7292. "url": "https://github.com/fabpot",
  7293. "type": "github"
  7294. },
  7295. {
  7296. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7297. "type": "tidelift"
  7298. }
  7299. ],
  7300. "time": "2024-01-29T20:11:03+00:00"
  7301. },
  7302. {
  7303. "name": "symfony/polyfill-intl-idn",
  7304. "version": "v1.29.0",
  7305. "source": {
  7306. "type": "git",
  7307. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7308. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
  7309. },
  7310. "dist": {
  7311. "type": "zip",
  7312. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
  7313. "reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
  7314. "shasum": ""
  7315. },
  7316. "require": {
  7317. "php": ">=7.1",
  7318. "symfony/polyfill-intl-normalizer": "^1.10",
  7319. "symfony/polyfill-php72": "^1.10"
  7320. },
  7321. "suggest": {
  7322. "ext-intl": "For best performance"
  7323. },
  7324. "type": "library",
  7325. "extra": {
  7326. "thanks": {
  7327. "name": "symfony/polyfill",
  7328. "url": "https://github.com/symfony/polyfill"
  7329. }
  7330. },
  7331. "autoload": {
  7332. "files": [
  7333. "bootstrap.php"
  7334. ],
  7335. "psr-4": {
  7336. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7337. }
  7338. },
  7339. "notification-url": "https://packagist.org/downloads/",
  7340. "license": [
  7341. "MIT"
  7342. ],
  7343. "authors": [
  7344. {
  7345. "name": "Laurent Bassin",
  7346. "email": "laurent@bassin.info"
  7347. },
  7348. {
  7349. "name": "Trevor Rowbotham",
  7350. "email": "trevor.rowbotham@pm.me"
  7351. },
  7352. {
  7353. "name": "Symfony Community",
  7354. "homepage": "https://symfony.com/contributors"
  7355. }
  7356. ],
  7357. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7358. "homepage": "https://symfony.com",
  7359. "keywords": [
  7360. "compatibility",
  7361. "idn",
  7362. "intl",
  7363. "polyfill",
  7364. "portable",
  7365. "shim"
  7366. ],
  7367. "support": {
  7368. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
  7369. },
  7370. "funding": [
  7371. {
  7372. "url": "https://symfony.com/sponsor",
  7373. "type": "custom"
  7374. },
  7375. {
  7376. "url": "https://github.com/fabpot",
  7377. "type": "github"
  7378. },
  7379. {
  7380. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7381. "type": "tidelift"
  7382. }
  7383. ],
  7384. "time": "2024-01-29T20:11:03+00:00"
  7385. },
  7386. {
  7387. "name": "symfony/polyfill-intl-normalizer",
  7388. "version": "v1.29.0",
  7389. "source": {
  7390. "type": "git",
  7391. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7392. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  7393. },
  7394. "dist": {
  7395. "type": "zip",
  7396. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  7397. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  7398. "shasum": ""
  7399. },
  7400. "require": {
  7401. "php": ">=7.1"
  7402. },
  7403. "suggest": {
  7404. "ext-intl": "For best performance"
  7405. },
  7406. "type": "library",
  7407. "extra": {
  7408. "thanks": {
  7409. "name": "symfony/polyfill",
  7410. "url": "https://github.com/symfony/polyfill"
  7411. }
  7412. },
  7413. "autoload": {
  7414. "files": [
  7415. "bootstrap.php"
  7416. ],
  7417. "psr-4": {
  7418. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7419. },
  7420. "classmap": [
  7421. "Resources/stubs"
  7422. ]
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Nicolas Grekas",
  7431. "email": "p@tchwork.com"
  7432. },
  7433. {
  7434. "name": "Symfony Community",
  7435. "homepage": "https://symfony.com/contributors"
  7436. }
  7437. ],
  7438. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7439. "homepage": "https://symfony.com",
  7440. "keywords": [
  7441. "compatibility",
  7442. "intl",
  7443. "normalizer",
  7444. "polyfill",
  7445. "portable",
  7446. "shim"
  7447. ],
  7448. "support": {
  7449. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  7450. },
  7451. "funding": [
  7452. {
  7453. "url": "https://symfony.com/sponsor",
  7454. "type": "custom"
  7455. },
  7456. {
  7457. "url": "https://github.com/fabpot",
  7458. "type": "github"
  7459. },
  7460. {
  7461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7462. "type": "tidelift"
  7463. }
  7464. ],
  7465. "time": "2024-01-29T20:11:03+00:00"
  7466. },
  7467. {
  7468. "name": "symfony/polyfill-mbstring",
  7469. "version": "v1.29.0",
  7470. "source": {
  7471. "type": "git",
  7472. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7473. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  7474. },
  7475. "dist": {
  7476. "type": "zip",
  7477. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7478. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  7479. "shasum": ""
  7480. },
  7481. "require": {
  7482. "php": ">=7.1"
  7483. },
  7484. "provide": {
  7485. "ext-mbstring": "*"
  7486. },
  7487. "suggest": {
  7488. "ext-mbstring": "For best performance"
  7489. },
  7490. "type": "library",
  7491. "extra": {
  7492. "thanks": {
  7493. "name": "symfony/polyfill",
  7494. "url": "https://github.com/symfony/polyfill"
  7495. }
  7496. },
  7497. "autoload": {
  7498. "files": [
  7499. "bootstrap.php"
  7500. ],
  7501. "psr-4": {
  7502. "Symfony\\Polyfill\\Mbstring\\": ""
  7503. }
  7504. },
  7505. "notification-url": "https://packagist.org/downloads/",
  7506. "license": [
  7507. "MIT"
  7508. ],
  7509. "authors": [
  7510. {
  7511. "name": "Nicolas Grekas",
  7512. "email": "p@tchwork.com"
  7513. },
  7514. {
  7515. "name": "Symfony Community",
  7516. "homepage": "https://symfony.com/contributors"
  7517. }
  7518. ],
  7519. "description": "Symfony polyfill for the Mbstring extension",
  7520. "homepage": "https://symfony.com",
  7521. "keywords": [
  7522. "compatibility",
  7523. "mbstring",
  7524. "polyfill",
  7525. "portable",
  7526. "shim"
  7527. ],
  7528. "support": {
  7529. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  7530. },
  7531. "funding": [
  7532. {
  7533. "url": "https://symfony.com/sponsor",
  7534. "type": "custom"
  7535. },
  7536. {
  7537. "url": "https://github.com/fabpot",
  7538. "type": "github"
  7539. },
  7540. {
  7541. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7542. "type": "tidelift"
  7543. }
  7544. ],
  7545. "time": "2024-01-29T20:11:03+00:00"
  7546. },
  7547. {
  7548. "name": "symfony/polyfill-php72",
  7549. "version": "v1.29.0",
  7550. "source": {
  7551. "type": "git",
  7552. "url": "https://github.com/symfony/polyfill-php72.git",
  7553. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  7554. },
  7555. "dist": {
  7556. "type": "zip",
  7557. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7558. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  7559. "shasum": ""
  7560. },
  7561. "require": {
  7562. "php": ">=7.1"
  7563. },
  7564. "type": "library",
  7565. "extra": {
  7566. "thanks": {
  7567. "name": "symfony/polyfill",
  7568. "url": "https://github.com/symfony/polyfill"
  7569. }
  7570. },
  7571. "autoload": {
  7572. "files": [
  7573. "bootstrap.php"
  7574. ],
  7575. "psr-4": {
  7576. "Symfony\\Polyfill\\Php72\\": ""
  7577. }
  7578. },
  7579. "notification-url": "https://packagist.org/downloads/",
  7580. "license": [
  7581. "MIT"
  7582. ],
  7583. "authors": [
  7584. {
  7585. "name": "Nicolas Grekas",
  7586. "email": "p@tchwork.com"
  7587. },
  7588. {
  7589. "name": "Symfony Community",
  7590. "homepage": "https://symfony.com/contributors"
  7591. }
  7592. ],
  7593. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7594. "homepage": "https://symfony.com",
  7595. "keywords": [
  7596. "compatibility",
  7597. "polyfill",
  7598. "portable",
  7599. "shim"
  7600. ],
  7601. "support": {
  7602. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  7603. },
  7604. "funding": [
  7605. {
  7606. "url": "https://symfony.com/sponsor",
  7607. "type": "custom"
  7608. },
  7609. {
  7610. "url": "https://github.com/fabpot",
  7611. "type": "github"
  7612. },
  7613. {
  7614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7615. "type": "tidelift"
  7616. }
  7617. ],
  7618. "time": "2024-01-29T20:11:03+00:00"
  7619. },
  7620. {
  7621. "name": "symfony/polyfill-php80",
  7622. "version": "v1.29.0",
  7623. "source": {
  7624. "type": "git",
  7625. "url": "https://github.com/symfony/polyfill-php80.git",
  7626. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  7627. },
  7628. "dist": {
  7629. "type": "zip",
  7630. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7631. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  7632. "shasum": ""
  7633. },
  7634. "require": {
  7635. "php": ">=7.1"
  7636. },
  7637. "type": "library",
  7638. "extra": {
  7639. "thanks": {
  7640. "name": "symfony/polyfill",
  7641. "url": "https://github.com/symfony/polyfill"
  7642. }
  7643. },
  7644. "autoload": {
  7645. "files": [
  7646. "bootstrap.php"
  7647. ],
  7648. "psr-4": {
  7649. "Symfony\\Polyfill\\Php80\\": ""
  7650. },
  7651. "classmap": [
  7652. "Resources/stubs"
  7653. ]
  7654. },
  7655. "notification-url": "https://packagist.org/downloads/",
  7656. "license": [
  7657. "MIT"
  7658. ],
  7659. "authors": [
  7660. {
  7661. "name": "Ion Bazan",
  7662. "email": "ion.bazan@gmail.com"
  7663. },
  7664. {
  7665. "name": "Nicolas Grekas",
  7666. "email": "p@tchwork.com"
  7667. },
  7668. {
  7669. "name": "Symfony Community",
  7670. "homepage": "https://symfony.com/contributors"
  7671. }
  7672. ],
  7673. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7674. "homepage": "https://symfony.com",
  7675. "keywords": [
  7676. "compatibility",
  7677. "polyfill",
  7678. "portable",
  7679. "shim"
  7680. ],
  7681. "support": {
  7682. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  7683. },
  7684. "funding": [
  7685. {
  7686. "url": "https://symfony.com/sponsor",
  7687. "type": "custom"
  7688. },
  7689. {
  7690. "url": "https://github.com/fabpot",
  7691. "type": "github"
  7692. },
  7693. {
  7694. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7695. "type": "tidelift"
  7696. }
  7697. ],
  7698. "time": "2024-01-29T20:11:03+00:00"
  7699. },
  7700. {
  7701. "name": "symfony/service-contracts",
  7702. "version": "v3.5.0",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/symfony/service-contracts.git",
  7706. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7711. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7712. "shasum": ""
  7713. },
  7714. "require": {
  7715. "php": ">=8.1",
  7716. "psr/container": "^1.1|^2.0",
  7717. "symfony/deprecation-contracts": "^2.5|^3"
  7718. },
  7719. "conflict": {
  7720. "ext-psr": "<1.1|>=2"
  7721. },
  7722. "type": "library",
  7723. "extra": {
  7724. "branch-alias": {
  7725. "dev-main": "3.5-dev"
  7726. },
  7727. "thanks": {
  7728. "name": "symfony/contracts",
  7729. "url": "https://github.com/symfony/contracts"
  7730. }
  7731. },
  7732. "autoload": {
  7733. "psr-4": {
  7734. "Symfony\\Contracts\\Service\\": ""
  7735. },
  7736. "exclude-from-classmap": [
  7737. "/Test/"
  7738. ]
  7739. },
  7740. "notification-url": "https://packagist.org/downloads/",
  7741. "license": [
  7742. "MIT"
  7743. ],
  7744. "authors": [
  7745. {
  7746. "name": "Nicolas Grekas",
  7747. "email": "p@tchwork.com"
  7748. },
  7749. {
  7750. "name": "Symfony Community",
  7751. "homepage": "https://symfony.com/contributors"
  7752. }
  7753. ],
  7754. "description": "Generic abstractions related to writing services",
  7755. "homepage": "https://symfony.com",
  7756. "keywords": [
  7757. "abstractions",
  7758. "contracts",
  7759. "decoupling",
  7760. "interfaces",
  7761. "interoperability",
  7762. "standards"
  7763. ],
  7764. "support": {
  7765. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2024-04-18T09:32:20+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/string",
  7785. "version": "v6.4.8",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/string.git",
  7789. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7794. "reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=8.1",
  7799. "symfony/polyfill-ctype": "~1.8",
  7800. "symfony/polyfill-intl-grapheme": "~1.0",
  7801. "symfony/polyfill-intl-normalizer": "~1.0",
  7802. "symfony/polyfill-mbstring": "~1.0"
  7803. },
  7804. "conflict": {
  7805. "symfony/translation-contracts": "<2.5"
  7806. },
  7807. "require-dev": {
  7808. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7809. "symfony/http-client": "^5.4|^6.0|^7.0",
  7810. "symfony/intl": "^6.2|^7.0",
  7811. "symfony/translation-contracts": "^2.5|^3.0",
  7812. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7813. },
  7814. "type": "library",
  7815. "autoload": {
  7816. "files": [
  7817. "Resources/functions.php"
  7818. ],
  7819. "psr-4": {
  7820. "Symfony\\Component\\String\\": ""
  7821. },
  7822. "exclude-from-classmap": [
  7823. "/Tests/"
  7824. ]
  7825. },
  7826. "notification-url": "https://packagist.org/downloads/",
  7827. "license": [
  7828. "MIT"
  7829. ],
  7830. "authors": [
  7831. {
  7832. "name": "Nicolas Grekas",
  7833. "email": "p@tchwork.com"
  7834. },
  7835. {
  7836. "name": "Symfony Community",
  7837. "homepage": "https://symfony.com/contributors"
  7838. }
  7839. ],
  7840. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7841. "homepage": "https://symfony.com",
  7842. "keywords": [
  7843. "grapheme",
  7844. "i18n",
  7845. "string",
  7846. "unicode",
  7847. "utf-8",
  7848. "utf8"
  7849. ],
  7850. "support": {
  7851. "source": "https://github.com/symfony/string/tree/v6.4.8"
  7852. },
  7853. "funding": [
  7854. {
  7855. "url": "https://symfony.com/sponsor",
  7856. "type": "custom"
  7857. },
  7858. {
  7859. "url": "https://github.com/fabpot",
  7860. "type": "github"
  7861. },
  7862. {
  7863. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7864. "type": "tidelift"
  7865. }
  7866. ],
  7867. "time": "2024-05-31T14:49:08+00:00"
  7868. },
  7869. {
  7870. "name": "symfony/translation",
  7871. "version": "v6.4.8",
  7872. "source": {
  7873. "type": "git",
  7874. "url": "https://github.com/symfony/translation.git",
  7875. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a"
  7876. },
  7877. "dist": {
  7878. "type": "zip",
  7879. "url": "https://api.github.com/repos/symfony/translation/zipball/a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7880. "reference": "a002933b13989fc4bd0b58e04bf7eec5210e438a",
  7881. "shasum": ""
  7882. },
  7883. "require": {
  7884. "php": ">=8.1",
  7885. "symfony/deprecation-contracts": "^2.5|^3",
  7886. "symfony/polyfill-mbstring": "~1.0",
  7887. "symfony/translation-contracts": "^2.5|^3.0"
  7888. },
  7889. "conflict": {
  7890. "symfony/config": "<5.4",
  7891. "symfony/console": "<5.4",
  7892. "symfony/dependency-injection": "<5.4",
  7893. "symfony/http-client-contracts": "<2.5",
  7894. "symfony/http-kernel": "<5.4",
  7895. "symfony/service-contracts": "<2.5",
  7896. "symfony/twig-bundle": "<5.4",
  7897. "symfony/yaml": "<5.4"
  7898. },
  7899. "provide": {
  7900. "symfony/translation-implementation": "2.3|3.0"
  7901. },
  7902. "require-dev": {
  7903. "nikic/php-parser": "^4.18|^5.0",
  7904. "psr/log": "^1|^2|^3",
  7905. "symfony/config": "^5.4|^6.0|^7.0",
  7906. "symfony/console": "^5.4|^6.0|^7.0",
  7907. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7908. "symfony/finder": "^5.4|^6.0|^7.0",
  7909. "symfony/http-client-contracts": "^2.5|^3.0",
  7910. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7911. "symfony/intl": "^5.4|^6.0|^7.0",
  7912. "symfony/polyfill-intl-icu": "^1.21",
  7913. "symfony/routing": "^5.4|^6.0|^7.0",
  7914. "symfony/service-contracts": "^2.5|^3",
  7915. "symfony/yaml": "^5.4|^6.0|^7.0"
  7916. },
  7917. "type": "library",
  7918. "autoload": {
  7919. "files": [
  7920. "Resources/functions.php"
  7921. ],
  7922. "psr-4": {
  7923. "Symfony\\Component\\Translation\\": ""
  7924. },
  7925. "exclude-from-classmap": [
  7926. "/Tests/"
  7927. ]
  7928. },
  7929. "notification-url": "https://packagist.org/downloads/",
  7930. "license": [
  7931. "MIT"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "Fabien Potencier",
  7936. "email": "fabien@symfony.com"
  7937. },
  7938. {
  7939. "name": "Symfony Community",
  7940. "homepage": "https://symfony.com/contributors"
  7941. }
  7942. ],
  7943. "description": "Provides tools to internationalize your application",
  7944. "homepage": "https://symfony.com",
  7945. "support": {
  7946. "source": "https://github.com/symfony/translation/tree/v6.4.8"
  7947. },
  7948. "funding": [
  7949. {
  7950. "url": "https://symfony.com/sponsor",
  7951. "type": "custom"
  7952. },
  7953. {
  7954. "url": "https://github.com/fabpot",
  7955. "type": "github"
  7956. },
  7957. {
  7958. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7959. "type": "tidelift"
  7960. }
  7961. ],
  7962. "time": "2024-05-31T14:49:08+00:00"
  7963. },
  7964. {
  7965. "name": "symfony/translation-contracts",
  7966. "version": "v3.5.0",
  7967. "source": {
  7968. "type": "git",
  7969. "url": "https://github.com/symfony/translation-contracts.git",
  7970. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7971. },
  7972. "dist": {
  7973. "type": "zip",
  7974. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7975. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7976. "shasum": ""
  7977. },
  7978. "require": {
  7979. "php": ">=8.1"
  7980. },
  7981. "type": "library",
  7982. "extra": {
  7983. "branch-alias": {
  7984. "dev-main": "3.5-dev"
  7985. },
  7986. "thanks": {
  7987. "name": "symfony/contracts",
  7988. "url": "https://github.com/symfony/contracts"
  7989. }
  7990. },
  7991. "autoload": {
  7992. "psr-4": {
  7993. "Symfony\\Contracts\\Translation\\": ""
  7994. },
  7995. "exclude-from-classmap": [
  7996. "/Test/"
  7997. ]
  7998. },
  7999. "notification-url": "https://packagist.org/downloads/",
  8000. "license": [
  8001. "MIT"
  8002. ],
  8003. "authors": [
  8004. {
  8005. "name": "Nicolas Grekas",
  8006. "email": "p@tchwork.com"
  8007. },
  8008. {
  8009. "name": "Symfony Community",
  8010. "homepage": "https://symfony.com/contributors"
  8011. }
  8012. ],
  8013. "description": "Generic abstractions related to translation",
  8014. "homepage": "https://symfony.com",
  8015. "keywords": [
  8016. "abstractions",
  8017. "contracts",
  8018. "decoupling",
  8019. "interfaces",
  8020. "interoperability",
  8021. "standards"
  8022. ],
  8023. "support": {
  8024. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  8025. },
  8026. "funding": [
  8027. {
  8028. "url": "https://symfony.com/sponsor",
  8029. "type": "custom"
  8030. },
  8031. {
  8032. "url": "https://github.com/fabpot",
  8033. "type": "github"
  8034. },
  8035. {
  8036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8037. "type": "tidelift"
  8038. }
  8039. ],
  8040. "time": "2024-04-18T09:32:20+00:00"
  8041. },
  8042. {
  8043. "name": "vlucas/phpdotenv",
  8044. "version": "v5.6.0",
  8045. "source": {
  8046. "type": "git",
  8047. "url": "https://github.com/vlucas/phpdotenv.git",
  8048. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  8049. },
  8050. "dist": {
  8051. "type": "zip",
  8052. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8053. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  8054. "shasum": ""
  8055. },
  8056. "require": {
  8057. "ext-pcre": "*",
  8058. "graham-campbell/result-type": "^1.1.2",
  8059. "php": "^7.2.5 || ^8.0",
  8060. "phpoption/phpoption": "^1.9.2",
  8061. "symfony/polyfill-ctype": "^1.24",
  8062. "symfony/polyfill-mbstring": "^1.24",
  8063. "symfony/polyfill-php80": "^1.24"
  8064. },
  8065. "require-dev": {
  8066. "bamarni/composer-bin-plugin": "^1.8.2",
  8067. "ext-filter": "*",
  8068. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  8069. },
  8070. "suggest": {
  8071. "ext-filter": "Required to use the boolean validator."
  8072. },
  8073. "type": "library",
  8074. "extra": {
  8075. "bamarni-bin": {
  8076. "bin-links": true,
  8077. "forward-command": true
  8078. },
  8079. "branch-alias": {
  8080. "dev-master": "5.6-dev"
  8081. }
  8082. },
  8083. "autoload": {
  8084. "psr-4": {
  8085. "Dotenv\\": "src/"
  8086. }
  8087. },
  8088. "notification-url": "https://packagist.org/downloads/",
  8089. "license": [
  8090. "BSD-3-Clause"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Graham Campbell",
  8095. "email": "hello@gjcampbell.co.uk",
  8096. "homepage": "https://github.com/GrahamCampbell"
  8097. },
  8098. {
  8099. "name": "Vance Lucas",
  8100. "email": "vance@vancelucas.com",
  8101. "homepage": "https://github.com/vlucas"
  8102. }
  8103. ],
  8104. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8105. "keywords": [
  8106. "dotenv",
  8107. "env",
  8108. "environment"
  8109. ],
  8110. "support": {
  8111. "issues": "https://github.com/vlucas/phpdotenv/issues",
  8112. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  8113. },
  8114. "funding": [
  8115. {
  8116. "url": "https://github.com/GrahamCampbell",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  8121. "type": "tidelift"
  8122. }
  8123. ],
  8124. "time": "2023-11-12T22:43:29+00:00"
  8125. }
  8126. ],
  8127. "packages-dev": [
  8128. {
  8129. "name": "clue/ndjson-react",
  8130. "version": "v1.3.0",
  8131. "source": {
  8132. "type": "git",
  8133. "url": "https://github.com/clue/reactphp-ndjson.git",
  8134. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  8135. },
  8136. "dist": {
  8137. "type": "zip",
  8138. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  8139. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  8140. "shasum": ""
  8141. },
  8142. "require": {
  8143. "php": ">=5.3",
  8144. "react/stream": "^1.2"
  8145. },
  8146. "require-dev": {
  8147. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  8148. "react/event-loop": "^1.2"
  8149. },
  8150. "type": "library",
  8151. "autoload": {
  8152. "psr-4": {
  8153. "Clue\\React\\NDJson\\": "src/"
  8154. }
  8155. },
  8156. "notification-url": "https://packagist.org/downloads/",
  8157. "license": [
  8158. "MIT"
  8159. ],
  8160. "authors": [
  8161. {
  8162. "name": "Christian Lück",
  8163. "email": "christian@clue.engineering"
  8164. }
  8165. ],
  8166. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  8167. "homepage": "https://github.com/clue/reactphp-ndjson",
  8168. "keywords": [
  8169. "NDJSON",
  8170. "json",
  8171. "jsonlines",
  8172. "newline",
  8173. "reactphp",
  8174. "streaming"
  8175. ],
  8176. "support": {
  8177. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  8178. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  8179. },
  8180. "funding": [
  8181. {
  8182. "url": "https://clue.engineering/support",
  8183. "type": "custom"
  8184. },
  8185. {
  8186. "url": "https://github.com/clue",
  8187. "type": "github"
  8188. }
  8189. ],
  8190. "time": "2022-12-23T10:58:28+00:00"
  8191. },
  8192. {
  8193. "name": "composer/pcre",
  8194. "version": "3.1.4",
  8195. "source": {
  8196. "type": "git",
  8197. "url": "https://github.com/composer/pcre.git",
  8198. "reference": "04229f163664973f68f38f6f73d917799168ef24"
  8199. },
  8200. "dist": {
  8201. "type": "zip",
  8202. "url": "https://api.github.com/repos/composer/pcre/zipball/04229f163664973f68f38f6f73d917799168ef24",
  8203. "reference": "04229f163664973f68f38f6f73d917799168ef24",
  8204. "shasum": ""
  8205. },
  8206. "require": {
  8207. "php": "^7.4 || ^8.0"
  8208. },
  8209. "require-dev": {
  8210. "phpstan/phpstan": "^1.3",
  8211. "phpstan/phpstan-strict-rules": "^1.1",
  8212. "symfony/phpunit-bridge": "^5"
  8213. },
  8214. "type": "library",
  8215. "extra": {
  8216. "branch-alias": {
  8217. "dev-main": "3.x-dev"
  8218. }
  8219. },
  8220. "autoload": {
  8221. "psr-4": {
  8222. "Composer\\Pcre\\": "src"
  8223. }
  8224. },
  8225. "notification-url": "https://packagist.org/downloads/",
  8226. "license": [
  8227. "MIT"
  8228. ],
  8229. "authors": [
  8230. {
  8231. "name": "Jordi Boggiano",
  8232. "email": "j.boggiano@seld.be",
  8233. "homepage": "http://seld.be"
  8234. }
  8235. ],
  8236. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8237. "keywords": [
  8238. "PCRE",
  8239. "preg",
  8240. "regex",
  8241. "regular expression"
  8242. ],
  8243. "support": {
  8244. "issues": "https://github.com/composer/pcre/issues",
  8245. "source": "https://github.com/composer/pcre/tree/3.1.4"
  8246. },
  8247. "funding": [
  8248. {
  8249. "url": "https://packagist.com",
  8250. "type": "custom"
  8251. },
  8252. {
  8253. "url": "https://github.com/composer",
  8254. "type": "github"
  8255. },
  8256. {
  8257. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8258. "type": "tidelift"
  8259. }
  8260. ],
  8261. "time": "2024-05-27T13:40:54+00:00"
  8262. },
  8263. {
  8264. "name": "composer/semver",
  8265. "version": "3.4.0",
  8266. "source": {
  8267. "type": "git",
  8268. "url": "https://github.com/composer/semver.git",
  8269. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  8270. },
  8271. "dist": {
  8272. "type": "zip",
  8273. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  8274. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  8275. "shasum": ""
  8276. },
  8277. "require": {
  8278. "php": "^5.3.2 || ^7.0 || ^8.0"
  8279. },
  8280. "require-dev": {
  8281. "phpstan/phpstan": "^1.4",
  8282. "symfony/phpunit-bridge": "^4.2 || ^5"
  8283. },
  8284. "type": "library",
  8285. "extra": {
  8286. "branch-alias": {
  8287. "dev-main": "3.x-dev"
  8288. }
  8289. },
  8290. "autoload": {
  8291. "psr-4": {
  8292. "Composer\\Semver\\": "src"
  8293. }
  8294. },
  8295. "notification-url": "https://packagist.org/downloads/",
  8296. "license": [
  8297. "MIT"
  8298. ],
  8299. "authors": [
  8300. {
  8301. "name": "Nils Adermann",
  8302. "email": "naderman@naderman.de",
  8303. "homepage": "http://www.naderman.de"
  8304. },
  8305. {
  8306. "name": "Jordi Boggiano",
  8307. "email": "j.boggiano@seld.be",
  8308. "homepage": "http://seld.be"
  8309. },
  8310. {
  8311. "name": "Rob Bast",
  8312. "email": "rob.bast@gmail.com",
  8313. "homepage": "http://robbast.nl"
  8314. }
  8315. ],
  8316. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8317. "keywords": [
  8318. "semantic",
  8319. "semver",
  8320. "validation",
  8321. "versioning"
  8322. ],
  8323. "support": {
  8324. "irc": "ircs://irc.libera.chat:6697/composer",
  8325. "issues": "https://github.com/composer/semver/issues",
  8326. "source": "https://github.com/composer/semver/tree/3.4.0"
  8327. },
  8328. "funding": [
  8329. {
  8330. "url": "https://packagist.com",
  8331. "type": "custom"
  8332. },
  8333. {
  8334. "url": "https://github.com/composer",
  8335. "type": "github"
  8336. },
  8337. {
  8338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8339. "type": "tidelift"
  8340. }
  8341. ],
  8342. "time": "2023-08-31T09:50:34+00:00"
  8343. },
  8344. {
  8345. "name": "composer/xdebug-handler",
  8346. "version": "3.0.5",
  8347. "source": {
  8348. "type": "git",
  8349. "url": "https://github.com/composer/xdebug-handler.git",
  8350. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8351. },
  8352. "dist": {
  8353. "type": "zip",
  8354. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8355. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8356. "shasum": ""
  8357. },
  8358. "require": {
  8359. "composer/pcre": "^1 || ^2 || ^3",
  8360. "php": "^7.2.5 || ^8.0",
  8361. "psr/log": "^1 || ^2 || ^3"
  8362. },
  8363. "require-dev": {
  8364. "phpstan/phpstan": "^1.0",
  8365. "phpstan/phpstan-strict-rules": "^1.1",
  8366. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8367. },
  8368. "type": "library",
  8369. "autoload": {
  8370. "psr-4": {
  8371. "Composer\\XdebugHandler\\": "src"
  8372. }
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "John Stevenson",
  8381. "email": "john-stevenson@blueyonder.co.uk"
  8382. }
  8383. ],
  8384. "description": "Restarts a process without Xdebug.",
  8385. "keywords": [
  8386. "Xdebug",
  8387. "performance"
  8388. ],
  8389. "support": {
  8390. "irc": "ircs://irc.libera.chat:6697/composer",
  8391. "issues": "https://github.com/composer/xdebug-handler/issues",
  8392. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8393. },
  8394. "funding": [
  8395. {
  8396. "url": "https://packagist.com",
  8397. "type": "custom"
  8398. },
  8399. {
  8400. "url": "https://github.com/composer",
  8401. "type": "github"
  8402. },
  8403. {
  8404. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8405. "type": "tidelift"
  8406. }
  8407. ],
  8408. "time": "2024-05-06T16:37:16+00:00"
  8409. },
  8410. {
  8411. "name": "evenement/evenement",
  8412. "version": "v3.0.2",
  8413. "source": {
  8414. "type": "git",
  8415. "url": "https://github.com/igorw/evenement.git",
  8416. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8417. },
  8418. "dist": {
  8419. "type": "zip",
  8420. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8421. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8422. "shasum": ""
  8423. },
  8424. "require": {
  8425. "php": ">=7.0"
  8426. },
  8427. "require-dev": {
  8428. "phpunit/phpunit": "^9 || ^6"
  8429. },
  8430. "type": "library",
  8431. "autoload": {
  8432. "psr-4": {
  8433. "Evenement\\": "src/"
  8434. }
  8435. },
  8436. "notification-url": "https://packagist.org/downloads/",
  8437. "license": [
  8438. "MIT"
  8439. ],
  8440. "authors": [
  8441. {
  8442. "name": "Igor Wiedler",
  8443. "email": "igor@wiedler.ch"
  8444. }
  8445. ],
  8446. "description": "Événement is a very simple event dispatching library for PHP",
  8447. "keywords": [
  8448. "event-dispatcher",
  8449. "event-emitter"
  8450. ],
  8451. "support": {
  8452. "issues": "https://github.com/igorw/evenement/issues",
  8453. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8454. },
  8455. "time": "2023-08-08T05:53:35+00:00"
  8456. },
  8457. {
  8458. "name": "fidry/cpu-core-counter",
  8459. "version": "1.1.0",
  8460. "source": {
  8461. "type": "git",
  8462. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8463. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42"
  8464. },
  8465. "dist": {
  8466. "type": "zip",
  8467. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8468. "reference": "f92996c4d5c1a696a6a970e20f7c4216200fcc42",
  8469. "shasum": ""
  8470. },
  8471. "require": {
  8472. "php": "^7.2 || ^8.0"
  8473. },
  8474. "require-dev": {
  8475. "fidry/makefile": "^0.2.0",
  8476. "fidry/php-cs-fixer-config": "^1.1.2",
  8477. "phpstan/extension-installer": "^1.2.0",
  8478. "phpstan/phpstan": "^1.9.2",
  8479. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8480. "phpstan/phpstan-phpunit": "^1.2.2",
  8481. "phpstan/phpstan-strict-rules": "^1.4.4",
  8482. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8483. "webmozarts/strict-phpunit": "^7.5"
  8484. },
  8485. "type": "library",
  8486. "autoload": {
  8487. "psr-4": {
  8488. "Fidry\\CpuCoreCounter\\": "src/"
  8489. }
  8490. },
  8491. "notification-url": "https://packagist.org/downloads/",
  8492. "license": [
  8493. "MIT"
  8494. ],
  8495. "authors": [
  8496. {
  8497. "name": "Théo FIDRY",
  8498. "email": "theo.fidry@gmail.com"
  8499. }
  8500. ],
  8501. "description": "Tiny utility to get the number of CPU cores.",
  8502. "keywords": [
  8503. "CPU",
  8504. "core"
  8505. ],
  8506. "support": {
  8507. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8508. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.1.0"
  8509. },
  8510. "funding": [
  8511. {
  8512. "url": "https://github.com/theofidry",
  8513. "type": "github"
  8514. }
  8515. ],
  8516. "time": "2024-02-07T09:43:46+00:00"
  8517. },
  8518. {
  8519. "name": "friendsofphp/php-cs-fixer",
  8520. "version": "v3.58.1",
  8521. "source": {
  8522. "type": "git",
  8523. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8524. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff"
  8525. },
  8526. "dist": {
  8527. "type": "zip",
  8528. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/04e9424025677a86914b9a4944dbbf4060bb0aff",
  8529. "reference": "04e9424025677a86914b9a4944dbbf4060bb0aff",
  8530. "shasum": ""
  8531. },
  8532. "require": {
  8533. "clue/ndjson-react": "^1.0",
  8534. "composer/semver": "^3.4",
  8535. "composer/xdebug-handler": "^3.0.3",
  8536. "ext-filter": "*",
  8537. "ext-json": "*",
  8538. "ext-tokenizer": "*",
  8539. "fidry/cpu-core-counter": "^1.0",
  8540. "php": "^7.4 || ^8.0",
  8541. "react/child-process": "^0.6.5",
  8542. "react/event-loop": "^1.0",
  8543. "react/promise": "^2.0 || ^3.0",
  8544. "react/socket": "^1.0",
  8545. "react/stream": "^1.0",
  8546. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8547. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8548. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8549. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8550. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8551. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8552. "symfony/polyfill-mbstring": "^1.28",
  8553. "symfony/polyfill-php80": "^1.28",
  8554. "symfony/polyfill-php81": "^1.28",
  8555. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8556. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8557. },
  8558. "require-dev": {
  8559. "facile-it/paraunit": "^1.3 || ^2.0",
  8560. "infection/infection": "^0.27.11",
  8561. "justinrainbow/json-schema": "^5.2",
  8562. "keradus/cli-executor": "^2.1",
  8563. "mikey179/vfsstream": "^1.6.11",
  8564. "php-coveralls/php-coveralls": "^2.7",
  8565. "php-cs-fixer/accessible-object": "^1.1",
  8566. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  8567. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  8568. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  8569. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8570. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8571. },
  8572. "suggest": {
  8573. "ext-dom": "For handling output formats in XML",
  8574. "ext-mbstring": "For handling non-UTF8 characters."
  8575. },
  8576. "bin": [
  8577. "php-cs-fixer"
  8578. ],
  8579. "type": "application",
  8580. "autoload": {
  8581. "psr-4": {
  8582. "PhpCsFixer\\": "src/"
  8583. }
  8584. },
  8585. "notification-url": "https://packagist.org/downloads/",
  8586. "license": [
  8587. "MIT"
  8588. ],
  8589. "authors": [
  8590. {
  8591. "name": "Fabien Potencier",
  8592. "email": "fabien@symfony.com"
  8593. },
  8594. {
  8595. "name": "Dariusz Rumiński",
  8596. "email": "dariusz.ruminski@gmail.com"
  8597. }
  8598. ],
  8599. "description": "A tool to automatically fix PHP code style",
  8600. "keywords": [
  8601. "Static code analysis",
  8602. "fixer",
  8603. "standards",
  8604. "static analysis"
  8605. ],
  8606. "support": {
  8607. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8608. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.58.1"
  8609. },
  8610. "funding": [
  8611. {
  8612. "url": "https://github.com/keradus",
  8613. "type": "github"
  8614. }
  8615. ],
  8616. "time": "2024-05-29T16:39:07+00:00"
  8617. },
  8618. {
  8619. "name": "hamcrest/hamcrest-php",
  8620. "version": "v2.0.1",
  8621. "source": {
  8622. "type": "git",
  8623. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8624. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8625. },
  8626. "dist": {
  8627. "type": "zip",
  8628. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8629. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8630. "shasum": ""
  8631. },
  8632. "require": {
  8633. "php": "^5.3|^7.0|^8.0"
  8634. },
  8635. "replace": {
  8636. "cordoval/hamcrest-php": "*",
  8637. "davedevelopment/hamcrest-php": "*",
  8638. "kodova/hamcrest-php": "*"
  8639. },
  8640. "require-dev": {
  8641. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8642. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8643. },
  8644. "type": "library",
  8645. "extra": {
  8646. "branch-alias": {
  8647. "dev-master": "2.1-dev"
  8648. }
  8649. },
  8650. "autoload": {
  8651. "classmap": [
  8652. "hamcrest"
  8653. ]
  8654. },
  8655. "notification-url": "https://packagist.org/downloads/",
  8656. "license": [
  8657. "BSD-3-Clause"
  8658. ],
  8659. "description": "This is the PHP port of Hamcrest Matchers",
  8660. "keywords": [
  8661. "test"
  8662. ],
  8663. "support": {
  8664. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8665. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8666. },
  8667. "time": "2020-07-09T08:09:16+00:00"
  8668. },
  8669. {
  8670. "name": "hyperf/devtool",
  8671. "version": "v3.1.19",
  8672. "source": {
  8673. "type": "git",
  8674. "url": "https://github.com/hyperf/devtool.git",
  8675. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476"
  8676. },
  8677. "dist": {
  8678. "type": "zip",
  8679. "url": "https://api.github.com/repos/hyperf/devtool/zipball/cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8680. "reference": "cdce9f26c3a18d5d0302acdf83d26d4686223476",
  8681. "shasum": ""
  8682. },
  8683. "require": {
  8684. "hyperf/code-parser": "~3.1.0",
  8685. "hyperf/command": "~3.1.0",
  8686. "hyperf/contract": "~3.1.0",
  8687. "hyperf/di": "~3.1.0",
  8688. "hyperf/support": "~3.1.0",
  8689. "hyperf/utils": "~3.1.0",
  8690. "php": ">=8.1"
  8691. },
  8692. "type": "library",
  8693. "extra": {
  8694. "branch-alias": {
  8695. "dev-master": "3.1-dev"
  8696. },
  8697. "hyperf": {
  8698. "config": "Hyperf\\Devtool\\ConfigProvider"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "psr-4": {
  8703. "Hyperf\\Devtool\\": "src/"
  8704. }
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "MIT"
  8709. ],
  8710. "description": "A Devtool for Hyperf.",
  8711. "homepage": "https://hyperf.io",
  8712. "keywords": [
  8713. "dev",
  8714. "devtool",
  8715. "hyperf",
  8716. "php",
  8717. "swoole"
  8718. ],
  8719. "support": {
  8720. "docs": "https://hyperf.wiki",
  8721. "issues": "https://github.com/hyperf/hyperf/issues",
  8722. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8723. "source": "https://github.com/hyperf/hyperf"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8728. "type": "custom"
  8729. },
  8730. {
  8731. "url": "https://opencollective.com/hyperf",
  8732. "type": "open_collective"
  8733. }
  8734. ],
  8735. "time": "2024-04-13T06:53:08+00:00"
  8736. },
  8737. {
  8738. "name": "hyperf/testing",
  8739. "version": "v3.1.21",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/hyperf/testing.git",
  8743. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/hyperf/testing/zipball/923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8748. "reference": "923e862f9ccd5947baac4d4d1e09383c8ac75dc8",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "hyperf/codec": "~3.1.0",
  8753. "hyperf/collection": "~3.1.0",
  8754. "hyperf/contract": "~3.1.0",
  8755. "hyperf/coroutine": "~3.1.0",
  8756. "hyperf/http-message": "~3.1.0",
  8757. "hyperf/http-server": "~3.1.0",
  8758. "hyperf/support": "~3.1.0",
  8759. "hyperf/utils": "~3.1.0",
  8760. "php": ">=8.1",
  8761. "phpunit/phpunit": "^10.0",
  8762. "psr/container": "^1.0|^2.0",
  8763. "symfony/http-foundation": "^5.4|^6.0"
  8764. },
  8765. "suggest": {
  8766. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8767. },
  8768. "bin": [
  8769. "co-phpunit"
  8770. ],
  8771. "type": "library",
  8772. "extra": {
  8773. "branch-alias": {
  8774. "dev-master": "3.1-dev"
  8775. }
  8776. },
  8777. "autoload": {
  8778. "psr-4": {
  8779. "Hyperf\\Testing\\": "src/"
  8780. }
  8781. },
  8782. "notification-url": "https://packagist.org/downloads/",
  8783. "license": [
  8784. "MIT"
  8785. ],
  8786. "description": "Testing for hyperf",
  8787. "keywords": [
  8788. "dev",
  8789. "php",
  8790. "swoole",
  8791. "testing"
  8792. ],
  8793. "support": {
  8794. "source": "https://github.com/hyperf/testing/tree/v3.1.21"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8799. "type": "custom"
  8800. },
  8801. {
  8802. "url": "https://opencollective.com/hyperf",
  8803. "type": "open_collective"
  8804. }
  8805. ],
  8806. "time": "2024-05-07T05:34:51+00:00"
  8807. },
  8808. {
  8809. "name": "hyperf/watcher",
  8810. "version": "v3.1.21",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/hyperf/watcher.git",
  8814. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/hyperf/watcher/zipball/e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8819. "reference": "e95490f91a95ec9c7f52255aba563f59fd9b396c",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "ext-posix": "*",
  8824. "hyperf/codec": "~3.1.0",
  8825. "hyperf/command": "~3.1.0",
  8826. "hyperf/di": "~3.1.0",
  8827. "hyperf/framework": "~3.1.0",
  8828. "hyperf/support": "~3.1.0",
  8829. "php": ">=8.1"
  8830. },
  8831. "type": "library",
  8832. "extra": {
  8833. "branch-alias": {
  8834. "dev-master": "3.1-dev"
  8835. },
  8836. "hyperf": {
  8837. "config": "Hyperf\\Watcher\\ConfigProvider"
  8838. }
  8839. },
  8840. "autoload": {
  8841. "files": [
  8842. "src/Functions.php"
  8843. ],
  8844. "psr-4": {
  8845. "Hyperf\\Watcher\\": "src/"
  8846. }
  8847. },
  8848. "notification-url": "https://packagist.org/downloads/",
  8849. "license": [
  8850. "MIT"
  8851. ],
  8852. "description": "Hot reload watcher for Hyperf",
  8853. "keywords": [
  8854. "dev",
  8855. "hyperf",
  8856. "php"
  8857. ],
  8858. "support": {
  8859. "issues": "https://github.com/hyperf/watcher/issues",
  8860. "source": "https://github.com/hyperf/watcher/tree/v3.1.21"
  8861. },
  8862. "funding": [
  8863. {
  8864. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8865. "type": "custom"
  8866. },
  8867. {
  8868. "url": "https://opencollective.com/hyperf",
  8869. "type": "open_collective"
  8870. }
  8871. ],
  8872. "time": "2024-05-09T13:40:44+00:00"
  8873. },
  8874. {
  8875. "name": "mockery/mockery",
  8876. "version": "1.6.12",
  8877. "source": {
  8878. "type": "git",
  8879. "url": "https://github.com/mockery/mockery.git",
  8880. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8881. },
  8882. "dist": {
  8883. "type": "zip",
  8884. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8885. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8886. "shasum": ""
  8887. },
  8888. "require": {
  8889. "hamcrest/hamcrest-php": "^2.0.1",
  8890. "lib-pcre": ">=7.0",
  8891. "php": ">=7.3"
  8892. },
  8893. "conflict": {
  8894. "phpunit/phpunit": "<8.0"
  8895. },
  8896. "require-dev": {
  8897. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8898. "symplify/easy-coding-standard": "^12.1.14"
  8899. },
  8900. "type": "library",
  8901. "autoload": {
  8902. "files": [
  8903. "library/helpers.php",
  8904. "library/Mockery.php"
  8905. ],
  8906. "psr-4": {
  8907. "Mockery\\": "library/Mockery"
  8908. }
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "BSD-3-Clause"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Pádraic Brady",
  8917. "email": "padraic.brady@gmail.com",
  8918. "homepage": "https://github.com/padraic",
  8919. "role": "Author"
  8920. },
  8921. {
  8922. "name": "Dave Marshall",
  8923. "email": "dave.marshall@atstsolutions.co.uk",
  8924. "homepage": "https://davedevelopment.co.uk",
  8925. "role": "Developer"
  8926. },
  8927. {
  8928. "name": "Nathanael Esayeas",
  8929. "email": "nathanael.esayeas@protonmail.com",
  8930. "homepage": "https://github.com/ghostwriter",
  8931. "role": "Lead Developer"
  8932. }
  8933. ],
  8934. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8935. "homepage": "https://github.com/mockery/mockery",
  8936. "keywords": [
  8937. "BDD",
  8938. "TDD",
  8939. "library",
  8940. "mock",
  8941. "mock objects",
  8942. "mockery",
  8943. "stub",
  8944. "test",
  8945. "test double",
  8946. "testing"
  8947. ],
  8948. "support": {
  8949. "docs": "https://docs.mockery.io/",
  8950. "issues": "https://github.com/mockery/mockery/issues",
  8951. "rss": "https://github.com/mockery/mockery/releases.atom",
  8952. "security": "https://github.com/mockery/mockery/security/advisories",
  8953. "source": "https://github.com/mockery/mockery"
  8954. },
  8955. "time": "2024-05-16T03:13:13+00:00"
  8956. },
  8957. {
  8958. "name": "myclabs/deep-copy",
  8959. "version": "1.11.1",
  8960. "source": {
  8961. "type": "git",
  8962. "url": "https://github.com/myclabs/DeepCopy.git",
  8963. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  8964. },
  8965. "dist": {
  8966. "type": "zip",
  8967. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8968. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  8969. "shasum": ""
  8970. },
  8971. "require": {
  8972. "php": "^7.1 || ^8.0"
  8973. },
  8974. "conflict": {
  8975. "doctrine/collections": "<1.6.8",
  8976. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  8977. },
  8978. "require-dev": {
  8979. "doctrine/collections": "^1.6.8",
  8980. "doctrine/common": "^2.13.3 || ^3.2.2",
  8981. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8982. },
  8983. "type": "library",
  8984. "autoload": {
  8985. "files": [
  8986. "src/DeepCopy/deep_copy.php"
  8987. ],
  8988. "psr-4": {
  8989. "DeepCopy\\": "src/DeepCopy/"
  8990. }
  8991. },
  8992. "notification-url": "https://packagist.org/downloads/",
  8993. "license": [
  8994. "MIT"
  8995. ],
  8996. "description": "Create deep copies (clones) of your objects",
  8997. "keywords": [
  8998. "clone",
  8999. "copy",
  9000. "duplicate",
  9001. "object",
  9002. "object graph"
  9003. ],
  9004. "support": {
  9005. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9006. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  9007. },
  9008. "funding": [
  9009. {
  9010. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9011. "type": "tidelift"
  9012. }
  9013. ],
  9014. "time": "2023-03-08T13:26:56+00:00"
  9015. },
  9016. {
  9017. "name": "phar-io/manifest",
  9018. "version": "2.0.4",
  9019. "source": {
  9020. "type": "git",
  9021. "url": "https://github.com/phar-io/manifest.git",
  9022. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  9023. },
  9024. "dist": {
  9025. "type": "zip",
  9026. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  9027. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  9028. "shasum": ""
  9029. },
  9030. "require": {
  9031. "ext-dom": "*",
  9032. "ext-libxml": "*",
  9033. "ext-phar": "*",
  9034. "ext-xmlwriter": "*",
  9035. "phar-io/version": "^3.0.1",
  9036. "php": "^7.2 || ^8.0"
  9037. },
  9038. "type": "library",
  9039. "extra": {
  9040. "branch-alias": {
  9041. "dev-master": "2.0.x-dev"
  9042. }
  9043. },
  9044. "autoload": {
  9045. "classmap": [
  9046. "src/"
  9047. ]
  9048. },
  9049. "notification-url": "https://packagist.org/downloads/",
  9050. "license": [
  9051. "BSD-3-Clause"
  9052. ],
  9053. "authors": [
  9054. {
  9055. "name": "Arne Blankerts",
  9056. "email": "arne@blankerts.de",
  9057. "role": "Developer"
  9058. },
  9059. {
  9060. "name": "Sebastian Heuer",
  9061. "email": "sebastian@phpeople.de",
  9062. "role": "Developer"
  9063. },
  9064. {
  9065. "name": "Sebastian Bergmann",
  9066. "email": "sebastian@phpunit.de",
  9067. "role": "Developer"
  9068. }
  9069. ],
  9070. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  9071. "support": {
  9072. "issues": "https://github.com/phar-io/manifest/issues",
  9073. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  9074. },
  9075. "funding": [
  9076. {
  9077. "url": "https://github.com/theseer",
  9078. "type": "github"
  9079. }
  9080. ],
  9081. "time": "2024-03-03T12:33:53+00:00"
  9082. },
  9083. {
  9084. "name": "phar-io/version",
  9085. "version": "3.2.1",
  9086. "source": {
  9087. "type": "git",
  9088. "url": "https://github.com/phar-io/version.git",
  9089. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  9090. },
  9091. "dist": {
  9092. "type": "zip",
  9093. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9094. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  9095. "shasum": ""
  9096. },
  9097. "require": {
  9098. "php": "^7.2 || ^8.0"
  9099. },
  9100. "type": "library",
  9101. "autoload": {
  9102. "classmap": [
  9103. "src/"
  9104. ]
  9105. },
  9106. "notification-url": "https://packagist.org/downloads/",
  9107. "license": [
  9108. "BSD-3-Clause"
  9109. ],
  9110. "authors": [
  9111. {
  9112. "name": "Arne Blankerts",
  9113. "email": "arne@blankerts.de",
  9114. "role": "Developer"
  9115. },
  9116. {
  9117. "name": "Sebastian Heuer",
  9118. "email": "sebastian@phpeople.de",
  9119. "role": "Developer"
  9120. },
  9121. {
  9122. "name": "Sebastian Bergmann",
  9123. "email": "sebastian@phpunit.de",
  9124. "role": "Developer"
  9125. }
  9126. ],
  9127. "description": "Library for handling version information and constraints",
  9128. "support": {
  9129. "issues": "https://github.com/phar-io/version/issues",
  9130. "source": "https://github.com/phar-io/version/tree/3.2.1"
  9131. },
  9132. "time": "2022-02-21T01:04:05+00:00"
  9133. },
  9134. {
  9135. "name": "phpstan/phpstan",
  9136. "version": "1.11.4",
  9137. "source": {
  9138. "type": "git",
  9139. "url": "https://github.com/phpstan/phpstan.git",
  9140. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82"
  9141. },
  9142. "dist": {
  9143. "type": "zip",
  9144. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  9145. "reference": "9100a76ce8015b9aa7125b9171ae3a76887b6c82",
  9146. "shasum": ""
  9147. },
  9148. "require": {
  9149. "php": "^7.2|^8.0"
  9150. },
  9151. "conflict": {
  9152. "phpstan/phpstan-shim": "*"
  9153. },
  9154. "bin": [
  9155. "phpstan",
  9156. "phpstan.phar"
  9157. ],
  9158. "type": "library",
  9159. "autoload": {
  9160. "files": [
  9161. "bootstrap.php"
  9162. ]
  9163. },
  9164. "notification-url": "https://packagist.org/downloads/",
  9165. "license": [
  9166. "MIT"
  9167. ],
  9168. "description": "PHPStan - PHP Static Analysis Tool",
  9169. "keywords": [
  9170. "dev",
  9171. "static analysis"
  9172. ],
  9173. "support": {
  9174. "docs": "https://phpstan.org/user-guide/getting-started",
  9175. "forum": "https://github.com/phpstan/phpstan/discussions",
  9176. "issues": "https://github.com/phpstan/phpstan/issues",
  9177. "security": "https://github.com/phpstan/phpstan/security/policy",
  9178. "source": "https://github.com/phpstan/phpstan-src"
  9179. },
  9180. "funding": [
  9181. {
  9182. "url": "https://github.com/ondrejmirtes",
  9183. "type": "github"
  9184. },
  9185. {
  9186. "url": "https://github.com/phpstan",
  9187. "type": "github"
  9188. }
  9189. ],
  9190. "time": "2024-06-06T12:19:22+00:00"
  9191. },
  9192. {
  9193. "name": "phpunit/php-code-coverage",
  9194. "version": "10.1.14",
  9195. "source": {
  9196. "type": "git",
  9197. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9198. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  9199. },
  9200. "dist": {
  9201. "type": "zip",
  9202. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  9203. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  9204. "shasum": ""
  9205. },
  9206. "require": {
  9207. "ext-dom": "*",
  9208. "ext-libxml": "*",
  9209. "ext-xmlwriter": "*",
  9210. "nikic/php-parser": "^4.18 || ^5.0",
  9211. "php": ">=8.1",
  9212. "phpunit/php-file-iterator": "^4.0",
  9213. "phpunit/php-text-template": "^3.0",
  9214. "sebastian/code-unit-reverse-lookup": "^3.0",
  9215. "sebastian/complexity": "^3.0",
  9216. "sebastian/environment": "^6.0",
  9217. "sebastian/lines-of-code": "^2.0",
  9218. "sebastian/version": "^4.0",
  9219. "theseer/tokenizer": "^1.2.0"
  9220. },
  9221. "require-dev": {
  9222. "phpunit/phpunit": "^10.1"
  9223. },
  9224. "suggest": {
  9225. "ext-pcov": "PHP extension that provides line coverage",
  9226. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9227. },
  9228. "type": "library",
  9229. "extra": {
  9230. "branch-alias": {
  9231. "dev-main": "10.1-dev"
  9232. }
  9233. },
  9234. "autoload": {
  9235. "classmap": [
  9236. "src/"
  9237. ]
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "BSD-3-Clause"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Sebastian Bergmann",
  9246. "email": "sebastian@phpunit.de",
  9247. "role": "lead"
  9248. }
  9249. ],
  9250. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9251. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9252. "keywords": [
  9253. "coverage",
  9254. "testing",
  9255. "xunit"
  9256. ],
  9257. "support": {
  9258. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9259. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9260. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  9261. },
  9262. "funding": [
  9263. {
  9264. "url": "https://github.com/sebastianbergmann",
  9265. "type": "github"
  9266. }
  9267. ],
  9268. "time": "2024-03-12T15:33:41+00:00"
  9269. },
  9270. {
  9271. "name": "phpunit/php-file-iterator",
  9272. "version": "4.1.0",
  9273. "source": {
  9274. "type": "git",
  9275. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9276. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9277. },
  9278. "dist": {
  9279. "type": "zip",
  9280. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9281. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9282. "shasum": ""
  9283. },
  9284. "require": {
  9285. "php": ">=8.1"
  9286. },
  9287. "require-dev": {
  9288. "phpunit/phpunit": "^10.0"
  9289. },
  9290. "type": "library",
  9291. "extra": {
  9292. "branch-alias": {
  9293. "dev-main": "4.0-dev"
  9294. }
  9295. },
  9296. "autoload": {
  9297. "classmap": [
  9298. "src/"
  9299. ]
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "BSD-3-Clause"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Sebastian Bergmann",
  9308. "email": "sebastian@phpunit.de",
  9309. "role": "lead"
  9310. }
  9311. ],
  9312. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9313. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9314. "keywords": [
  9315. "filesystem",
  9316. "iterator"
  9317. ],
  9318. "support": {
  9319. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9320. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9321. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9322. },
  9323. "funding": [
  9324. {
  9325. "url": "https://github.com/sebastianbergmann",
  9326. "type": "github"
  9327. }
  9328. ],
  9329. "time": "2023-08-31T06:24:48+00:00"
  9330. },
  9331. {
  9332. "name": "phpunit/php-invoker",
  9333. "version": "4.0.0",
  9334. "source": {
  9335. "type": "git",
  9336. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9337. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9338. },
  9339. "dist": {
  9340. "type": "zip",
  9341. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9342. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9343. "shasum": ""
  9344. },
  9345. "require": {
  9346. "php": ">=8.1"
  9347. },
  9348. "require-dev": {
  9349. "ext-pcntl": "*",
  9350. "phpunit/phpunit": "^10.0"
  9351. },
  9352. "suggest": {
  9353. "ext-pcntl": "*"
  9354. },
  9355. "type": "library",
  9356. "extra": {
  9357. "branch-alias": {
  9358. "dev-main": "4.0-dev"
  9359. }
  9360. },
  9361. "autoload": {
  9362. "classmap": [
  9363. "src/"
  9364. ]
  9365. },
  9366. "notification-url": "https://packagist.org/downloads/",
  9367. "license": [
  9368. "BSD-3-Clause"
  9369. ],
  9370. "authors": [
  9371. {
  9372. "name": "Sebastian Bergmann",
  9373. "email": "sebastian@phpunit.de",
  9374. "role": "lead"
  9375. }
  9376. ],
  9377. "description": "Invoke callables with a timeout",
  9378. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9379. "keywords": [
  9380. "process"
  9381. ],
  9382. "support": {
  9383. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9384. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9385. },
  9386. "funding": [
  9387. {
  9388. "url": "https://github.com/sebastianbergmann",
  9389. "type": "github"
  9390. }
  9391. ],
  9392. "time": "2023-02-03T06:56:09+00:00"
  9393. },
  9394. {
  9395. "name": "phpunit/php-text-template",
  9396. "version": "3.0.1",
  9397. "source": {
  9398. "type": "git",
  9399. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9400. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9401. },
  9402. "dist": {
  9403. "type": "zip",
  9404. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9405. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9406. "shasum": ""
  9407. },
  9408. "require": {
  9409. "php": ">=8.1"
  9410. },
  9411. "require-dev": {
  9412. "phpunit/phpunit": "^10.0"
  9413. },
  9414. "type": "library",
  9415. "extra": {
  9416. "branch-alias": {
  9417. "dev-main": "3.0-dev"
  9418. }
  9419. },
  9420. "autoload": {
  9421. "classmap": [
  9422. "src/"
  9423. ]
  9424. },
  9425. "notification-url": "https://packagist.org/downloads/",
  9426. "license": [
  9427. "BSD-3-Clause"
  9428. ],
  9429. "authors": [
  9430. {
  9431. "name": "Sebastian Bergmann",
  9432. "email": "sebastian@phpunit.de",
  9433. "role": "lead"
  9434. }
  9435. ],
  9436. "description": "Simple template engine.",
  9437. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9438. "keywords": [
  9439. "template"
  9440. ],
  9441. "support": {
  9442. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9443. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9444. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9445. },
  9446. "funding": [
  9447. {
  9448. "url": "https://github.com/sebastianbergmann",
  9449. "type": "github"
  9450. }
  9451. ],
  9452. "time": "2023-08-31T14:07:24+00:00"
  9453. },
  9454. {
  9455. "name": "phpunit/php-timer",
  9456. "version": "6.0.0",
  9457. "source": {
  9458. "type": "git",
  9459. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9460. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9461. },
  9462. "dist": {
  9463. "type": "zip",
  9464. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9465. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9466. "shasum": ""
  9467. },
  9468. "require": {
  9469. "php": ">=8.1"
  9470. },
  9471. "require-dev": {
  9472. "phpunit/phpunit": "^10.0"
  9473. },
  9474. "type": "library",
  9475. "extra": {
  9476. "branch-alias": {
  9477. "dev-main": "6.0-dev"
  9478. }
  9479. },
  9480. "autoload": {
  9481. "classmap": [
  9482. "src/"
  9483. ]
  9484. },
  9485. "notification-url": "https://packagist.org/downloads/",
  9486. "license": [
  9487. "BSD-3-Clause"
  9488. ],
  9489. "authors": [
  9490. {
  9491. "name": "Sebastian Bergmann",
  9492. "email": "sebastian@phpunit.de",
  9493. "role": "lead"
  9494. }
  9495. ],
  9496. "description": "Utility class for timing",
  9497. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9498. "keywords": [
  9499. "timer"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9503. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://github.com/sebastianbergmann",
  9508. "type": "github"
  9509. }
  9510. ],
  9511. "time": "2023-02-03T06:57:52+00:00"
  9512. },
  9513. {
  9514. "name": "phpunit/phpunit",
  9515. "version": "10.5.20",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9519. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/547d314dc24ec1e177720d45c6263fb226cc2ae3",
  9524. "reference": "547d314dc24ec1e177720d45c6263fb226cc2ae3",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "ext-dom": "*",
  9529. "ext-json": "*",
  9530. "ext-libxml": "*",
  9531. "ext-mbstring": "*",
  9532. "ext-xml": "*",
  9533. "ext-xmlwriter": "*",
  9534. "myclabs/deep-copy": "^1.10.1",
  9535. "phar-io/manifest": "^2.0.3",
  9536. "phar-io/version": "^3.0.2",
  9537. "php": ">=8.1",
  9538. "phpunit/php-code-coverage": "^10.1.5",
  9539. "phpunit/php-file-iterator": "^4.0",
  9540. "phpunit/php-invoker": "^4.0",
  9541. "phpunit/php-text-template": "^3.0",
  9542. "phpunit/php-timer": "^6.0",
  9543. "sebastian/cli-parser": "^2.0",
  9544. "sebastian/code-unit": "^2.0",
  9545. "sebastian/comparator": "^5.0",
  9546. "sebastian/diff": "^5.0",
  9547. "sebastian/environment": "^6.0",
  9548. "sebastian/exporter": "^5.1",
  9549. "sebastian/global-state": "^6.0.1",
  9550. "sebastian/object-enumerator": "^5.0",
  9551. "sebastian/recursion-context": "^5.0",
  9552. "sebastian/type": "^4.0",
  9553. "sebastian/version": "^4.0"
  9554. },
  9555. "suggest": {
  9556. "ext-soap": "To be able to generate mocks based on WSDL files"
  9557. },
  9558. "bin": [
  9559. "phpunit"
  9560. ],
  9561. "type": "library",
  9562. "extra": {
  9563. "branch-alias": {
  9564. "dev-main": "10.5-dev"
  9565. }
  9566. },
  9567. "autoload": {
  9568. "files": [
  9569. "src/Framework/Assert/Functions.php"
  9570. ],
  9571. "classmap": [
  9572. "src/"
  9573. ]
  9574. },
  9575. "notification-url": "https://packagist.org/downloads/",
  9576. "license": [
  9577. "BSD-3-Clause"
  9578. ],
  9579. "authors": [
  9580. {
  9581. "name": "Sebastian Bergmann",
  9582. "email": "sebastian@phpunit.de",
  9583. "role": "lead"
  9584. }
  9585. ],
  9586. "description": "The PHP Unit Testing framework.",
  9587. "homepage": "https://phpunit.de/",
  9588. "keywords": [
  9589. "phpunit",
  9590. "testing",
  9591. "xunit"
  9592. ],
  9593. "support": {
  9594. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9595. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9596. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.20"
  9597. },
  9598. "funding": [
  9599. {
  9600. "url": "https://phpunit.de/sponsors.html",
  9601. "type": "custom"
  9602. },
  9603. {
  9604. "url": "https://github.com/sebastianbergmann",
  9605. "type": "github"
  9606. },
  9607. {
  9608. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9609. "type": "tidelift"
  9610. }
  9611. ],
  9612. "time": "2024-04-24T06:32:35+00:00"
  9613. },
  9614. {
  9615. "name": "react/cache",
  9616. "version": "v1.2.0",
  9617. "source": {
  9618. "type": "git",
  9619. "url": "https://github.com/reactphp/cache.git",
  9620. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9621. },
  9622. "dist": {
  9623. "type": "zip",
  9624. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9625. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9626. "shasum": ""
  9627. },
  9628. "require": {
  9629. "php": ">=5.3.0",
  9630. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9631. },
  9632. "require-dev": {
  9633. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9634. },
  9635. "type": "library",
  9636. "autoload": {
  9637. "psr-4": {
  9638. "React\\Cache\\": "src/"
  9639. }
  9640. },
  9641. "notification-url": "https://packagist.org/downloads/",
  9642. "license": [
  9643. "MIT"
  9644. ],
  9645. "authors": [
  9646. {
  9647. "name": "Christian Lück",
  9648. "email": "christian@clue.engineering",
  9649. "homepage": "https://clue.engineering/"
  9650. },
  9651. {
  9652. "name": "Cees-Jan Kiewiet",
  9653. "email": "reactphp@ceesjankiewiet.nl",
  9654. "homepage": "https://wyrihaximus.net/"
  9655. },
  9656. {
  9657. "name": "Jan Sorgalla",
  9658. "email": "jsorgalla@gmail.com",
  9659. "homepage": "https://sorgalla.com/"
  9660. },
  9661. {
  9662. "name": "Chris Boden",
  9663. "email": "cboden@gmail.com",
  9664. "homepage": "https://cboden.dev/"
  9665. }
  9666. ],
  9667. "description": "Async, Promise-based cache interface for ReactPHP",
  9668. "keywords": [
  9669. "cache",
  9670. "caching",
  9671. "promise",
  9672. "reactphp"
  9673. ],
  9674. "support": {
  9675. "issues": "https://github.com/reactphp/cache/issues",
  9676. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://opencollective.com/reactphp",
  9681. "type": "open_collective"
  9682. }
  9683. ],
  9684. "time": "2022-11-30T15:59:55+00:00"
  9685. },
  9686. {
  9687. "name": "react/child-process",
  9688. "version": "v0.6.5",
  9689. "source": {
  9690. "type": "git",
  9691. "url": "https://github.com/reactphp/child-process.git",
  9692. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9693. },
  9694. "dist": {
  9695. "type": "zip",
  9696. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9697. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9698. "shasum": ""
  9699. },
  9700. "require": {
  9701. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9702. "php": ">=5.3.0",
  9703. "react/event-loop": "^1.2",
  9704. "react/stream": "^1.2"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9708. "react/socket": "^1.8",
  9709. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9710. },
  9711. "type": "library",
  9712. "autoload": {
  9713. "psr-4": {
  9714. "React\\ChildProcess\\": "src"
  9715. }
  9716. },
  9717. "notification-url": "https://packagist.org/downloads/",
  9718. "license": [
  9719. "MIT"
  9720. ],
  9721. "authors": [
  9722. {
  9723. "name": "Christian Lück",
  9724. "email": "christian@clue.engineering",
  9725. "homepage": "https://clue.engineering/"
  9726. },
  9727. {
  9728. "name": "Cees-Jan Kiewiet",
  9729. "email": "reactphp@ceesjankiewiet.nl",
  9730. "homepage": "https://wyrihaximus.net/"
  9731. },
  9732. {
  9733. "name": "Jan Sorgalla",
  9734. "email": "jsorgalla@gmail.com",
  9735. "homepage": "https://sorgalla.com/"
  9736. },
  9737. {
  9738. "name": "Chris Boden",
  9739. "email": "cboden@gmail.com",
  9740. "homepage": "https://cboden.dev/"
  9741. }
  9742. ],
  9743. "description": "Event-driven library for executing child processes with ReactPHP.",
  9744. "keywords": [
  9745. "event-driven",
  9746. "process",
  9747. "reactphp"
  9748. ],
  9749. "support": {
  9750. "issues": "https://github.com/reactphp/child-process/issues",
  9751. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9752. },
  9753. "funding": [
  9754. {
  9755. "url": "https://github.com/WyriHaximus",
  9756. "type": "github"
  9757. },
  9758. {
  9759. "url": "https://github.com/clue",
  9760. "type": "github"
  9761. }
  9762. ],
  9763. "time": "2022-09-16T13:41:56+00:00"
  9764. },
  9765. {
  9766. "name": "react/dns",
  9767. "version": "v1.12.0",
  9768. "source": {
  9769. "type": "git",
  9770. "url": "https://github.com/reactphp/dns.git",
  9771. "reference": "c134600642fa615b46b41237ef243daa65bb64ec"
  9772. },
  9773. "dist": {
  9774. "type": "zip",
  9775. "url": "https://api.github.com/repos/reactphp/dns/zipball/c134600642fa615b46b41237ef243daa65bb64ec",
  9776. "reference": "c134600642fa615b46b41237ef243daa65bb64ec",
  9777. "shasum": ""
  9778. },
  9779. "require": {
  9780. "php": ">=5.3.0",
  9781. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9782. "react/event-loop": "^1.2",
  9783. "react/promise": "^3.0 || ^2.7 || ^1.2.1"
  9784. },
  9785. "require-dev": {
  9786. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9787. "react/async": "^4 || ^3 || ^2",
  9788. "react/promise-timer": "^1.9"
  9789. },
  9790. "type": "library",
  9791. "autoload": {
  9792. "psr-4": {
  9793. "React\\Dns\\": "src/"
  9794. }
  9795. },
  9796. "notification-url": "https://packagist.org/downloads/",
  9797. "license": [
  9798. "MIT"
  9799. ],
  9800. "authors": [
  9801. {
  9802. "name": "Christian Lück",
  9803. "email": "christian@clue.engineering",
  9804. "homepage": "https://clue.engineering/"
  9805. },
  9806. {
  9807. "name": "Cees-Jan Kiewiet",
  9808. "email": "reactphp@ceesjankiewiet.nl",
  9809. "homepage": "https://wyrihaximus.net/"
  9810. },
  9811. {
  9812. "name": "Jan Sorgalla",
  9813. "email": "jsorgalla@gmail.com",
  9814. "homepage": "https://sorgalla.com/"
  9815. },
  9816. {
  9817. "name": "Chris Boden",
  9818. "email": "cboden@gmail.com",
  9819. "homepage": "https://cboden.dev/"
  9820. }
  9821. ],
  9822. "description": "Async DNS resolver for ReactPHP",
  9823. "keywords": [
  9824. "async",
  9825. "dns",
  9826. "dns-resolver",
  9827. "reactphp"
  9828. ],
  9829. "support": {
  9830. "issues": "https://github.com/reactphp/dns/issues",
  9831. "source": "https://github.com/reactphp/dns/tree/v1.12.0"
  9832. },
  9833. "funding": [
  9834. {
  9835. "url": "https://opencollective.com/reactphp",
  9836. "type": "open_collective"
  9837. }
  9838. ],
  9839. "time": "2023-11-29T12:41:06+00:00"
  9840. },
  9841. {
  9842. "name": "react/event-loop",
  9843. "version": "v1.5.0",
  9844. "source": {
  9845. "type": "git",
  9846. "url": "https://github.com/reactphp/event-loop.git",
  9847. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9848. },
  9849. "dist": {
  9850. "type": "zip",
  9851. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9852. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9853. "shasum": ""
  9854. },
  9855. "require": {
  9856. "php": ">=5.3.0"
  9857. },
  9858. "require-dev": {
  9859. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9860. },
  9861. "suggest": {
  9862. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9863. },
  9864. "type": "library",
  9865. "autoload": {
  9866. "psr-4": {
  9867. "React\\EventLoop\\": "src/"
  9868. }
  9869. },
  9870. "notification-url": "https://packagist.org/downloads/",
  9871. "license": [
  9872. "MIT"
  9873. ],
  9874. "authors": [
  9875. {
  9876. "name": "Christian Lück",
  9877. "email": "christian@clue.engineering",
  9878. "homepage": "https://clue.engineering/"
  9879. },
  9880. {
  9881. "name": "Cees-Jan Kiewiet",
  9882. "email": "reactphp@ceesjankiewiet.nl",
  9883. "homepage": "https://wyrihaximus.net/"
  9884. },
  9885. {
  9886. "name": "Jan Sorgalla",
  9887. "email": "jsorgalla@gmail.com",
  9888. "homepage": "https://sorgalla.com/"
  9889. },
  9890. {
  9891. "name": "Chris Boden",
  9892. "email": "cboden@gmail.com",
  9893. "homepage": "https://cboden.dev/"
  9894. }
  9895. ],
  9896. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9897. "keywords": [
  9898. "asynchronous",
  9899. "event-loop"
  9900. ],
  9901. "support": {
  9902. "issues": "https://github.com/reactphp/event-loop/issues",
  9903. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9904. },
  9905. "funding": [
  9906. {
  9907. "url": "https://opencollective.com/reactphp",
  9908. "type": "open_collective"
  9909. }
  9910. ],
  9911. "time": "2023-11-13T13:48:05+00:00"
  9912. },
  9913. {
  9914. "name": "react/promise",
  9915. "version": "v3.2.0",
  9916. "source": {
  9917. "type": "git",
  9918. "url": "https://github.com/reactphp/promise.git",
  9919. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9920. },
  9921. "dist": {
  9922. "type": "zip",
  9923. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9924. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9925. "shasum": ""
  9926. },
  9927. "require": {
  9928. "php": ">=7.1.0"
  9929. },
  9930. "require-dev": {
  9931. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9932. "phpunit/phpunit": "^9.6 || ^7.5"
  9933. },
  9934. "type": "library",
  9935. "autoload": {
  9936. "files": [
  9937. "src/functions_include.php"
  9938. ],
  9939. "psr-4": {
  9940. "React\\Promise\\": "src/"
  9941. }
  9942. },
  9943. "notification-url": "https://packagist.org/downloads/",
  9944. "license": [
  9945. "MIT"
  9946. ],
  9947. "authors": [
  9948. {
  9949. "name": "Jan Sorgalla",
  9950. "email": "jsorgalla@gmail.com",
  9951. "homepage": "https://sorgalla.com/"
  9952. },
  9953. {
  9954. "name": "Christian Lück",
  9955. "email": "christian@clue.engineering",
  9956. "homepage": "https://clue.engineering/"
  9957. },
  9958. {
  9959. "name": "Cees-Jan Kiewiet",
  9960. "email": "reactphp@ceesjankiewiet.nl",
  9961. "homepage": "https://wyrihaximus.net/"
  9962. },
  9963. {
  9964. "name": "Chris Boden",
  9965. "email": "cboden@gmail.com",
  9966. "homepage": "https://cboden.dev/"
  9967. }
  9968. ],
  9969. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9970. "keywords": [
  9971. "promise",
  9972. "promises"
  9973. ],
  9974. "support": {
  9975. "issues": "https://github.com/reactphp/promise/issues",
  9976. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9977. },
  9978. "funding": [
  9979. {
  9980. "url": "https://opencollective.com/reactphp",
  9981. "type": "open_collective"
  9982. }
  9983. ],
  9984. "time": "2024-05-24T10:39:05+00:00"
  9985. },
  9986. {
  9987. "name": "react/socket",
  9988. "version": "v1.15.0",
  9989. "source": {
  9990. "type": "git",
  9991. "url": "https://github.com/reactphp/socket.git",
  9992. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038"
  9993. },
  9994. "dist": {
  9995. "type": "zip",
  9996. "url": "https://api.github.com/repos/reactphp/socket/zipball/216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9997. "reference": "216d3aec0b87f04a40ca04f481e6af01bdd1d038",
  9998. "shasum": ""
  9999. },
  10000. "require": {
  10001. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10002. "php": ">=5.3.0",
  10003. "react/dns": "^1.11",
  10004. "react/event-loop": "^1.2",
  10005. "react/promise": "^3 || ^2.6 || ^1.2.1",
  10006. "react/stream": "^1.2"
  10007. },
  10008. "require-dev": {
  10009. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  10010. "react/async": "^4 || ^3 || ^2",
  10011. "react/promise-stream": "^1.4",
  10012. "react/promise-timer": "^1.10"
  10013. },
  10014. "type": "library",
  10015. "autoload": {
  10016. "psr-4": {
  10017. "React\\Socket\\": "src/"
  10018. }
  10019. },
  10020. "notification-url": "https://packagist.org/downloads/",
  10021. "license": [
  10022. "MIT"
  10023. ],
  10024. "authors": [
  10025. {
  10026. "name": "Christian Lück",
  10027. "email": "christian@clue.engineering",
  10028. "homepage": "https://clue.engineering/"
  10029. },
  10030. {
  10031. "name": "Cees-Jan Kiewiet",
  10032. "email": "reactphp@ceesjankiewiet.nl",
  10033. "homepage": "https://wyrihaximus.net/"
  10034. },
  10035. {
  10036. "name": "Jan Sorgalla",
  10037. "email": "jsorgalla@gmail.com",
  10038. "homepage": "https://sorgalla.com/"
  10039. },
  10040. {
  10041. "name": "Chris Boden",
  10042. "email": "cboden@gmail.com",
  10043. "homepage": "https://cboden.dev/"
  10044. }
  10045. ],
  10046. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  10047. "keywords": [
  10048. "Connection",
  10049. "Socket",
  10050. "async",
  10051. "reactphp",
  10052. "stream"
  10053. ],
  10054. "support": {
  10055. "issues": "https://github.com/reactphp/socket/issues",
  10056. "source": "https://github.com/reactphp/socket/tree/v1.15.0"
  10057. },
  10058. "funding": [
  10059. {
  10060. "url": "https://opencollective.com/reactphp",
  10061. "type": "open_collective"
  10062. }
  10063. ],
  10064. "time": "2023-12-15T11:02:10+00:00"
  10065. },
  10066. {
  10067. "name": "react/stream",
  10068. "version": "v1.3.0",
  10069. "source": {
  10070. "type": "git",
  10071. "url": "https://github.com/reactphp/stream.git",
  10072. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66"
  10073. },
  10074. "dist": {
  10075. "type": "zip",
  10076. "url": "https://api.github.com/repos/reactphp/stream/zipball/6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  10077. "reference": "6fbc9672905c7d5a885f2da2fc696f65840f4a66",
  10078. "shasum": ""
  10079. },
  10080. "require": {
  10081. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  10082. "php": ">=5.3.8",
  10083. "react/event-loop": "^1.2"
  10084. },
  10085. "require-dev": {
  10086. "clue/stream-filter": "~1.2",
  10087. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  10088. },
  10089. "type": "library",
  10090. "autoload": {
  10091. "psr-4": {
  10092. "React\\Stream\\": "src/"
  10093. }
  10094. },
  10095. "notification-url": "https://packagist.org/downloads/",
  10096. "license": [
  10097. "MIT"
  10098. ],
  10099. "authors": [
  10100. {
  10101. "name": "Christian Lück",
  10102. "email": "christian@clue.engineering",
  10103. "homepage": "https://clue.engineering/"
  10104. },
  10105. {
  10106. "name": "Cees-Jan Kiewiet",
  10107. "email": "reactphp@ceesjankiewiet.nl",
  10108. "homepage": "https://wyrihaximus.net/"
  10109. },
  10110. {
  10111. "name": "Jan Sorgalla",
  10112. "email": "jsorgalla@gmail.com",
  10113. "homepage": "https://sorgalla.com/"
  10114. },
  10115. {
  10116. "name": "Chris Boden",
  10117. "email": "cboden@gmail.com",
  10118. "homepage": "https://cboden.dev/"
  10119. }
  10120. ],
  10121. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  10122. "keywords": [
  10123. "event-driven",
  10124. "io",
  10125. "non-blocking",
  10126. "pipe",
  10127. "reactphp",
  10128. "readable",
  10129. "stream",
  10130. "writable"
  10131. ],
  10132. "support": {
  10133. "issues": "https://github.com/reactphp/stream/issues",
  10134. "source": "https://github.com/reactphp/stream/tree/v1.3.0"
  10135. },
  10136. "funding": [
  10137. {
  10138. "url": "https://opencollective.com/reactphp",
  10139. "type": "open_collective"
  10140. }
  10141. ],
  10142. "time": "2023-06-16T10:52:11+00:00"
  10143. },
  10144. {
  10145. "name": "sebastian/cli-parser",
  10146. "version": "2.0.1",
  10147. "source": {
  10148. "type": "git",
  10149. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10150. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10151. },
  10152. "dist": {
  10153. "type": "zip",
  10154. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10155. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10156. "shasum": ""
  10157. },
  10158. "require": {
  10159. "php": ">=8.1"
  10160. },
  10161. "require-dev": {
  10162. "phpunit/phpunit": "^10.0"
  10163. },
  10164. "type": "library",
  10165. "extra": {
  10166. "branch-alias": {
  10167. "dev-main": "2.0-dev"
  10168. }
  10169. },
  10170. "autoload": {
  10171. "classmap": [
  10172. "src/"
  10173. ]
  10174. },
  10175. "notification-url": "https://packagist.org/downloads/",
  10176. "license": [
  10177. "BSD-3-Clause"
  10178. ],
  10179. "authors": [
  10180. {
  10181. "name": "Sebastian Bergmann",
  10182. "email": "sebastian@phpunit.de",
  10183. "role": "lead"
  10184. }
  10185. ],
  10186. "description": "Library for parsing CLI options",
  10187. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10188. "support": {
  10189. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10190. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10191. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10192. },
  10193. "funding": [
  10194. {
  10195. "url": "https://github.com/sebastianbergmann",
  10196. "type": "github"
  10197. }
  10198. ],
  10199. "time": "2024-03-02T07:12:49+00:00"
  10200. },
  10201. {
  10202. "name": "sebastian/code-unit",
  10203. "version": "2.0.0",
  10204. "source": {
  10205. "type": "git",
  10206. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10207. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10208. },
  10209. "dist": {
  10210. "type": "zip",
  10211. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10212. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10213. "shasum": ""
  10214. },
  10215. "require": {
  10216. "php": ">=8.1"
  10217. },
  10218. "require-dev": {
  10219. "phpunit/phpunit": "^10.0"
  10220. },
  10221. "type": "library",
  10222. "extra": {
  10223. "branch-alias": {
  10224. "dev-main": "2.0-dev"
  10225. }
  10226. },
  10227. "autoload": {
  10228. "classmap": [
  10229. "src/"
  10230. ]
  10231. },
  10232. "notification-url": "https://packagist.org/downloads/",
  10233. "license": [
  10234. "BSD-3-Clause"
  10235. ],
  10236. "authors": [
  10237. {
  10238. "name": "Sebastian Bergmann",
  10239. "email": "sebastian@phpunit.de",
  10240. "role": "lead"
  10241. }
  10242. ],
  10243. "description": "Collection of value objects that represent the PHP code units",
  10244. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10245. "support": {
  10246. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10247. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10248. },
  10249. "funding": [
  10250. {
  10251. "url": "https://github.com/sebastianbergmann",
  10252. "type": "github"
  10253. }
  10254. ],
  10255. "time": "2023-02-03T06:58:43+00:00"
  10256. },
  10257. {
  10258. "name": "sebastian/code-unit-reverse-lookup",
  10259. "version": "3.0.0",
  10260. "source": {
  10261. "type": "git",
  10262. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10263. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10264. },
  10265. "dist": {
  10266. "type": "zip",
  10267. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10268. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10269. "shasum": ""
  10270. },
  10271. "require": {
  10272. "php": ">=8.1"
  10273. },
  10274. "require-dev": {
  10275. "phpunit/phpunit": "^10.0"
  10276. },
  10277. "type": "library",
  10278. "extra": {
  10279. "branch-alias": {
  10280. "dev-main": "3.0-dev"
  10281. }
  10282. },
  10283. "autoload": {
  10284. "classmap": [
  10285. "src/"
  10286. ]
  10287. },
  10288. "notification-url": "https://packagist.org/downloads/",
  10289. "license": [
  10290. "BSD-3-Clause"
  10291. ],
  10292. "authors": [
  10293. {
  10294. "name": "Sebastian Bergmann",
  10295. "email": "sebastian@phpunit.de"
  10296. }
  10297. ],
  10298. "description": "Looks up which function or method a line of code belongs to",
  10299. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10300. "support": {
  10301. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10302. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10303. },
  10304. "funding": [
  10305. {
  10306. "url": "https://github.com/sebastianbergmann",
  10307. "type": "github"
  10308. }
  10309. ],
  10310. "time": "2023-02-03T06:59:15+00:00"
  10311. },
  10312. {
  10313. "name": "sebastian/comparator",
  10314. "version": "5.0.1",
  10315. "source": {
  10316. "type": "git",
  10317. "url": "https://github.com/sebastianbergmann/comparator.git",
  10318. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  10319. },
  10320. "dist": {
  10321. "type": "zip",
  10322. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  10323. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  10324. "shasum": ""
  10325. },
  10326. "require": {
  10327. "ext-dom": "*",
  10328. "ext-mbstring": "*",
  10329. "php": ">=8.1",
  10330. "sebastian/diff": "^5.0",
  10331. "sebastian/exporter": "^5.0"
  10332. },
  10333. "require-dev": {
  10334. "phpunit/phpunit": "^10.3"
  10335. },
  10336. "type": "library",
  10337. "extra": {
  10338. "branch-alias": {
  10339. "dev-main": "5.0-dev"
  10340. }
  10341. },
  10342. "autoload": {
  10343. "classmap": [
  10344. "src/"
  10345. ]
  10346. },
  10347. "notification-url": "https://packagist.org/downloads/",
  10348. "license": [
  10349. "BSD-3-Clause"
  10350. ],
  10351. "authors": [
  10352. {
  10353. "name": "Sebastian Bergmann",
  10354. "email": "sebastian@phpunit.de"
  10355. },
  10356. {
  10357. "name": "Jeff Welch",
  10358. "email": "whatthejeff@gmail.com"
  10359. },
  10360. {
  10361. "name": "Volker Dusch",
  10362. "email": "github@wallbash.com"
  10363. },
  10364. {
  10365. "name": "Bernhard Schussek",
  10366. "email": "bschussek@2bepublished.at"
  10367. }
  10368. ],
  10369. "description": "Provides the functionality to compare PHP values for equality",
  10370. "homepage": "https://github.com/sebastianbergmann/comparator",
  10371. "keywords": [
  10372. "comparator",
  10373. "compare",
  10374. "equality"
  10375. ],
  10376. "support": {
  10377. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10378. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10379. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  10380. },
  10381. "funding": [
  10382. {
  10383. "url": "https://github.com/sebastianbergmann",
  10384. "type": "github"
  10385. }
  10386. ],
  10387. "time": "2023-08-14T13:18:12+00:00"
  10388. },
  10389. {
  10390. "name": "sebastian/complexity",
  10391. "version": "3.2.0",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/sebastianbergmann/complexity.git",
  10395. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10400. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "nikic/php-parser": "^4.18 || ^5.0",
  10405. "php": ">=8.1"
  10406. },
  10407. "require-dev": {
  10408. "phpunit/phpunit": "^10.0"
  10409. },
  10410. "type": "library",
  10411. "extra": {
  10412. "branch-alias": {
  10413. "dev-main": "3.2-dev"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "classmap": [
  10418. "src/"
  10419. ]
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "BSD-3-Clause"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "Sebastian Bergmann",
  10428. "email": "sebastian@phpunit.de",
  10429. "role": "lead"
  10430. }
  10431. ],
  10432. "description": "Library for calculating the complexity of PHP code units",
  10433. "homepage": "https://github.com/sebastianbergmann/complexity",
  10434. "support": {
  10435. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10436. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10437. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10438. },
  10439. "funding": [
  10440. {
  10441. "url": "https://github.com/sebastianbergmann",
  10442. "type": "github"
  10443. }
  10444. ],
  10445. "time": "2023-12-21T08:37:17+00:00"
  10446. },
  10447. {
  10448. "name": "sebastian/diff",
  10449. "version": "5.1.1",
  10450. "source": {
  10451. "type": "git",
  10452. "url": "https://github.com/sebastianbergmann/diff.git",
  10453. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10454. },
  10455. "dist": {
  10456. "type": "zip",
  10457. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10458. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10459. "shasum": ""
  10460. },
  10461. "require": {
  10462. "php": ">=8.1"
  10463. },
  10464. "require-dev": {
  10465. "phpunit/phpunit": "^10.0",
  10466. "symfony/process": "^6.4"
  10467. },
  10468. "type": "library",
  10469. "extra": {
  10470. "branch-alias": {
  10471. "dev-main": "5.1-dev"
  10472. }
  10473. },
  10474. "autoload": {
  10475. "classmap": [
  10476. "src/"
  10477. ]
  10478. },
  10479. "notification-url": "https://packagist.org/downloads/",
  10480. "license": [
  10481. "BSD-3-Clause"
  10482. ],
  10483. "authors": [
  10484. {
  10485. "name": "Sebastian Bergmann",
  10486. "email": "sebastian@phpunit.de"
  10487. },
  10488. {
  10489. "name": "Kore Nordmann",
  10490. "email": "mail@kore-nordmann.de"
  10491. }
  10492. ],
  10493. "description": "Diff implementation",
  10494. "homepage": "https://github.com/sebastianbergmann/diff",
  10495. "keywords": [
  10496. "diff",
  10497. "udiff",
  10498. "unidiff",
  10499. "unified diff"
  10500. ],
  10501. "support": {
  10502. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10503. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10504. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10505. },
  10506. "funding": [
  10507. {
  10508. "url": "https://github.com/sebastianbergmann",
  10509. "type": "github"
  10510. }
  10511. ],
  10512. "time": "2024-03-02T07:15:17+00:00"
  10513. },
  10514. {
  10515. "name": "sebastian/environment",
  10516. "version": "6.1.0",
  10517. "source": {
  10518. "type": "git",
  10519. "url": "https://github.com/sebastianbergmann/environment.git",
  10520. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10521. },
  10522. "dist": {
  10523. "type": "zip",
  10524. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10525. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10526. "shasum": ""
  10527. },
  10528. "require": {
  10529. "php": ">=8.1"
  10530. },
  10531. "require-dev": {
  10532. "phpunit/phpunit": "^10.0"
  10533. },
  10534. "suggest": {
  10535. "ext-posix": "*"
  10536. },
  10537. "type": "library",
  10538. "extra": {
  10539. "branch-alias": {
  10540. "dev-main": "6.1-dev"
  10541. }
  10542. },
  10543. "autoload": {
  10544. "classmap": [
  10545. "src/"
  10546. ]
  10547. },
  10548. "notification-url": "https://packagist.org/downloads/",
  10549. "license": [
  10550. "BSD-3-Clause"
  10551. ],
  10552. "authors": [
  10553. {
  10554. "name": "Sebastian Bergmann",
  10555. "email": "sebastian@phpunit.de"
  10556. }
  10557. ],
  10558. "description": "Provides functionality to handle HHVM/PHP environments",
  10559. "homepage": "https://github.com/sebastianbergmann/environment",
  10560. "keywords": [
  10561. "Xdebug",
  10562. "environment",
  10563. "hhvm"
  10564. ],
  10565. "support": {
  10566. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10567. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10568. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10569. },
  10570. "funding": [
  10571. {
  10572. "url": "https://github.com/sebastianbergmann",
  10573. "type": "github"
  10574. }
  10575. ],
  10576. "time": "2024-03-23T08:47:14+00:00"
  10577. },
  10578. {
  10579. "name": "sebastian/exporter",
  10580. "version": "5.1.2",
  10581. "source": {
  10582. "type": "git",
  10583. "url": "https://github.com/sebastianbergmann/exporter.git",
  10584. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10585. },
  10586. "dist": {
  10587. "type": "zip",
  10588. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10589. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10590. "shasum": ""
  10591. },
  10592. "require": {
  10593. "ext-mbstring": "*",
  10594. "php": ">=8.1",
  10595. "sebastian/recursion-context": "^5.0"
  10596. },
  10597. "require-dev": {
  10598. "phpunit/phpunit": "^10.0"
  10599. },
  10600. "type": "library",
  10601. "extra": {
  10602. "branch-alias": {
  10603. "dev-main": "5.1-dev"
  10604. }
  10605. },
  10606. "autoload": {
  10607. "classmap": [
  10608. "src/"
  10609. ]
  10610. },
  10611. "notification-url": "https://packagist.org/downloads/",
  10612. "license": [
  10613. "BSD-3-Clause"
  10614. ],
  10615. "authors": [
  10616. {
  10617. "name": "Sebastian Bergmann",
  10618. "email": "sebastian@phpunit.de"
  10619. },
  10620. {
  10621. "name": "Jeff Welch",
  10622. "email": "whatthejeff@gmail.com"
  10623. },
  10624. {
  10625. "name": "Volker Dusch",
  10626. "email": "github@wallbash.com"
  10627. },
  10628. {
  10629. "name": "Adam Harvey",
  10630. "email": "aharvey@php.net"
  10631. },
  10632. {
  10633. "name": "Bernhard Schussek",
  10634. "email": "bschussek@gmail.com"
  10635. }
  10636. ],
  10637. "description": "Provides the functionality to export PHP variables for visualization",
  10638. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10639. "keywords": [
  10640. "export",
  10641. "exporter"
  10642. ],
  10643. "support": {
  10644. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10645. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10646. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10647. },
  10648. "funding": [
  10649. {
  10650. "url": "https://github.com/sebastianbergmann",
  10651. "type": "github"
  10652. }
  10653. ],
  10654. "time": "2024-03-02T07:17:12+00:00"
  10655. },
  10656. {
  10657. "name": "sebastian/global-state",
  10658. "version": "6.0.2",
  10659. "source": {
  10660. "type": "git",
  10661. "url": "https://github.com/sebastianbergmann/global-state.git",
  10662. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10663. },
  10664. "dist": {
  10665. "type": "zip",
  10666. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10667. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10668. "shasum": ""
  10669. },
  10670. "require": {
  10671. "php": ">=8.1",
  10672. "sebastian/object-reflector": "^3.0",
  10673. "sebastian/recursion-context": "^5.0"
  10674. },
  10675. "require-dev": {
  10676. "ext-dom": "*",
  10677. "phpunit/phpunit": "^10.0"
  10678. },
  10679. "type": "library",
  10680. "extra": {
  10681. "branch-alias": {
  10682. "dev-main": "6.0-dev"
  10683. }
  10684. },
  10685. "autoload": {
  10686. "classmap": [
  10687. "src/"
  10688. ]
  10689. },
  10690. "notification-url": "https://packagist.org/downloads/",
  10691. "license": [
  10692. "BSD-3-Clause"
  10693. ],
  10694. "authors": [
  10695. {
  10696. "name": "Sebastian Bergmann",
  10697. "email": "sebastian@phpunit.de"
  10698. }
  10699. ],
  10700. "description": "Snapshotting of global state",
  10701. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10702. "keywords": [
  10703. "global state"
  10704. ],
  10705. "support": {
  10706. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10707. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10708. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10709. },
  10710. "funding": [
  10711. {
  10712. "url": "https://github.com/sebastianbergmann",
  10713. "type": "github"
  10714. }
  10715. ],
  10716. "time": "2024-03-02T07:19:19+00:00"
  10717. },
  10718. {
  10719. "name": "sebastian/lines-of-code",
  10720. "version": "2.0.2",
  10721. "source": {
  10722. "type": "git",
  10723. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10724. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10725. },
  10726. "dist": {
  10727. "type": "zip",
  10728. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10729. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10730. "shasum": ""
  10731. },
  10732. "require": {
  10733. "nikic/php-parser": "^4.18 || ^5.0",
  10734. "php": ">=8.1"
  10735. },
  10736. "require-dev": {
  10737. "phpunit/phpunit": "^10.0"
  10738. },
  10739. "type": "library",
  10740. "extra": {
  10741. "branch-alias": {
  10742. "dev-main": "2.0-dev"
  10743. }
  10744. },
  10745. "autoload": {
  10746. "classmap": [
  10747. "src/"
  10748. ]
  10749. },
  10750. "notification-url": "https://packagist.org/downloads/",
  10751. "license": [
  10752. "BSD-3-Clause"
  10753. ],
  10754. "authors": [
  10755. {
  10756. "name": "Sebastian Bergmann",
  10757. "email": "sebastian@phpunit.de",
  10758. "role": "lead"
  10759. }
  10760. ],
  10761. "description": "Library for counting the lines of code in PHP source code",
  10762. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10763. "support": {
  10764. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10765. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10766. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10767. },
  10768. "funding": [
  10769. {
  10770. "url": "https://github.com/sebastianbergmann",
  10771. "type": "github"
  10772. }
  10773. ],
  10774. "time": "2023-12-21T08:38:20+00:00"
  10775. },
  10776. {
  10777. "name": "sebastian/object-enumerator",
  10778. "version": "5.0.0",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10782. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10787. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "php": ">=8.1",
  10792. "sebastian/object-reflector": "^3.0",
  10793. "sebastian/recursion-context": "^5.0"
  10794. },
  10795. "require-dev": {
  10796. "phpunit/phpunit": "^10.0"
  10797. },
  10798. "type": "library",
  10799. "extra": {
  10800. "branch-alias": {
  10801. "dev-main": "5.0-dev"
  10802. }
  10803. },
  10804. "autoload": {
  10805. "classmap": [
  10806. "src/"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "BSD-3-Clause"
  10812. ],
  10813. "authors": [
  10814. {
  10815. "name": "Sebastian Bergmann",
  10816. "email": "sebastian@phpunit.de"
  10817. }
  10818. ],
  10819. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10820. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10821. "support": {
  10822. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10823. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10824. },
  10825. "funding": [
  10826. {
  10827. "url": "https://github.com/sebastianbergmann",
  10828. "type": "github"
  10829. }
  10830. ],
  10831. "time": "2023-02-03T07:08:32+00:00"
  10832. },
  10833. {
  10834. "name": "sebastian/object-reflector",
  10835. "version": "3.0.0",
  10836. "source": {
  10837. "type": "git",
  10838. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10839. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10840. },
  10841. "dist": {
  10842. "type": "zip",
  10843. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10844. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10845. "shasum": ""
  10846. },
  10847. "require": {
  10848. "php": ">=8.1"
  10849. },
  10850. "require-dev": {
  10851. "phpunit/phpunit": "^10.0"
  10852. },
  10853. "type": "library",
  10854. "extra": {
  10855. "branch-alias": {
  10856. "dev-main": "3.0-dev"
  10857. }
  10858. },
  10859. "autoload": {
  10860. "classmap": [
  10861. "src/"
  10862. ]
  10863. },
  10864. "notification-url": "https://packagist.org/downloads/",
  10865. "license": [
  10866. "BSD-3-Clause"
  10867. ],
  10868. "authors": [
  10869. {
  10870. "name": "Sebastian Bergmann",
  10871. "email": "sebastian@phpunit.de"
  10872. }
  10873. ],
  10874. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10875. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10876. "support": {
  10877. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10878. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10879. },
  10880. "funding": [
  10881. {
  10882. "url": "https://github.com/sebastianbergmann",
  10883. "type": "github"
  10884. }
  10885. ],
  10886. "time": "2023-02-03T07:06:18+00:00"
  10887. },
  10888. {
  10889. "name": "sebastian/recursion-context",
  10890. "version": "5.0.0",
  10891. "source": {
  10892. "type": "git",
  10893. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10894. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10895. },
  10896. "dist": {
  10897. "type": "zip",
  10898. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10899. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10900. "shasum": ""
  10901. },
  10902. "require": {
  10903. "php": ">=8.1"
  10904. },
  10905. "require-dev": {
  10906. "phpunit/phpunit": "^10.0"
  10907. },
  10908. "type": "library",
  10909. "extra": {
  10910. "branch-alias": {
  10911. "dev-main": "5.0-dev"
  10912. }
  10913. },
  10914. "autoload": {
  10915. "classmap": [
  10916. "src/"
  10917. ]
  10918. },
  10919. "notification-url": "https://packagist.org/downloads/",
  10920. "license": [
  10921. "BSD-3-Clause"
  10922. ],
  10923. "authors": [
  10924. {
  10925. "name": "Sebastian Bergmann",
  10926. "email": "sebastian@phpunit.de"
  10927. },
  10928. {
  10929. "name": "Jeff Welch",
  10930. "email": "whatthejeff@gmail.com"
  10931. },
  10932. {
  10933. "name": "Adam Harvey",
  10934. "email": "aharvey@php.net"
  10935. }
  10936. ],
  10937. "description": "Provides functionality to recursively process PHP variables",
  10938. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10939. "support": {
  10940. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10941. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10942. },
  10943. "funding": [
  10944. {
  10945. "url": "https://github.com/sebastianbergmann",
  10946. "type": "github"
  10947. }
  10948. ],
  10949. "time": "2023-02-03T07:05:40+00:00"
  10950. },
  10951. {
  10952. "name": "sebastian/type",
  10953. "version": "4.0.0",
  10954. "source": {
  10955. "type": "git",
  10956. "url": "https://github.com/sebastianbergmann/type.git",
  10957. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10958. },
  10959. "dist": {
  10960. "type": "zip",
  10961. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10962. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10963. "shasum": ""
  10964. },
  10965. "require": {
  10966. "php": ">=8.1"
  10967. },
  10968. "require-dev": {
  10969. "phpunit/phpunit": "^10.0"
  10970. },
  10971. "type": "library",
  10972. "extra": {
  10973. "branch-alias": {
  10974. "dev-main": "4.0-dev"
  10975. }
  10976. },
  10977. "autoload": {
  10978. "classmap": [
  10979. "src/"
  10980. ]
  10981. },
  10982. "notification-url": "https://packagist.org/downloads/",
  10983. "license": [
  10984. "BSD-3-Clause"
  10985. ],
  10986. "authors": [
  10987. {
  10988. "name": "Sebastian Bergmann",
  10989. "email": "sebastian@phpunit.de",
  10990. "role": "lead"
  10991. }
  10992. ],
  10993. "description": "Collection of value objects that represent the types of the PHP type system",
  10994. "homepage": "https://github.com/sebastianbergmann/type",
  10995. "support": {
  10996. "issues": "https://github.com/sebastianbergmann/type/issues",
  10997. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10998. },
  10999. "funding": [
  11000. {
  11001. "url": "https://github.com/sebastianbergmann",
  11002. "type": "github"
  11003. }
  11004. ],
  11005. "time": "2023-02-03T07:10:45+00:00"
  11006. },
  11007. {
  11008. "name": "sebastian/version",
  11009. "version": "4.0.1",
  11010. "source": {
  11011. "type": "git",
  11012. "url": "https://github.com/sebastianbergmann/version.git",
  11013. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11014. },
  11015. "dist": {
  11016. "type": "zip",
  11017. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11018. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11019. "shasum": ""
  11020. },
  11021. "require": {
  11022. "php": ">=8.1"
  11023. },
  11024. "type": "library",
  11025. "extra": {
  11026. "branch-alias": {
  11027. "dev-main": "4.0-dev"
  11028. }
  11029. },
  11030. "autoload": {
  11031. "classmap": [
  11032. "src/"
  11033. ]
  11034. },
  11035. "notification-url": "https://packagist.org/downloads/",
  11036. "license": [
  11037. "BSD-3-Clause"
  11038. ],
  11039. "authors": [
  11040. {
  11041. "name": "Sebastian Bergmann",
  11042. "email": "sebastian@phpunit.de",
  11043. "role": "lead"
  11044. }
  11045. ],
  11046. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11047. "homepage": "https://github.com/sebastianbergmann/version",
  11048. "support": {
  11049. "issues": "https://github.com/sebastianbergmann/version/issues",
  11050. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11051. },
  11052. "funding": [
  11053. {
  11054. "url": "https://github.com/sebastianbergmann",
  11055. "type": "github"
  11056. }
  11057. ],
  11058. "time": "2023-02-07T11:34:05+00:00"
  11059. },
  11060. {
  11061. "name": "swoole/ide-helper",
  11062. "version": "5.1.2",
  11063. "source": {
  11064. "type": "git",
  11065. "url": "https://github.com/swoole/ide-helper.git",
  11066. "reference": "33ec7af9111b76d06a70dd31191cc74793551112"
  11067. },
  11068. "dist": {
  11069. "type": "zip",
  11070. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/33ec7af9111b76d06a70dd31191cc74793551112",
  11071. "reference": "33ec7af9111b76d06a70dd31191cc74793551112",
  11072. "shasum": ""
  11073. },
  11074. "type": "library",
  11075. "notification-url": "https://packagist.org/downloads/",
  11076. "license": [
  11077. "Apache-2.0"
  11078. ],
  11079. "authors": [
  11080. {
  11081. "name": "Team Swoole",
  11082. "email": "team@swoole.com"
  11083. }
  11084. ],
  11085. "description": "IDE help files for Swoole.",
  11086. "support": {
  11087. "issues": "https://github.com/swoole/ide-helper/issues",
  11088. "source": "https://github.com/swoole/ide-helper/tree/5.1.2"
  11089. },
  11090. "time": "2024-02-01T22:28:11+00:00"
  11091. },
  11092. {
  11093. "name": "symfony/event-dispatcher",
  11094. "version": "v6.4.8",
  11095. "source": {
  11096. "type": "git",
  11097. "url": "https://github.com/symfony/event-dispatcher.git",
  11098. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b"
  11099. },
  11100. "dist": {
  11101. "type": "zip",
  11102. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/8d7507f02b06e06815e56bb39aa0128e3806208b",
  11103. "reference": "8d7507f02b06e06815e56bb39aa0128e3806208b",
  11104. "shasum": ""
  11105. },
  11106. "require": {
  11107. "php": ">=8.1",
  11108. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11109. },
  11110. "conflict": {
  11111. "symfony/dependency-injection": "<5.4",
  11112. "symfony/service-contracts": "<2.5"
  11113. },
  11114. "provide": {
  11115. "psr/event-dispatcher-implementation": "1.0",
  11116. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11117. },
  11118. "require-dev": {
  11119. "psr/log": "^1|^2|^3",
  11120. "symfony/config": "^5.4|^6.0|^7.0",
  11121. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11122. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11123. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11124. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11125. "symfony/service-contracts": "^2.5|^3",
  11126. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11127. },
  11128. "type": "library",
  11129. "autoload": {
  11130. "psr-4": {
  11131. "Symfony\\Component\\EventDispatcher\\": ""
  11132. },
  11133. "exclude-from-classmap": [
  11134. "/Tests/"
  11135. ]
  11136. },
  11137. "notification-url": "https://packagist.org/downloads/",
  11138. "license": [
  11139. "MIT"
  11140. ],
  11141. "authors": [
  11142. {
  11143. "name": "Fabien Potencier",
  11144. "email": "fabien@symfony.com"
  11145. },
  11146. {
  11147. "name": "Symfony Community",
  11148. "homepage": "https://symfony.com/contributors"
  11149. }
  11150. ],
  11151. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11152. "homepage": "https://symfony.com",
  11153. "support": {
  11154. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.8"
  11155. },
  11156. "funding": [
  11157. {
  11158. "url": "https://symfony.com/sponsor",
  11159. "type": "custom"
  11160. },
  11161. {
  11162. "url": "https://github.com/fabpot",
  11163. "type": "github"
  11164. },
  11165. {
  11166. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11167. "type": "tidelift"
  11168. }
  11169. ],
  11170. "time": "2024-05-31T14:49:08+00:00"
  11171. },
  11172. {
  11173. "name": "symfony/event-dispatcher-contracts",
  11174. "version": "v3.5.0",
  11175. "source": {
  11176. "type": "git",
  11177. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11178. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11179. },
  11180. "dist": {
  11181. "type": "zip",
  11182. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11183. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11184. "shasum": ""
  11185. },
  11186. "require": {
  11187. "php": ">=8.1",
  11188. "psr/event-dispatcher": "^1"
  11189. },
  11190. "type": "library",
  11191. "extra": {
  11192. "branch-alias": {
  11193. "dev-main": "3.5-dev"
  11194. },
  11195. "thanks": {
  11196. "name": "symfony/contracts",
  11197. "url": "https://github.com/symfony/contracts"
  11198. }
  11199. },
  11200. "autoload": {
  11201. "psr-4": {
  11202. "Symfony\\Contracts\\EventDispatcher\\": ""
  11203. }
  11204. },
  11205. "notification-url": "https://packagist.org/downloads/",
  11206. "license": [
  11207. "MIT"
  11208. ],
  11209. "authors": [
  11210. {
  11211. "name": "Nicolas Grekas",
  11212. "email": "p@tchwork.com"
  11213. },
  11214. {
  11215. "name": "Symfony Community",
  11216. "homepage": "https://symfony.com/contributors"
  11217. }
  11218. ],
  11219. "description": "Generic abstractions related to dispatching event",
  11220. "homepage": "https://symfony.com",
  11221. "keywords": [
  11222. "abstractions",
  11223. "contracts",
  11224. "decoupling",
  11225. "interfaces",
  11226. "interoperability",
  11227. "standards"
  11228. ],
  11229. "support": {
  11230. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11231. },
  11232. "funding": [
  11233. {
  11234. "url": "https://symfony.com/sponsor",
  11235. "type": "custom"
  11236. },
  11237. {
  11238. "url": "https://github.com/fabpot",
  11239. "type": "github"
  11240. },
  11241. {
  11242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11243. "type": "tidelift"
  11244. }
  11245. ],
  11246. "time": "2024-04-18T09:32:20+00:00"
  11247. },
  11248. {
  11249. "name": "symfony/filesystem",
  11250. "version": "v6.4.8",
  11251. "source": {
  11252. "type": "git",
  11253. "url": "https://github.com/symfony/filesystem.git",
  11254. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
  11255. },
  11256. "dist": {
  11257. "type": "zip",
  11258. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
  11259. "reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
  11260. "shasum": ""
  11261. },
  11262. "require": {
  11263. "php": ">=8.1",
  11264. "symfony/polyfill-ctype": "~1.8",
  11265. "symfony/polyfill-mbstring": "~1.8"
  11266. },
  11267. "require-dev": {
  11268. "symfony/process": "^5.4|^6.4|^7.0"
  11269. },
  11270. "type": "library",
  11271. "autoload": {
  11272. "psr-4": {
  11273. "Symfony\\Component\\Filesystem\\": ""
  11274. },
  11275. "exclude-from-classmap": [
  11276. "/Tests/"
  11277. ]
  11278. },
  11279. "notification-url": "https://packagist.org/downloads/",
  11280. "license": [
  11281. "MIT"
  11282. ],
  11283. "authors": [
  11284. {
  11285. "name": "Fabien Potencier",
  11286. "email": "fabien@symfony.com"
  11287. },
  11288. {
  11289. "name": "Symfony Community",
  11290. "homepage": "https://symfony.com/contributors"
  11291. }
  11292. ],
  11293. "description": "Provides basic utilities for the filesystem",
  11294. "homepage": "https://symfony.com",
  11295. "support": {
  11296. "source": "https://github.com/symfony/filesystem/tree/v6.4.8"
  11297. },
  11298. "funding": [
  11299. {
  11300. "url": "https://symfony.com/sponsor",
  11301. "type": "custom"
  11302. },
  11303. {
  11304. "url": "https://github.com/fabpot",
  11305. "type": "github"
  11306. },
  11307. {
  11308. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11309. "type": "tidelift"
  11310. }
  11311. ],
  11312. "time": "2024-05-31T14:49:08+00:00"
  11313. },
  11314. {
  11315. "name": "symfony/http-foundation",
  11316. "version": "v6.4.8",
  11317. "source": {
  11318. "type": "git",
  11319. "url": "https://github.com/symfony/http-foundation.git",
  11320. "reference": "27de8cc95e11db7a50b027e71caaab9024545947"
  11321. },
  11322. "dist": {
  11323. "type": "zip",
  11324. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/27de8cc95e11db7a50b027e71caaab9024545947",
  11325. "reference": "27de8cc95e11db7a50b027e71caaab9024545947",
  11326. "shasum": ""
  11327. },
  11328. "require": {
  11329. "php": ">=8.1",
  11330. "symfony/deprecation-contracts": "^2.5|^3",
  11331. "symfony/polyfill-mbstring": "~1.1",
  11332. "symfony/polyfill-php83": "^1.27"
  11333. },
  11334. "conflict": {
  11335. "symfony/cache": "<6.3"
  11336. },
  11337. "require-dev": {
  11338. "doctrine/dbal": "^2.13.1|^3|^4",
  11339. "predis/predis": "^1.1|^2.0",
  11340. "symfony/cache": "^6.3|^7.0",
  11341. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11342. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11343. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11344. "symfony/mime": "^5.4|^6.0|^7.0",
  11345. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11346. },
  11347. "type": "library",
  11348. "autoload": {
  11349. "psr-4": {
  11350. "Symfony\\Component\\HttpFoundation\\": ""
  11351. },
  11352. "exclude-from-classmap": [
  11353. "/Tests/"
  11354. ]
  11355. },
  11356. "notification-url": "https://packagist.org/downloads/",
  11357. "license": [
  11358. "MIT"
  11359. ],
  11360. "authors": [
  11361. {
  11362. "name": "Fabien Potencier",
  11363. "email": "fabien@symfony.com"
  11364. },
  11365. {
  11366. "name": "Symfony Community",
  11367. "homepage": "https://symfony.com/contributors"
  11368. }
  11369. ],
  11370. "description": "Defines an object-oriented layer for the HTTP specification",
  11371. "homepage": "https://symfony.com",
  11372. "support": {
  11373. "source": "https://github.com/symfony/http-foundation/tree/v6.4.8"
  11374. },
  11375. "funding": [
  11376. {
  11377. "url": "https://symfony.com/sponsor",
  11378. "type": "custom"
  11379. },
  11380. {
  11381. "url": "https://github.com/fabpot",
  11382. "type": "github"
  11383. },
  11384. {
  11385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11386. "type": "tidelift"
  11387. }
  11388. ],
  11389. "time": "2024-05-31T14:49:08+00:00"
  11390. },
  11391. {
  11392. "name": "symfony/options-resolver",
  11393. "version": "v6.4.8",
  11394. "source": {
  11395. "type": "git",
  11396. "url": "https://github.com/symfony/options-resolver.git",
  11397. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b"
  11398. },
  11399. "dist": {
  11400. "type": "zip",
  11401. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/22ab9e9101ab18de37839074f8a1197f55590c1b",
  11402. "reference": "22ab9e9101ab18de37839074f8a1197f55590c1b",
  11403. "shasum": ""
  11404. },
  11405. "require": {
  11406. "php": ">=8.1",
  11407. "symfony/deprecation-contracts": "^2.5|^3"
  11408. },
  11409. "type": "library",
  11410. "autoload": {
  11411. "psr-4": {
  11412. "Symfony\\Component\\OptionsResolver\\": ""
  11413. },
  11414. "exclude-from-classmap": [
  11415. "/Tests/"
  11416. ]
  11417. },
  11418. "notification-url": "https://packagist.org/downloads/",
  11419. "license": [
  11420. "MIT"
  11421. ],
  11422. "authors": [
  11423. {
  11424. "name": "Fabien Potencier",
  11425. "email": "fabien@symfony.com"
  11426. },
  11427. {
  11428. "name": "Symfony Community",
  11429. "homepage": "https://symfony.com/contributors"
  11430. }
  11431. ],
  11432. "description": "Provides an improved replacement for the array_replace PHP function",
  11433. "homepage": "https://symfony.com",
  11434. "keywords": [
  11435. "config",
  11436. "configuration",
  11437. "options"
  11438. ],
  11439. "support": {
  11440. "source": "https://github.com/symfony/options-resolver/tree/v6.4.8"
  11441. },
  11442. "funding": [
  11443. {
  11444. "url": "https://symfony.com/sponsor",
  11445. "type": "custom"
  11446. },
  11447. {
  11448. "url": "https://github.com/fabpot",
  11449. "type": "github"
  11450. },
  11451. {
  11452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11453. "type": "tidelift"
  11454. }
  11455. ],
  11456. "time": "2024-05-31T14:49:08+00:00"
  11457. },
  11458. {
  11459. "name": "symfony/polyfill-php81",
  11460. "version": "v1.29.0",
  11461. "source": {
  11462. "type": "git",
  11463. "url": "https://github.com/symfony/polyfill-php81.git",
  11464. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  11465. },
  11466. "dist": {
  11467. "type": "zip",
  11468. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  11469. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  11470. "shasum": ""
  11471. },
  11472. "require": {
  11473. "php": ">=7.1"
  11474. },
  11475. "type": "library",
  11476. "extra": {
  11477. "thanks": {
  11478. "name": "symfony/polyfill",
  11479. "url": "https://github.com/symfony/polyfill"
  11480. }
  11481. },
  11482. "autoload": {
  11483. "files": [
  11484. "bootstrap.php"
  11485. ],
  11486. "psr-4": {
  11487. "Symfony\\Polyfill\\Php81\\": ""
  11488. },
  11489. "classmap": [
  11490. "Resources/stubs"
  11491. ]
  11492. },
  11493. "notification-url": "https://packagist.org/downloads/",
  11494. "license": [
  11495. "MIT"
  11496. ],
  11497. "authors": [
  11498. {
  11499. "name": "Nicolas Grekas",
  11500. "email": "p@tchwork.com"
  11501. },
  11502. {
  11503. "name": "Symfony Community",
  11504. "homepage": "https://symfony.com/contributors"
  11505. }
  11506. ],
  11507. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11508. "homepage": "https://symfony.com",
  11509. "keywords": [
  11510. "compatibility",
  11511. "polyfill",
  11512. "portable",
  11513. "shim"
  11514. ],
  11515. "support": {
  11516. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  11517. },
  11518. "funding": [
  11519. {
  11520. "url": "https://symfony.com/sponsor",
  11521. "type": "custom"
  11522. },
  11523. {
  11524. "url": "https://github.com/fabpot",
  11525. "type": "github"
  11526. },
  11527. {
  11528. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11529. "type": "tidelift"
  11530. }
  11531. ],
  11532. "time": "2024-01-29T20:11:03+00:00"
  11533. },
  11534. {
  11535. "name": "symfony/polyfill-php83",
  11536. "version": "v1.29.0",
  11537. "source": {
  11538. "type": "git",
  11539. "url": "https://github.com/symfony/polyfill-php83.git",
  11540. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  11541. },
  11542. "dist": {
  11543. "type": "zip",
  11544. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  11545. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  11546. "shasum": ""
  11547. },
  11548. "require": {
  11549. "php": ">=7.1",
  11550. "symfony/polyfill-php80": "^1.14"
  11551. },
  11552. "type": "library",
  11553. "extra": {
  11554. "thanks": {
  11555. "name": "symfony/polyfill",
  11556. "url": "https://github.com/symfony/polyfill"
  11557. }
  11558. },
  11559. "autoload": {
  11560. "files": [
  11561. "bootstrap.php"
  11562. ],
  11563. "psr-4": {
  11564. "Symfony\\Polyfill\\Php83\\": ""
  11565. },
  11566. "classmap": [
  11567. "Resources/stubs"
  11568. ]
  11569. },
  11570. "notification-url": "https://packagist.org/downloads/",
  11571. "license": [
  11572. "MIT"
  11573. ],
  11574. "authors": [
  11575. {
  11576. "name": "Nicolas Grekas",
  11577. "email": "p@tchwork.com"
  11578. },
  11579. {
  11580. "name": "Symfony Community",
  11581. "homepage": "https://symfony.com/contributors"
  11582. }
  11583. ],
  11584. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11585. "homepage": "https://symfony.com",
  11586. "keywords": [
  11587. "compatibility",
  11588. "polyfill",
  11589. "portable",
  11590. "shim"
  11591. ],
  11592. "support": {
  11593. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  11594. },
  11595. "funding": [
  11596. {
  11597. "url": "https://symfony.com/sponsor",
  11598. "type": "custom"
  11599. },
  11600. {
  11601. "url": "https://github.com/fabpot",
  11602. "type": "github"
  11603. },
  11604. {
  11605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11606. "type": "tidelift"
  11607. }
  11608. ],
  11609. "time": "2024-01-29T20:11:03+00:00"
  11610. },
  11611. {
  11612. "name": "symfony/process",
  11613. "version": "v6.4.8",
  11614. "source": {
  11615. "type": "git",
  11616. "url": "https://github.com/symfony/process.git",
  11617. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5"
  11618. },
  11619. "dist": {
  11620. "type": "zip",
  11621. "url": "https://api.github.com/repos/symfony/process/zipball/8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11622. "reference": "8d92dd79149f29e89ee0f480254db595f6a6a2c5",
  11623. "shasum": ""
  11624. },
  11625. "require": {
  11626. "php": ">=8.1"
  11627. },
  11628. "type": "library",
  11629. "autoload": {
  11630. "psr-4": {
  11631. "Symfony\\Component\\Process\\": ""
  11632. },
  11633. "exclude-from-classmap": [
  11634. "/Tests/"
  11635. ]
  11636. },
  11637. "notification-url": "https://packagist.org/downloads/",
  11638. "license": [
  11639. "MIT"
  11640. ],
  11641. "authors": [
  11642. {
  11643. "name": "Fabien Potencier",
  11644. "email": "fabien@symfony.com"
  11645. },
  11646. {
  11647. "name": "Symfony Community",
  11648. "homepage": "https://symfony.com/contributors"
  11649. }
  11650. ],
  11651. "description": "Executes commands in sub-processes",
  11652. "homepage": "https://symfony.com",
  11653. "support": {
  11654. "source": "https://github.com/symfony/process/tree/v6.4.8"
  11655. },
  11656. "funding": [
  11657. {
  11658. "url": "https://symfony.com/sponsor",
  11659. "type": "custom"
  11660. },
  11661. {
  11662. "url": "https://github.com/fabpot",
  11663. "type": "github"
  11664. },
  11665. {
  11666. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11667. "type": "tidelift"
  11668. }
  11669. ],
  11670. "time": "2024-05-31T14:49:08+00:00"
  11671. },
  11672. {
  11673. "name": "symfony/stopwatch",
  11674. "version": "v6.4.8",
  11675. "source": {
  11676. "type": "git",
  11677. "url": "https://github.com/symfony/stopwatch.git",
  11678. "reference": "63e069eb616049632cde9674c46957819454b8aa"
  11679. },
  11680. "dist": {
  11681. "type": "zip",
  11682. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/63e069eb616049632cde9674c46957819454b8aa",
  11683. "reference": "63e069eb616049632cde9674c46957819454b8aa",
  11684. "shasum": ""
  11685. },
  11686. "require": {
  11687. "php": ">=8.1",
  11688. "symfony/service-contracts": "^2.5|^3"
  11689. },
  11690. "type": "library",
  11691. "autoload": {
  11692. "psr-4": {
  11693. "Symfony\\Component\\Stopwatch\\": ""
  11694. },
  11695. "exclude-from-classmap": [
  11696. "/Tests/"
  11697. ]
  11698. },
  11699. "notification-url": "https://packagist.org/downloads/",
  11700. "license": [
  11701. "MIT"
  11702. ],
  11703. "authors": [
  11704. {
  11705. "name": "Fabien Potencier",
  11706. "email": "fabien@symfony.com"
  11707. },
  11708. {
  11709. "name": "Symfony Community",
  11710. "homepage": "https://symfony.com/contributors"
  11711. }
  11712. ],
  11713. "description": "Provides a way to profile code",
  11714. "homepage": "https://symfony.com",
  11715. "support": {
  11716. "source": "https://github.com/symfony/stopwatch/tree/v6.4.8"
  11717. },
  11718. "funding": [
  11719. {
  11720. "url": "https://symfony.com/sponsor",
  11721. "type": "custom"
  11722. },
  11723. {
  11724. "url": "https://github.com/fabpot",
  11725. "type": "github"
  11726. },
  11727. {
  11728. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11729. "type": "tidelift"
  11730. }
  11731. ],
  11732. "time": "2024-05-31T14:49:08+00:00"
  11733. },
  11734. {
  11735. "name": "theseer/tokenizer",
  11736. "version": "1.2.3",
  11737. "source": {
  11738. "type": "git",
  11739. "url": "https://github.com/theseer/tokenizer.git",
  11740. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11741. },
  11742. "dist": {
  11743. "type": "zip",
  11744. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11745. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11746. "shasum": ""
  11747. },
  11748. "require": {
  11749. "ext-dom": "*",
  11750. "ext-tokenizer": "*",
  11751. "ext-xmlwriter": "*",
  11752. "php": "^7.2 || ^8.0"
  11753. },
  11754. "type": "library",
  11755. "autoload": {
  11756. "classmap": [
  11757. "src/"
  11758. ]
  11759. },
  11760. "notification-url": "https://packagist.org/downloads/",
  11761. "license": [
  11762. "BSD-3-Clause"
  11763. ],
  11764. "authors": [
  11765. {
  11766. "name": "Arne Blankerts",
  11767. "email": "arne@blankerts.de",
  11768. "role": "Developer"
  11769. }
  11770. ],
  11771. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11772. "support": {
  11773. "issues": "https://github.com/theseer/tokenizer/issues",
  11774. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11775. },
  11776. "funding": [
  11777. {
  11778. "url": "https://github.com/theseer",
  11779. "type": "github"
  11780. }
  11781. ],
  11782. "time": "2024-03-03T12:36:25+00:00"
  11783. },
  11784. {
  11785. "name": "zx/php-tools",
  11786. "version": "v0.0.1",
  11787. "source": {
  11788. "type": "git",
  11789. "url": "https://gitee.com/open-php/php-tools.git",
  11790. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11791. },
  11792. "require": {
  11793. "php": ">=7.0"
  11794. },
  11795. "type": "library",
  11796. "autoload": {
  11797. "psr-4": {
  11798. "ZX\\": "src/"
  11799. }
  11800. },
  11801. "notification-url": "https://packagist.org/downloads/",
  11802. "license": [
  11803. "mit"
  11804. ],
  11805. "authors": [
  11806. {
  11807. "name": "zx",
  11808. "email": "903464207@qq.com"
  11809. }
  11810. ],
  11811. "description": "php-tools",
  11812. "time": "2023-06-25T06:24:10+00:00"
  11813. }
  11814. ],
  11815. "aliases": [],
  11816. "minimum-stability": "dev",
  11817. "stability-flags": [],
  11818. "prefer-stable": true,
  11819. "prefer-lowest": false,
  11820. "platform": {
  11821. "php": ">=8.1"
  11822. },
  11823. "platform-dev": [],
  11824. "plugin-api-version": "2.6.0"
  11825. }