composer.lock 413 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651
  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": "e71f383836139c57d31eb8084467a897",
  8. "packages": [
  9. {
  10. "name": "carbonphp/carbon-doctrine-types",
  11. "version": "3.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  15. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  20. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.1"
  25. },
  26. "conflict": {
  27. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  28. },
  29. "require-dev": {
  30. "doctrine/dbal": "^4.0.0",
  31. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  32. "phpunit/phpunit": "^10.3"
  33. },
  34. "type": "library",
  35. "autoload": {
  36. "psr-4": {
  37. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "KyleKatarn",
  47. "email": "kylekatarnls@gmail.com"
  48. }
  49. ],
  50. "description": "Types to use Carbon in Doctrine",
  51. "keywords": [
  52. "carbon",
  53. "date",
  54. "datetime",
  55. "doctrine",
  56. "time"
  57. ],
  58. "support": {
  59. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  60. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  61. },
  62. "funding": [
  63. {
  64. "url": "https://github.com/kylekatarnls",
  65. "type": "github"
  66. },
  67. {
  68. "url": "https://opencollective.com/Carbon",
  69. "type": "open_collective"
  70. },
  71. {
  72. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  73. "type": "tidelift"
  74. }
  75. ],
  76. "time": "2024-02-09T16:56:22+00:00"
  77. },
  78. {
  79. "name": "death_satan/hyperf-validate",
  80. "version": "v3.71",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/Death-Satan/hyperf-validate.git",
  84. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/Death-Satan/hyperf-validate/zipball/5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  89. "reference": "5ab8da087fa0bddf8e353f785fd9b772dee6ea24",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "hyperf/config": "~3.0",
  94. "hyperf/db-connection": "~3.0",
  95. "hyperf/di": "~3.0",
  96. "hyperf/framework": "~3.0",
  97. "hyperf/validation": "~3.0",
  98. "php": ">=8.0"
  99. },
  100. "require-dev": {
  101. "friendsofphp/php-cs-fixer": "^3.0",
  102. "hyperf/testing": "~3.0",
  103. "mockery/mockery": "^1.0",
  104. "phpstan/phpstan": "^1.0",
  105. "swoole/ide-helper": "^4.5"
  106. },
  107. "suggest": {
  108. "swow/swow": "Required to create swow components."
  109. },
  110. "type": "library",
  111. "extra": {
  112. "hyperf": {
  113. "config": "DeathSatan\\Hyperf\\Validate\\ConfigProvider"
  114. }
  115. },
  116. "autoload": {
  117. "psr-4": {
  118. "DeathSatan\\Hyperf\\Validate\\": "src/"
  119. }
  120. },
  121. "notification-url": "https://packagist.org/downloads/",
  122. "license": [
  123. "MIT"
  124. ],
  125. "description": "Hyperf Validate",
  126. "keywords": [
  127. "hyperf",
  128. "php",
  129. "validate"
  130. ],
  131. "support": {
  132. "issues": "https://github.com/Death-Satan/hyperf-validate/issues",
  133. "source": "https://github.com/Death-Satan/hyperf-validate/tree/v3.71"
  134. },
  135. "time": "2023-04-03T17:22:13+00:00"
  136. },
  137. {
  138. "name": "doctrine/annotations",
  139. "version": "2.0.2",
  140. "source": {
  141. "type": "git",
  142. "url": "https://github.com/doctrine/annotations.git",
  143. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  144. },
  145. "dist": {
  146. "type": "zip",
  147. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  148. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  149. "shasum": ""
  150. },
  151. "require": {
  152. "doctrine/lexer": "^2 || ^3",
  153. "ext-tokenizer": "*",
  154. "php": "^7.2 || ^8.0",
  155. "psr/cache": "^1 || ^2 || ^3"
  156. },
  157. "require-dev": {
  158. "doctrine/cache": "^2.0",
  159. "doctrine/coding-standard": "^10",
  160. "phpstan/phpstan": "^1.10.28",
  161. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  162. "symfony/cache": "^5.4 || ^6.4 || ^7",
  163. "vimeo/psalm": "^4.30 || ^5.14"
  164. },
  165. "suggest": {
  166. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  167. },
  168. "type": "library",
  169. "autoload": {
  170. "psr-4": {
  171. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  172. }
  173. },
  174. "notification-url": "https://packagist.org/downloads/",
  175. "license": [
  176. "MIT"
  177. ],
  178. "authors": [
  179. {
  180. "name": "Guilherme Blanco",
  181. "email": "guilhermeblanco@gmail.com"
  182. },
  183. {
  184. "name": "Roman Borschel",
  185. "email": "roman@code-factory.org"
  186. },
  187. {
  188. "name": "Benjamin Eberlei",
  189. "email": "kontakt@beberlei.de"
  190. },
  191. {
  192. "name": "Jonathan Wage",
  193. "email": "jonwage@gmail.com"
  194. },
  195. {
  196. "name": "Johannes Schmitt",
  197. "email": "schmittjoh@gmail.com"
  198. }
  199. ],
  200. "description": "Docblock Annotations Parser",
  201. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  202. "keywords": [
  203. "annotations",
  204. "docblock",
  205. "parser"
  206. ],
  207. "support": {
  208. "issues": "https://github.com/doctrine/annotations/issues",
  209. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  210. },
  211. "time": "2024-09-05T10:17:24+00:00"
  212. },
  213. {
  214. "name": "doctrine/deprecations",
  215. "version": "1.1.3",
  216. "source": {
  217. "type": "git",
  218. "url": "https://github.com/doctrine/deprecations.git",
  219. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  220. },
  221. "dist": {
  222. "type": "zip",
  223. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  224. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  225. "shasum": ""
  226. },
  227. "require": {
  228. "php": "^7.1 || ^8.0"
  229. },
  230. "require-dev": {
  231. "doctrine/coding-standard": "^9",
  232. "phpstan/phpstan": "1.4.10 || 1.10.15",
  233. "phpstan/phpstan-phpunit": "^1.0",
  234. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  235. "psalm/plugin-phpunit": "0.18.4",
  236. "psr/log": "^1 || ^2 || ^3",
  237. "vimeo/psalm": "4.30.0 || 5.12.0"
  238. },
  239. "suggest": {
  240. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  241. },
  242. "type": "library",
  243. "autoload": {
  244. "psr-4": {
  245. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  246. }
  247. },
  248. "notification-url": "https://packagist.org/downloads/",
  249. "license": [
  250. "MIT"
  251. ],
  252. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  253. "homepage": "https://www.doctrine-project.org/",
  254. "support": {
  255. "issues": "https://github.com/doctrine/deprecations/issues",
  256. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  257. },
  258. "time": "2024-01-30T19:34:25+00:00"
  259. },
  260. {
  261. "name": "doctrine/inflector",
  262. "version": "2.0.10",
  263. "source": {
  264. "type": "git",
  265. "url": "https://github.com/doctrine/inflector.git",
  266. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  267. },
  268. "dist": {
  269. "type": "zip",
  270. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  271. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  272. "shasum": ""
  273. },
  274. "require": {
  275. "php": "^7.2 || ^8.0"
  276. },
  277. "require-dev": {
  278. "doctrine/coding-standard": "^11.0",
  279. "phpstan/phpstan": "^1.8",
  280. "phpstan/phpstan-phpunit": "^1.1",
  281. "phpstan/phpstan-strict-rules": "^1.3",
  282. "phpunit/phpunit": "^8.5 || ^9.5",
  283. "vimeo/psalm": "^4.25 || ^5.4"
  284. },
  285. "type": "library",
  286. "autoload": {
  287. "psr-4": {
  288. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  289. }
  290. },
  291. "notification-url": "https://packagist.org/downloads/",
  292. "license": [
  293. "MIT"
  294. ],
  295. "authors": [
  296. {
  297. "name": "Guilherme Blanco",
  298. "email": "guilhermeblanco@gmail.com"
  299. },
  300. {
  301. "name": "Roman Borschel",
  302. "email": "roman@code-factory.org"
  303. },
  304. {
  305. "name": "Benjamin Eberlei",
  306. "email": "kontakt@beberlei.de"
  307. },
  308. {
  309. "name": "Jonathan Wage",
  310. "email": "jonwage@gmail.com"
  311. },
  312. {
  313. "name": "Johannes Schmitt",
  314. "email": "schmittjoh@gmail.com"
  315. }
  316. ],
  317. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  318. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  319. "keywords": [
  320. "inflection",
  321. "inflector",
  322. "lowercase",
  323. "manipulation",
  324. "php",
  325. "plural",
  326. "singular",
  327. "strings",
  328. "uppercase",
  329. "words"
  330. ],
  331. "support": {
  332. "issues": "https://github.com/doctrine/inflector/issues",
  333. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  334. },
  335. "funding": [
  336. {
  337. "url": "https://www.doctrine-project.org/sponsorship.html",
  338. "type": "custom"
  339. },
  340. {
  341. "url": "https://www.patreon.com/phpdoctrine",
  342. "type": "patreon"
  343. },
  344. {
  345. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  346. "type": "tidelift"
  347. }
  348. ],
  349. "time": "2024-02-18T20:23:39+00:00"
  350. },
  351. {
  352. "name": "doctrine/instantiator",
  353. "version": "1.5.0",
  354. "source": {
  355. "type": "git",
  356. "url": "https://github.com/doctrine/instantiator.git",
  357. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  358. },
  359. "dist": {
  360. "type": "zip",
  361. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  362. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  363. "shasum": ""
  364. },
  365. "require": {
  366. "php": "^7.1 || ^8.0"
  367. },
  368. "require-dev": {
  369. "doctrine/coding-standard": "^9 || ^11",
  370. "ext-pdo": "*",
  371. "ext-phar": "*",
  372. "phpbench/phpbench": "^0.16 || ^1",
  373. "phpstan/phpstan": "^1.4",
  374. "phpstan/phpstan-phpunit": "^1",
  375. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  376. "vimeo/psalm": "^4.30 || ^5.4"
  377. },
  378. "type": "library",
  379. "autoload": {
  380. "psr-4": {
  381. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  382. }
  383. },
  384. "notification-url": "https://packagist.org/downloads/",
  385. "license": [
  386. "MIT"
  387. ],
  388. "authors": [
  389. {
  390. "name": "Marco Pivetta",
  391. "email": "ocramius@gmail.com",
  392. "homepage": "https://ocramius.github.io/"
  393. }
  394. ],
  395. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  396. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  397. "keywords": [
  398. "constructor",
  399. "instantiate"
  400. ],
  401. "support": {
  402. "issues": "https://github.com/doctrine/instantiator/issues",
  403. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  404. },
  405. "funding": [
  406. {
  407. "url": "https://www.doctrine-project.org/sponsorship.html",
  408. "type": "custom"
  409. },
  410. {
  411. "url": "https://www.patreon.com/phpdoctrine",
  412. "type": "patreon"
  413. },
  414. {
  415. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  416. "type": "tidelift"
  417. }
  418. ],
  419. "time": "2022-12-30T00:15:36+00:00"
  420. },
  421. {
  422. "name": "doctrine/lexer",
  423. "version": "2.1.1",
  424. "source": {
  425. "type": "git",
  426. "url": "https://github.com/doctrine/lexer.git",
  427. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  428. },
  429. "dist": {
  430. "type": "zip",
  431. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  432. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  433. "shasum": ""
  434. },
  435. "require": {
  436. "doctrine/deprecations": "^1.0",
  437. "php": "^7.1 || ^8.0"
  438. },
  439. "require-dev": {
  440. "doctrine/coding-standard": "^9 || ^12",
  441. "phpstan/phpstan": "^1.3",
  442. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  443. "psalm/plugin-phpunit": "^0.18.3",
  444. "vimeo/psalm": "^4.11 || ^5.21"
  445. },
  446. "type": "library",
  447. "autoload": {
  448. "psr-4": {
  449. "Doctrine\\Common\\Lexer\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Guilherme Blanco",
  459. "email": "guilhermeblanco@gmail.com"
  460. },
  461. {
  462. "name": "Roman Borschel",
  463. "email": "roman@code-factory.org"
  464. },
  465. {
  466. "name": "Johannes Schmitt",
  467. "email": "schmittjoh@gmail.com"
  468. }
  469. ],
  470. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  471. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  472. "keywords": [
  473. "annotations",
  474. "docblock",
  475. "lexer",
  476. "parser",
  477. "php"
  478. ],
  479. "support": {
  480. "issues": "https://github.com/doctrine/lexer/issues",
  481. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  482. },
  483. "funding": [
  484. {
  485. "url": "https://www.doctrine-project.org/sponsorship.html",
  486. "type": "custom"
  487. },
  488. {
  489. "url": "https://www.patreon.com/phpdoctrine",
  490. "type": "patreon"
  491. },
  492. {
  493. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  494. "type": "tidelift"
  495. }
  496. ],
  497. "time": "2024-02-05T11:35:39+00:00"
  498. },
  499. {
  500. "name": "easyswoole/spl",
  501. "version": "2.1.3",
  502. "source": {
  503. "type": "git",
  504. "url": "https://github.com/easy-swoole/spl.git",
  505. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516"
  506. },
  507. "dist": {
  508. "type": "zip",
  509. "url": "https://api.github.com/repos/easy-swoole/spl/zipball/6ca7321e476a40a3b70b15b836830ff030eec516",
  510. "reference": "6ca7321e476a40a3b70b15b836830ff030eec516",
  511. "shasum": ""
  512. },
  513. "require": {
  514. "ext-dom": "*",
  515. "ext-json": "*",
  516. "ext-simplexml": "*",
  517. "php": ">=8.1.0"
  518. },
  519. "require-dev": {
  520. "easyswoole/phpunit": "^1.0",
  521. "easyswoole/swoole-ide-helper": "^1.0"
  522. },
  523. "type": "library",
  524. "autoload": {
  525. "psr-4": {
  526. "EasySwoole\\Spl\\": "src/",
  527. "EasySwoole\\Spl\\Test\\": "test/"
  528. }
  529. },
  530. "notification-url": "https://packagist.org/downloads/",
  531. "license": [
  532. "Apache-2.0"
  533. ],
  534. "authors": [
  535. {
  536. "name": "YF",
  537. "email": "291323003@qq.com"
  538. }
  539. ],
  540. "description": "php stander lib",
  541. "homepage": "https://www.easyswoole.com/",
  542. "keywords": [
  543. "async",
  544. "easyswoole",
  545. "framework",
  546. "swoole"
  547. ],
  548. "support": {
  549. "issues": "https://github.com/easy-swoole/spl/issues",
  550. "source": "https://github.com/easy-swoole/spl/tree/2.1.3"
  551. },
  552. "time": "2024-07-09T14:44:25+00:00"
  553. },
  554. {
  555. "name": "easyswoole/verifycode",
  556. "version": "3.1.2",
  557. "source": {
  558. "type": "git",
  559. "url": "https://github.com/easy-swoole/verify-code.git",
  560. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6"
  561. },
  562. "dist": {
  563. "type": "zip",
  564. "url": "https://api.github.com/repos/easy-swoole/verify-code/zipball/cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  565. "reference": "cfd7c1a7218e8b5f2319d9b3b73cf7a588c22ee6",
  566. "shasum": ""
  567. },
  568. "require": {
  569. "easyswoole/spl": "^2.0",
  570. "ext-gd": "*",
  571. "php": ">=8.1"
  572. },
  573. "type": "library",
  574. "autoload": {
  575. "psr-4": {
  576. "EasySwoole\\VerifyCode\\": "src"
  577. }
  578. },
  579. "notification-url": "https://packagist.org/downloads/",
  580. "license": [
  581. "Apache-2.0"
  582. ],
  583. "authors": [
  584. {
  585. "name": "YF",
  586. "email": "291323003@qq.com"
  587. },
  588. {
  589. "name": "evalor",
  590. "email": "mipone@foxmail.com"
  591. }
  592. ],
  593. "support": {
  594. "issues": "https://github.com/easy-swoole/verify-code/issues",
  595. "source": "https://github.com/easy-swoole/verify-code/tree/3.1.2"
  596. },
  597. "time": "2023-09-06T06:45:56+00:00"
  598. },
  599. {
  600. "name": "egulias/email-validator",
  601. "version": "3.2.6",
  602. "source": {
  603. "type": "git",
  604. "url": "https://github.com/egulias/EmailValidator.git",
  605. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  606. },
  607. "dist": {
  608. "type": "zip",
  609. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  610. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  611. "shasum": ""
  612. },
  613. "require": {
  614. "doctrine/lexer": "^1.2|^2",
  615. "php": ">=7.2",
  616. "symfony/polyfill-intl-idn": "^1.15"
  617. },
  618. "require-dev": {
  619. "phpunit/phpunit": "^8.5.8|^9.3.3",
  620. "vimeo/psalm": "^4"
  621. },
  622. "suggest": {
  623. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  624. },
  625. "type": "library",
  626. "extra": {
  627. "branch-alias": {
  628. "dev-master": "3.0.x-dev"
  629. }
  630. },
  631. "autoload": {
  632. "psr-4": {
  633. "Egulias\\EmailValidator\\": "src"
  634. }
  635. },
  636. "notification-url": "https://packagist.org/downloads/",
  637. "license": [
  638. "MIT"
  639. ],
  640. "authors": [
  641. {
  642. "name": "Eduardo Gulias Davis"
  643. }
  644. ],
  645. "description": "A library for validating emails against several RFCs",
  646. "homepage": "https://github.com/egulias/EmailValidator",
  647. "keywords": [
  648. "email",
  649. "emailvalidation",
  650. "emailvalidator",
  651. "validation",
  652. "validator"
  653. ],
  654. "support": {
  655. "issues": "https://github.com/egulias/EmailValidator/issues",
  656. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  657. },
  658. "funding": [
  659. {
  660. "url": "https://github.com/egulias",
  661. "type": "github"
  662. }
  663. ],
  664. "time": "2023-06-01T07:04:22+00:00"
  665. },
  666. {
  667. "name": "fig/http-message-util",
  668. "version": "1.1.5",
  669. "source": {
  670. "type": "git",
  671. "url": "https://github.com/php-fig/http-message-util.git",
  672. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  673. },
  674. "dist": {
  675. "type": "zip",
  676. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  677. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  678. "shasum": ""
  679. },
  680. "require": {
  681. "php": "^5.3 || ^7.0 || ^8.0"
  682. },
  683. "suggest": {
  684. "psr/http-message": "The package containing the PSR-7 interfaces"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "branch-alias": {
  689. "dev-master": "1.1.x-dev"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Fig\\Http\\Message\\": "src/"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "PHP-FIG",
  704. "homepage": "https://www.php-fig.org/"
  705. }
  706. ],
  707. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  708. "keywords": [
  709. "http",
  710. "http-message",
  711. "psr",
  712. "psr-7",
  713. "request",
  714. "response"
  715. ],
  716. "support": {
  717. "issues": "https://github.com/php-fig/http-message-util/issues",
  718. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  719. },
  720. "time": "2020-11-24T22:02:12+00:00"
  721. },
  722. {
  723. "name": "graham-campbell/result-type",
  724. "version": "v1.1.3",
  725. "source": {
  726. "type": "git",
  727. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  728. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  729. },
  730. "dist": {
  731. "type": "zip",
  732. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  733. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  734. "shasum": ""
  735. },
  736. "require": {
  737. "php": "^7.2.5 || ^8.0",
  738. "phpoption/phpoption": "^1.9.3"
  739. },
  740. "require-dev": {
  741. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  742. },
  743. "type": "library",
  744. "autoload": {
  745. "psr-4": {
  746. "GrahamCampbell\\ResultType\\": "src/"
  747. }
  748. },
  749. "notification-url": "https://packagist.org/downloads/",
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. }
  759. ],
  760. "description": "An Implementation Of The Result Type",
  761. "keywords": [
  762. "Graham Campbell",
  763. "GrahamCampbell",
  764. "Result Type",
  765. "Result-Type",
  766. "result"
  767. ],
  768. "support": {
  769. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  770. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  771. },
  772. "funding": [
  773. {
  774. "url": "https://github.com/GrahamCampbell",
  775. "type": "github"
  776. },
  777. {
  778. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  779. "type": "tidelift"
  780. }
  781. ],
  782. "time": "2024-07-20T21:45:45+00:00"
  783. },
  784. {
  785. "name": "guzzlehttp/guzzle",
  786. "version": "7.9.2",
  787. "source": {
  788. "type": "git",
  789. "url": "https://github.com/guzzle/guzzle.git",
  790. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  791. },
  792. "dist": {
  793. "type": "zip",
  794. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  795. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  796. "shasum": ""
  797. },
  798. "require": {
  799. "ext-json": "*",
  800. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  801. "guzzlehttp/psr7": "^2.7.0",
  802. "php": "^7.2.5 || ^8.0",
  803. "psr/http-client": "^1.0",
  804. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  805. },
  806. "provide": {
  807. "psr/http-client-implementation": "1.0"
  808. },
  809. "require-dev": {
  810. "bamarni/composer-bin-plugin": "^1.8.2",
  811. "ext-curl": "*",
  812. "guzzle/client-integration-tests": "3.0.2",
  813. "php-http/message-factory": "^1.1",
  814. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  815. "psr/log": "^1.1 || ^2.0 || ^3.0"
  816. },
  817. "suggest": {
  818. "ext-curl": "Required for CURL handler support",
  819. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  820. "psr/log": "Required for using the Log middleware"
  821. },
  822. "type": "library",
  823. "extra": {
  824. "bamarni-bin": {
  825. "bin-links": true,
  826. "forward-command": false
  827. }
  828. },
  829. "autoload": {
  830. "files": [
  831. "src/functions_include.php"
  832. ],
  833. "psr-4": {
  834. "GuzzleHttp\\": "src/"
  835. }
  836. },
  837. "notification-url": "https://packagist.org/downloads/",
  838. "license": [
  839. "MIT"
  840. ],
  841. "authors": [
  842. {
  843. "name": "Graham Campbell",
  844. "email": "hello@gjcampbell.co.uk",
  845. "homepage": "https://github.com/GrahamCampbell"
  846. },
  847. {
  848. "name": "Michael Dowling",
  849. "email": "mtdowling@gmail.com",
  850. "homepage": "https://github.com/mtdowling"
  851. },
  852. {
  853. "name": "Jeremy Lindblom",
  854. "email": "jeremeamia@gmail.com",
  855. "homepage": "https://github.com/jeremeamia"
  856. },
  857. {
  858. "name": "George Mponos",
  859. "email": "gmponos@gmail.com",
  860. "homepage": "https://github.com/gmponos"
  861. },
  862. {
  863. "name": "Tobias Nyholm",
  864. "email": "tobias.nyholm@gmail.com",
  865. "homepage": "https://github.com/Nyholm"
  866. },
  867. {
  868. "name": "Márk Sági-Kazár",
  869. "email": "mark.sagikazar@gmail.com",
  870. "homepage": "https://github.com/sagikazarmark"
  871. },
  872. {
  873. "name": "Tobias Schultze",
  874. "email": "webmaster@tubo-world.de",
  875. "homepage": "https://github.com/Tobion"
  876. }
  877. ],
  878. "description": "Guzzle is a PHP HTTP client library",
  879. "keywords": [
  880. "client",
  881. "curl",
  882. "framework",
  883. "http",
  884. "http client",
  885. "psr-18",
  886. "psr-7",
  887. "rest",
  888. "web service"
  889. ],
  890. "support": {
  891. "issues": "https://github.com/guzzle/guzzle/issues",
  892. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://github.com/GrahamCampbell",
  897. "type": "github"
  898. },
  899. {
  900. "url": "https://github.com/Nyholm",
  901. "type": "github"
  902. },
  903. {
  904. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  905. "type": "tidelift"
  906. }
  907. ],
  908. "time": "2024-07-24T11:22:20+00:00"
  909. },
  910. {
  911. "name": "guzzlehttp/promises",
  912. "version": "2.0.4",
  913. "source": {
  914. "type": "git",
  915. "url": "https://github.com/guzzle/promises.git",
  916. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  917. },
  918. "dist": {
  919. "type": "zip",
  920. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  921. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  922. "shasum": ""
  923. },
  924. "require": {
  925. "php": "^7.2.5 || ^8.0"
  926. },
  927. "require-dev": {
  928. "bamarni/composer-bin-plugin": "^1.8.2",
  929. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  930. },
  931. "type": "library",
  932. "extra": {
  933. "bamarni-bin": {
  934. "bin-links": true,
  935. "forward-command": false
  936. }
  937. },
  938. "autoload": {
  939. "psr-4": {
  940. "GuzzleHttp\\Promise\\": "src/"
  941. }
  942. },
  943. "notification-url": "https://packagist.org/downloads/",
  944. "license": [
  945. "MIT"
  946. ],
  947. "authors": [
  948. {
  949. "name": "Graham Campbell",
  950. "email": "hello@gjcampbell.co.uk",
  951. "homepage": "https://github.com/GrahamCampbell"
  952. },
  953. {
  954. "name": "Michael Dowling",
  955. "email": "mtdowling@gmail.com",
  956. "homepage": "https://github.com/mtdowling"
  957. },
  958. {
  959. "name": "Tobias Nyholm",
  960. "email": "tobias.nyholm@gmail.com",
  961. "homepage": "https://github.com/Nyholm"
  962. },
  963. {
  964. "name": "Tobias Schultze",
  965. "email": "webmaster@tubo-world.de",
  966. "homepage": "https://github.com/Tobion"
  967. }
  968. ],
  969. "description": "Guzzle promises library",
  970. "keywords": [
  971. "promise"
  972. ],
  973. "support": {
  974. "issues": "https://github.com/guzzle/promises/issues",
  975. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  976. },
  977. "funding": [
  978. {
  979. "url": "https://github.com/GrahamCampbell",
  980. "type": "github"
  981. },
  982. {
  983. "url": "https://github.com/Nyholm",
  984. "type": "github"
  985. },
  986. {
  987. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  988. "type": "tidelift"
  989. }
  990. ],
  991. "time": "2024-10-17T10:06:22+00:00"
  992. },
  993. {
  994. "name": "guzzlehttp/psr7",
  995. "version": "2.7.0",
  996. "source": {
  997. "type": "git",
  998. "url": "https://github.com/guzzle/psr7.git",
  999. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1000. },
  1001. "dist": {
  1002. "type": "zip",
  1003. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1004. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1005. "shasum": ""
  1006. },
  1007. "require": {
  1008. "php": "^7.2.5 || ^8.0",
  1009. "psr/http-factory": "^1.0",
  1010. "psr/http-message": "^1.1 || ^2.0",
  1011. "ralouphie/getallheaders": "^3.0"
  1012. },
  1013. "provide": {
  1014. "psr/http-factory-implementation": "1.0",
  1015. "psr/http-message-implementation": "1.0"
  1016. },
  1017. "require-dev": {
  1018. "bamarni/composer-bin-plugin": "^1.8.2",
  1019. "http-interop/http-factory-tests": "0.9.0",
  1020. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1021. },
  1022. "suggest": {
  1023. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1024. },
  1025. "type": "library",
  1026. "extra": {
  1027. "bamarni-bin": {
  1028. "bin-links": true,
  1029. "forward-command": false
  1030. }
  1031. },
  1032. "autoload": {
  1033. "psr-4": {
  1034. "GuzzleHttp\\Psr7\\": "src/"
  1035. }
  1036. },
  1037. "notification-url": "https://packagist.org/downloads/",
  1038. "license": [
  1039. "MIT"
  1040. ],
  1041. "authors": [
  1042. {
  1043. "name": "Graham Campbell",
  1044. "email": "hello@gjcampbell.co.uk",
  1045. "homepage": "https://github.com/GrahamCampbell"
  1046. },
  1047. {
  1048. "name": "Michael Dowling",
  1049. "email": "mtdowling@gmail.com",
  1050. "homepage": "https://github.com/mtdowling"
  1051. },
  1052. {
  1053. "name": "George Mponos",
  1054. "email": "gmponos@gmail.com",
  1055. "homepage": "https://github.com/gmponos"
  1056. },
  1057. {
  1058. "name": "Tobias Nyholm",
  1059. "email": "tobias.nyholm@gmail.com",
  1060. "homepage": "https://github.com/Nyholm"
  1061. },
  1062. {
  1063. "name": "Márk Sági-Kazár",
  1064. "email": "mark.sagikazar@gmail.com",
  1065. "homepage": "https://github.com/sagikazarmark"
  1066. },
  1067. {
  1068. "name": "Tobias Schultze",
  1069. "email": "webmaster@tubo-world.de",
  1070. "homepage": "https://github.com/Tobion"
  1071. },
  1072. {
  1073. "name": "Márk Sági-Kazár",
  1074. "email": "mark.sagikazar@gmail.com",
  1075. "homepage": "https://sagikazarmark.hu"
  1076. }
  1077. ],
  1078. "description": "PSR-7 message implementation that also provides common utility methods",
  1079. "keywords": [
  1080. "http",
  1081. "message",
  1082. "psr-7",
  1083. "request",
  1084. "response",
  1085. "stream",
  1086. "uri",
  1087. "url"
  1088. ],
  1089. "support": {
  1090. "issues": "https://github.com/guzzle/psr7/issues",
  1091. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1092. },
  1093. "funding": [
  1094. {
  1095. "url": "https://github.com/GrahamCampbell",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://github.com/Nyholm",
  1100. "type": "github"
  1101. },
  1102. {
  1103. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1104. "type": "tidelift"
  1105. }
  1106. ],
  1107. "time": "2024-07-18T11:15:46+00:00"
  1108. },
  1109. {
  1110. "name": "hyperf/amqp",
  1111. "version": "v3.1.42",
  1112. "source": {
  1113. "type": "git",
  1114. "url": "https://github.com/hyperf/amqp.git",
  1115. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7"
  1116. },
  1117. "dist": {
  1118. "type": "zip",
  1119. "url": "https://api.github.com/repos/hyperf/amqp/zipball/45f1c42c84af67668040db936e11b1e64e2531d7",
  1120. "reference": "45f1c42c84af67668040db936e11b1e64e2531d7",
  1121. "shasum": ""
  1122. },
  1123. "require": {
  1124. "doctrine/instantiator": "^1.2.0",
  1125. "hyperf/codec": "~3.1.0",
  1126. "hyperf/contract": "~3.1.0",
  1127. "hyperf/coroutine": "~3.1.0",
  1128. "hyperf/pool": "~3.1.0",
  1129. "hyperf/process": "~3.1.0",
  1130. "hyperf/support": "~3.1.0",
  1131. "hyperf/utils": "~3.1.0",
  1132. "php": ">=8.1",
  1133. "php-amqplib/php-amqplib": "^3.5",
  1134. "psr/container": "^1.0 || ^2.0",
  1135. "psr/event-dispatcher": "^1.0",
  1136. "psr/log": "^1.0 || ^2.0 || ^3.0"
  1137. },
  1138. "suggest": {
  1139. "hyperf/di": "Required to use annotations.",
  1140. "hyperf/event": "Declare queue and start consumers automatically."
  1141. },
  1142. "type": "library",
  1143. "extra": {
  1144. "branch-alias": {
  1145. "dev-master": "3.1-dev"
  1146. },
  1147. "hyperf": {
  1148. "config": "Hyperf\\Amqp\\ConfigProvider"
  1149. }
  1150. },
  1151. "autoload": {
  1152. "psr-4": {
  1153. "Hyperf\\Amqp\\": "src/"
  1154. }
  1155. },
  1156. "notification-url": "https://packagist.org/downloads/",
  1157. "license": [
  1158. "MIT"
  1159. ],
  1160. "description": "A amqplib for hyperf.",
  1161. "homepage": "https://hyperf.io",
  1162. "keywords": [
  1163. "AMQP",
  1164. "hyperf",
  1165. "php"
  1166. ],
  1167. "support": {
  1168. "docs": "https://hyperf.wiki",
  1169. "issues": "https://github.com/hyperf/hyperf/issues",
  1170. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1171. "source": "https://github.com/hyperf/hyperf"
  1172. },
  1173. "funding": [
  1174. {
  1175. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1176. "type": "custom"
  1177. },
  1178. {
  1179. "url": "https://opencollective.com/hyperf",
  1180. "type": "open_collective"
  1181. }
  1182. ],
  1183. "time": "2024-09-25T02:54:12+00:00"
  1184. },
  1185. {
  1186. "name": "hyperf/cache",
  1187. "version": "v3.1.43",
  1188. "source": {
  1189. "type": "git",
  1190. "url": "https://github.com/hyperf/cache.git",
  1191. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  1192. },
  1193. "dist": {
  1194. "type": "zip",
  1195. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  1196. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  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-10-09T10:22:39+00:00"
  1255. },
  1256. {
  1257. "name": "hyperf/code-parser",
  1258. "version": "v3.1.42",
  1259. "source": {
  1260. "type": "git",
  1261. "url": "https://github.com/hyperf/code-parser.git",
  1262. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  1263. },
  1264. "dist": {
  1265. "type": "zip",
  1266. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  1267. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  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-09-25T02:54:12+00:00"
  1320. },
  1321. {
  1322. "name": "hyperf/codec",
  1323. "version": "v3.1.42",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/hyperf/codec.git",
  1327. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  1332. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  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-09-25T02:54:12+00:00"
  1384. },
  1385. {
  1386. "name": "hyperf/collection",
  1387. "version": "v3.1.44",
  1388. "source": {
  1389. "type": "git",
  1390. "url": "https://github.com/hyperf/collection.git",
  1391. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1392. },
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1396. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  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-10-23T10:12:23+00:00"
  1449. },
  1450. {
  1451. "name": "hyperf/command",
  1452. "version": "v3.1.42",
  1453. "source": {
  1454. "type": "git",
  1455. "url": "https://github.com/hyperf/command.git",
  1456. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1457. },
  1458. "dist": {
  1459. "type": "zip",
  1460. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1461. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1462. "shasum": ""
  1463. },
  1464. "require": {
  1465. "hyperf/collection": "~3.1.0",
  1466. "hyperf/context": "~3.1.0",
  1467. "hyperf/contract": "~3.1.0",
  1468. "hyperf/coroutine": "~3.1.0",
  1469. "hyperf/di": "~3.1.0",
  1470. "hyperf/stringable": "~3.1.0",
  1471. "hyperf/support": "~3.1.0",
  1472. "hyperf/tappable": "~3.1.0",
  1473. "php": ">=8.1",
  1474. "psr/event-dispatcher": "^1.0",
  1475. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1476. },
  1477. "suggest": {
  1478. "hyperf/di": "Required to use annotations.",
  1479. "hyperf/event": "Required to use listeners."
  1480. },
  1481. "type": "library",
  1482. "extra": {
  1483. "branch-alias": {
  1484. "dev-master": "3.1-dev"
  1485. },
  1486. "hyperf": {
  1487. "config": "Hyperf\\Command\\ConfigProvider"
  1488. }
  1489. },
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Hyperf\\Command\\": "src/"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "description": "Command for hyperf",
  1500. "keywords": [
  1501. "command",
  1502. "php",
  1503. "swoole"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/hyperf/command/issues",
  1507. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://opencollective.com/hyperf",
  1516. "type": "open_collective"
  1517. }
  1518. ],
  1519. "time": "2024-09-25T02:54:12+00:00"
  1520. },
  1521. {
  1522. "name": "hyperf/conditionable",
  1523. "version": "v3.1.42",
  1524. "source": {
  1525. "type": "git",
  1526. "url": "https://github.com/hyperf/conditionable.git",
  1527. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1528. },
  1529. "dist": {
  1530. "type": "zip",
  1531. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1532. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1533. "shasum": ""
  1534. },
  1535. "require": {
  1536. "php": ">=8.1"
  1537. },
  1538. "type": "library",
  1539. "extra": {
  1540. "branch-alias": {
  1541. "dev-master": "3.1-dev"
  1542. }
  1543. },
  1544. "autoload": {
  1545. "psr-4": {
  1546. "Hyperf\\Conditionable\\": "src/"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1554. "homepage": "https://hyperf.io",
  1555. "keywords": [
  1556. "conditionable",
  1557. "hyperf",
  1558. "php",
  1559. "swoole"
  1560. ],
  1561. "support": {
  1562. "docs": "https://hyperf.wiki",
  1563. "issues": "https://github.com/hyperf/hyperf/issues",
  1564. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1565. "source": "https://github.com/hyperf/hyperf"
  1566. },
  1567. "funding": [
  1568. {
  1569. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1570. "type": "custom"
  1571. },
  1572. {
  1573. "url": "https://opencollective.com/hyperf",
  1574. "type": "open_collective"
  1575. }
  1576. ],
  1577. "time": "2024-09-25T02:54:12+00:00"
  1578. },
  1579. {
  1580. "name": "hyperf/config",
  1581. "version": "v3.1.42",
  1582. "source": {
  1583. "type": "git",
  1584. "url": "https://github.com/hyperf/config.git",
  1585. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1586. },
  1587. "dist": {
  1588. "type": "zip",
  1589. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1590. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1591. "shasum": ""
  1592. },
  1593. "require": {
  1594. "hyperf/collection": "~3.1.0",
  1595. "hyperf/contract": "~3.1.0",
  1596. "hyperf/support": "~3.1.0",
  1597. "php": ">=8.1",
  1598. "psr/container": "^1.0 || ^2.0",
  1599. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1600. },
  1601. "suggest": {
  1602. "hyperf/context": "Required to use config()",
  1603. "hyperf/di": "Allows using @Value annotation",
  1604. "hyperf/event": "Allows using @Value annotation",
  1605. "hyperf/framework": "Allows using @Value annotation",
  1606. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1607. },
  1608. "type": "library",
  1609. "extra": {
  1610. "branch-alias": {
  1611. "dev-master": "3.1-dev"
  1612. },
  1613. "hyperf": {
  1614. "config": "Hyperf\\Config\\ConfigProvider"
  1615. }
  1616. },
  1617. "autoload": {
  1618. "files": [
  1619. "./src/Functions.php"
  1620. ],
  1621. "psr-4": {
  1622. "Hyperf\\Config\\": "src/"
  1623. }
  1624. },
  1625. "notification-url": "https://packagist.org/downloads/",
  1626. "license": [
  1627. "MIT"
  1628. ],
  1629. "description": "An independent component that provides configuration container.",
  1630. "homepage": "https://hyperf.io",
  1631. "keywords": [
  1632. "config",
  1633. "configuration",
  1634. "hyperf",
  1635. "php",
  1636. "swoole"
  1637. ],
  1638. "support": {
  1639. "docs": "https://hyperf.wiki",
  1640. "issues": "https://github.com/hyperf/hyperf/issues",
  1641. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1642. "source": "https://github.com/hyperf/hyperf"
  1643. },
  1644. "funding": [
  1645. {
  1646. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1647. "type": "custom"
  1648. },
  1649. {
  1650. "url": "https://opencollective.com/hyperf",
  1651. "type": "open_collective"
  1652. }
  1653. ],
  1654. "time": "2024-09-25T02:54:12+00:00"
  1655. },
  1656. {
  1657. "name": "hyperf/config-center",
  1658. "version": "v3.1.42",
  1659. "source": {
  1660. "type": "git",
  1661. "url": "https://github.com/hyperf/config-center.git",
  1662. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1663. },
  1664. "dist": {
  1665. "type": "zip",
  1666. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1667. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1668. "shasum": ""
  1669. },
  1670. "require": {
  1671. "hyperf/support": "~3.1.0",
  1672. "php": ">=8.1"
  1673. },
  1674. "suggest": {
  1675. "hyperf/process": "^2.1"
  1676. },
  1677. "type": "library",
  1678. "extra": {
  1679. "branch-alias": {
  1680. "dev-master": "3.1-dev"
  1681. },
  1682. "hyperf": {
  1683. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "Hyperf\\ConfigCenter\\": "src/"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "description": "The abstraction component of config center",
  1696. "homepage": "https://hyperf.io",
  1697. "keywords": [
  1698. "config-center",
  1699. "hyperf",
  1700. "php"
  1701. ],
  1702. "support": {
  1703. "docs": "https://hyperf.wiki",
  1704. "issues": "https://github.com/hyperf/hyperf/issues",
  1705. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1706. "source": "https://github.com/hyperf/hyperf"
  1707. },
  1708. "funding": [
  1709. {
  1710. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1711. "type": "custom"
  1712. },
  1713. {
  1714. "url": "https://opencollective.com/hyperf",
  1715. "type": "open_collective"
  1716. }
  1717. ],
  1718. "time": "2024-09-25T02:54:12+00:00"
  1719. },
  1720. {
  1721. "name": "hyperf/config-nacos",
  1722. "version": "v3.1.42",
  1723. "source": {
  1724. "type": "git",
  1725. "url": "https://github.com/hyperf/config-nacos.git",
  1726. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1727. },
  1728. "dist": {
  1729. "type": "zip",
  1730. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1731. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1732. "shasum": ""
  1733. },
  1734. "require": {
  1735. "hyperf/codec": "~3.1.0",
  1736. "hyperf/config-center": "~3.1.0",
  1737. "hyperf/contract": "~3.1.0",
  1738. "hyperf/guzzle": "~3.1.0",
  1739. "hyperf/nacos": "~3.1.0",
  1740. "hyperf/support": "~3.1.0",
  1741. "hyperf/utils": "~3.1.0",
  1742. "jetbrains/phpstorm-attributes": "^1.0",
  1743. "php": ">=8.1"
  1744. },
  1745. "suggest": {
  1746. "ext-json": "*",
  1747. "ext-simplexml": "*",
  1748. "ext-yaml": "*",
  1749. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1750. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1751. "hyperf/process": "Required to use processes. (~2.2.0)"
  1752. },
  1753. "type": "library",
  1754. "extra": {
  1755. "branch-alias": {
  1756. "dev-master": "3.1-dev"
  1757. },
  1758. "hyperf": {
  1759. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1760. }
  1761. },
  1762. "autoload": {
  1763. "psr-4": {
  1764. "Hyperf\\ConfigNacos\\": "src/"
  1765. }
  1766. },
  1767. "notification-url": "https://packagist.org/downloads/",
  1768. "license": [
  1769. "MIT"
  1770. ],
  1771. "description": "A nacos adapter for config center component.",
  1772. "homepage": "https://hyperf.io",
  1773. "keywords": [
  1774. "hyperf",
  1775. "nacos",
  1776. "php",
  1777. "swoole"
  1778. ],
  1779. "support": {
  1780. "docs": "https://hyperf.wiki",
  1781. "issues": "https://github.com/hyperf/hyperf/issues",
  1782. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1783. "source": "https://github.com/hyperf/hyperf"
  1784. },
  1785. "funding": [
  1786. {
  1787. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1788. "type": "custom"
  1789. },
  1790. {
  1791. "url": "https://opencollective.com/hyperf",
  1792. "type": "open_collective"
  1793. }
  1794. ],
  1795. "time": "2024-09-25T02:54:12+00:00"
  1796. },
  1797. {
  1798. "name": "hyperf/constants",
  1799. "version": "v3.1.42",
  1800. "source": {
  1801. "type": "git",
  1802. "url": "https://github.com/hyperf/constants.git",
  1803. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1804. },
  1805. "dist": {
  1806. "type": "zip",
  1807. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1808. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1809. "shasum": ""
  1810. },
  1811. "require": {
  1812. "hyperf/di": "~3.1.0",
  1813. "hyperf/support": "~3.1.0",
  1814. "hyperf/utils": "~3.1.0",
  1815. "php": ">=8.1"
  1816. },
  1817. "suggest": {
  1818. "hyperf/translation": "Required to use translation."
  1819. },
  1820. "type": "library",
  1821. "extra": {
  1822. "branch-alias": {
  1823. "dev-master": "3.1-dev"
  1824. },
  1825. "hyperf": {
  1826. "config": "Hyperf\\Constants\\ConfigProvider"
  1827. }
  1828. },
  1829. "autoload": {
  1830. "psr-4": {
  1831. "Hyperf\\Constants\\": "src/"
  1832. }
  1833. },
  1834. "notification-url": "https://packagist.org/downloads/",
  1835. "license": [
  1836. "MIT"
  1837. ],
  1838. "description": "A constants component for hyperf.",
  1839. "homepage": "https://hyperf.io",
  1840. "keywords": [
  1841. "constants",
  1842. "hyperf",
  1843. "php"
  1844. ],
  1845. "support": {
  1846. "docs": "https://hyperf.wiki",
  1847. "issues": "https://github.com/hyperf/hyperf/issues",
  1848. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1849. "source": "https://github.com/hyperf/hyperf"
  1850. },
  1851. "funding": [
  1852. {
  1853. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1854. "type": "custom"
  1855. },
  1856. {
  1857. "url": "https://opencollective.com/hyperf",
  1858. "type": "open_collective"
  1859. }
  1860. ],
  1861. "time": "2024-09-25T02:54:12+00:00"
  1862. },
  1863. {
  1864. "name": "hyperf/consul",
  1865. "version": "v3.1.42",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/hyperf/consul.git",
  1869. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1874. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1879. "php": ">=8.1"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "branch-alias": {
  1884. "dev-master": "3.1-dev"
  1885. },
  1886. "hyperf": {
  1887. "config": "Hyperf\\Consul\\ConfigProvider"
  1888. }
  1889. },
  1890. "autoload": {
  1891. "psr-4": {
  1892. "Hyperf\\Consul\\": "src/"
  1893. }
  1894. },
  1895. "notification-url": "https://packagist.org/downloads/",
  1896. "license": [
  1897. "MIT"
  1898. ],
  1899. "description": "A Consul Client for Hyperf.",
  1900. "homepage": "https://hyperf.io",
  1901. "keywords": [
  1902. "consul",
  1903. "consul-client",
  1904. "hyperf",
  1905. "php",
  1906. "swoole"
  1907. ],
  1908. "support": {
  1909. "docs": "https://hyperf.wiki",
  1910. "issues": "https://github.com/hyperf/hyperf/issues",
  1911. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1912. "source": "https://github.com/hyperf/hyperf"
  1913. },
  1914. "funding": [
  1915. {
  1916. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1917. "type": "custom"
  1918. },
  1919. {
  1920. "url": "https://opencollective.com/hyperf",
  1921. "type": "open_collective"
  1922. }
  1923. ],
  1924. "time": "2024-09-25T02:54:12+00:00"
  1925. },
  1926. {
  1927. "name": "hyperf/context",
  1928. "version": "v3.1.42",
  1929. "source": {
  1930. "type": "git",
  1931. "url": "https://github.com/hyperf/context.git",
  1932. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1933. },
  1934. "dist": {
  1935. "type": "zip",
  1936. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1937. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1938. "shasum": ""
  1939. },
  1940. "require": {
  1941. "hyperf/engine": "^2.0",
  1942. "php": ">=8.1"
  1943. },
  1944. "suggest": {
  1945. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1946. },
  1947. "type": "library",
  1948. "extra": {
  1949. "branch-alias": {
  1950. "dev-master": "3.1-dev"
  1951. }
  1952. },
  1953. "autoload": {
  1954. "psr-4": {
  1955. "Hyperf\\Context\\": "src/"
  1956. }
  1957. },
  1958. "notification-url": "https://packagist.org/downloads/",
  1959. "license": [
  1960. "MIT"
  1961. ],
  1962. "description": "A coroutine/application context library.",
  1963. "homepage": "https://hyperf.io",
  1964. "keywords": [
  1965. "Context",
  1966. "hyperf",
  1967. "php",
  1968. "swoole"
  1969. ],
  1970. "support": {
  1971. "docs": "https://hyperf.wiki",
  1972. "issues": "https://github.com/hyperf/hyperf/issues",
  1973. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1974. "source": "https://github.com/hyperf/hyperf"
  1975. },
  1976. "funding": [
  1977. {
  1978. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1979. "type": "custom"
  1980. },
  1981. {
  1982. "url": "https://opencollective.com/hyperf",
  1983. "type": "open_collective"
  1984. }
  1985. ],
  1986. "time": "2024-09-25T02:54:12+00:00"
  1987. },
  1988. {
  1989. "name": "hyperf/contract",
  1990. "version": "v3.1.42",
  1991. "source": {
  1992. "type": "git",
  1993. "url": "https://github.com/hyperf/contract.git",
  1994. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1995. },
  1996. "dist": {
  1997. "type": "zip",
  1998. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1999. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  2000. "shasum": ""
  2001. },
  2002. "require": {
  2003. "php": ">=8.1"
  2004. },
  2005. "type": "library",
  2006. "extra": {
  2007. "branch-alias": {
  2008. "dev-master": "3.1-dev"
  2009. }
  2010. },
  2011. "autoload": {
  2012. "psr-4": {
  2013. "Hyperf\\Contract\\": "src/"
  2014. }
  2015. },
  2016. "notification-url": "https://packagist.org/downloads/",
  2017. "license": [
  2018. "MIT"
  2019. ],
  2020. "description": "The contracts of Hyperf.",
  2021. "homepage": "https://hyperf.io",
  2022. "keywords": [
  2023. "hyperf",
  2024. "php",
  2025. "swoole"
  2026. ],
  2027. "support": {
  2028. "docs": "https://hyperf.wiki",
  2029. "issues": "https://github.com/hyperf/hyperf/issues",
  2030. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2031. "source": "https://github.com/hyperf/hyperf"
  2032. },
  2033. "funding": [
  2034. {
  2035. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2036. "type": "custom"
  2037. },
  2038. {
  2039. "url": "https://opencollective.com/hyperf",
  2040. "type": "open_collective"
  2041. }
  2042. ],
  2043. "time": "2024-09-25T02:54:12+00:00"
  2044. },
  2045. {
  2046. "name": "hyperf/coordinator",
  2047. "version": "v3.1.42",
  2048. "source": {
  2049. "type": "git",
  2050. "url": "https://github.com/hyperf/coordinator.git",
  2051. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  2052. },
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2056. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "hyperf/engine": "^2.0",
  2061. "php": ">=8.1"
  2062. },
  2063. "type": "library",
  2064. "extra": {
  2065. "branch-alias": {
  2066. "dev-master": "3.1-dev"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "files": [
  2071. "src/Functions.php"
  2072. ],
  2073. "psr-4": {
  2074. "Hyperf\\Coordinator\\": "src/"
  2075. }
  2076. },
  2077. "notification-url": "https://packagist.org/downloads/",
  2078. "license": [
  2079. "MIT"
  2080. ],
  2081. "description": "Hyperf Coordinator",
  2082. "homepage": "https://hyperf.io",
  2083. "keywords": [
  2084. "Coordinator",
  2085. "hyperf",
  2086. "php",
  2087. "swoole"
  2088. ],
  2089. "support": {
  2090. "docs": "https://hyperf.wiki",
  2091. "issues": "https://github.com/hyperf/hyperf/issues",
  2092. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2093. "source": "https://github.com/hyperf/hyperf"
  2094. },
  2095. "funding": [
  2096. {
  2097. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2098. "type": "custom"
  2099. },
  2100. {
  2101. "url": "https://opencollective.com/hyperf",
  2102. "type": "open_collective"
  2103. }
  2104. ],
  2105. "time": "2024-09-25T02:54:12+00:00"
  2106. },
  2107. {
  2108. "name": "hyperf/coroutine",
  2109. "version": "v3.1.42",
  2110. "source": {
  2111. "type": "git",
  2112. "url": "https://github.com/hyperf/coroutine.git",
  2113. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  2114. },
  2115. "dist": {
  2116. "type": "zip",
  2117. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2118. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  2119. "shasum": ""
  2120. },
  2121. "require": {
  2122. "hyperf/context": "~3.1.0",
  2123. "hyperf/contract": "~3.1.0",
  2124. "hyperf/engine": "^2.0",
  2125. "php": ">=8.1"
  2126. },
  2127. "type": "library",
  2128. "extra": {
  2129. "branch-alias": {
  2130. "dev-master": "3.1-dev"
  2131. }
  2132. },
  2133. "autoload": {
  2134. "files": [
  2135. "src/Functions.php"
  2136. ],
  2137. "psr-4": {
  2138. "Hyperf\\Coroutine\\": "src/"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "description": "Hyperf Coroutine",
  2146. "homepage": "https://hyperf.io",
  2147. "keywords": [
  2148. "coroutine",
  2149. "hyperf",
  2150. "php",
  2151. "swoole"
  2152. ],
  2153. "support": {
  2154. "docs": "https://hyperf.wiki",
  2155. "issues": "https://github.com/hyperf/hyperf/issues",
  2156. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2157. "source": "https://github.com/hyperf/hyperf"
  2158. },
  2159. "funding": [
  2160. {
  2161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2162. "type": "custom"
  2163. },
  2164. {
  2165. "url": "https://opencollective.com/hyperf",
  2166. "type": "open_collective"
  2167. }
  2168. ],
  2169. "time": "2024-09-25T02:54:12+00:00"
  2170. },
  2171. {
  2172. "name": "hyperf/database",
  2173. "version": "v3.1.44",
  2174. "source": {
  2175. "type": "git",
  2176. "url": "https://github.com/hyperf/database.git",
  2177. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  2178. },
  2179. "dist": {
  2180. "type": "zip",
  2181. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2182. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  2183. "shasum": ""
  2184. },
  2185. "require": {
  2186. "hyperf/code-parser": "~3.1.0",
  2187. "hyperf/collection": "~3.1.23",
  2188. "hyperf/conditionable": "~3.1.0",
  2189. "hyperf/macroable": "~3.1.0",
  2190. "hyperf/support": "~3.1.0",
  2191. "hyperf/tappable": "~3.1.0",
  2192. "hyperf/utils": "~3.1.0",
  2193. "nesbot/carbon": "^2.0",
  2194. "php": ">=8.1",
  2195. "psr/container": "^1.0 || ^2.0",
  2196. "psr/event-dispatcher": "^1.0"
  2197. },
  2198. "suggest": {
  2199. "doctrine/dbal": "Required to rename columns (^3.0).",
  2200. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  2201. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  2202. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  2203. },
  2204. "type": "library",
  2205. "extra": {
  2206. "branch-alias": {
  2207. "dev-master": "3.1-dev"
  2208. }
  2209. },
  2210. "autoload": {
  2211. "psr-4": {
  2212. "Hyperf\\Database\\": "src/"
  2213. }
  2214. },
  2215. "notification-url": "https://packagist.org/downloads/",
  2216. "license": [
  2217. "MIT"
  2218. ],
  2219. "description": "A flexible database library.",
  2220. "homepage": "https://hyperf.io",
  2221. "keywords": [
  2222. "database",
  2223. "hyperf",
  2224. "php"
  2225. ],
  2226. "support": {
  2227. "docs": "https://hyperf.wiki",
  2228. "issues": "https://github.com/hyperf/hyperf/issues",
  2229. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2230. "source": "https://github.com/hyperf/hyperf"
  2231. },
  2232. "funding": [
  2233. {
  2234. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2235. "type": "custom"
  2236. },
  2237. {
  2238. "url": "https://opencollective.com/hyperf",
  2239. "type": "open_collective"
  2240. }
  2241. ],
  2242. "time": "2024-10-11T10:25:57+00:00"
  2243. },
  2244. {
  2245. "name": "hyperf/db-connection",
  2246. "version": "v3.1.44",
  2247. "source": {
  2248. "type": "git",
  2249. "url": "https://github.com/hyperf/db-connection.git",
  2250. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  2251. },
  2252. "dist": {
  2253. "type": "zip",
  2254. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  2255. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  2256. "shasum": ""
  2257. },
  2258. "require": {
  2259. "hyperf/database": "~3.1.0",
  2260. "hyperf/di": "~3.1.0",
  2261. "hyperf/framework": "~3.1.0",
  2262. "hyperf/model-listener": "~3.1.0",
  2263. "hyperf/pool": "~3.1.0",
  2264. "hyperf/support": "~3.1.0",
  2265. "hyperf/utils": "~3.1.0",
  2266. "php": ">=8.1",
  2267. "psr/container": "^1.0 || ^2.0"
  2268. },
  2269. "type": "library",
  2270. "extra": {
  2271. "branch-alias": {
  2272. "dev-master": "3.1-dev"
  2273. },
  2274. "hyperf": {
  2275. "config": "Hyperf\\DbConnection\\ConfigProvider"
  2276. }
  2277. },
  2278. "autoload": {
  2279. "psr-4": {
  2280. "Hyperf\\DbConnection\\": "src/"
  2281. }
  2282. },
  2283. "notification-url": "https://packagist.org/downloads/",
  2284. "license": [
  2285. "MIT"
  2286. ],
  2287. "description": "A hyperf db connection handler for hyperf/database.",
  2288. "homepage": "https://hyperf.io",
  2289. "keywords": [
  2290. "Connection",
  2291. "database",
  2292. "hyperf",
  2293. "php"
  2294. ],
  2295. "support": {
  2296. "docs": "https://hyperf.wiki",
  2297. "issues": "https://github.com/hyperf/hyperf/issues",
  2298. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2299. "source": "https://github.com/hyperf/hyperf"
  2300. },
  2301. "funding": [
  2302. {
  2303. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2304. "type": "custom"
  2305. },
  2306. {
  2307. "url": "https://opencollective.com/hyperf",
  2308. "type": "open_collective"
  2309. }
  2310. ],
  2311. "time": "2024-10-11T08:58:16+00:00"
  2312. },
  2313. {
  2314. "name": "hyperf/di",
  2315. "version": "v3.1.42",
  2316. "source": {
  2317. "type": "git",
  2318. "url": "https://github.com/hyperf/di.git",
  2319. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  2320. },
  2321. "dist": {
  2322. "type": "zip",
  2323. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  2324. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  2325. "shasum": ""
  2326. },
  2327. "require": {
  2328. "doctrine/instantiator": "^1.0",
  2329. "hyperf/code-parser": "~3.1.0",
  2330. "hyperf/pipeline": "~3.1.0",
  2331. "hyperf/stdlib": "~3.1.0",
  2332. "hyperf/support": "~3.1.0",
  2333. "nikic/php-parser": "^4.1",
  2334. "php": ">=8.1",
  2335. "php-di/phpdoc-reader": "^2.2",
  2336. "psr/container": "^1.0 || ^2.0",
  2337. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  2338. "vlucas/phpdotenv": "^5.0"
  2339. },
  2340. "suggest": {
  2341. "ext-pcntl": "Required to scan annotations.",
  2342. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  2343. },
  2344. "type": "library",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-master": "3.1-dev"
  2348. },
  2349. "hyperf": {
  2350. "config": "Hyperf\\Di\\ConfigProvider"
  2351. }
  2352. },
  2353. "autoload": {
  2354. "psr-4": {
  2355. "Hyperf\\Di\\": "src/"
  2356. }
  2357. },
  2358. "notification-url": "https://packagist.org/downloads/",
  2359. "license": [
  2360. "MIT"
  2361. ],
  2362. "description": "A DI for Hyperf.",
  2363. "homepage": "https://hyperf.io",
  2364. "keywords": [
  2365. "annotation",
  2366. "di",
  2367. "hyperf",
  2368. "php",
  2369. "swoole"
  2370. ],
  2371. "support": {
  2372. "docs": "https://hyperf.wiki",
  2373. "issues": "https://github.com/hyperf/hyperf/issues",
  2374. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2375. "source": "https://github.com/hyperf/hyperf"
  2376. },
  2377. "funding": [
  2378. {
  2379. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2380. "type": "custom"
  2381. },
  2382. {
  2383. "url": "https://opencollective.com/hyperf",
  2384. "type": "open_collective"
  2385. }
  2386. ],
  2387. "time": "2024-09-25T02:54:12+00:00"
  2388. },
  2389. {
  2390. "name": "hyperf/dispatcher",
  2391. "version": "v3.1.42",
  2392. "source": {
  2393. "type": "git",
  2394. "url": "https://github.com/hyperf/dispatcher.git",
  2395. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2396. },
  2397. "dist": {
  2398. "type": "zip",
  2399. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2400. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2401. "shasum": ""
  2402. },
  2403. "require": {
  2404. "hyperf/contract": "~3.1.0",
  2405. "php": ">=8.1",
  2406. "psr/container": "^1.0 || ^2.0",
  2407. "psr/http-message": "^1.0 || ^2.0",
  2408. "psr/http-server-middleware": "^1.0"
  2409. },
  2410. "type": "library",
  2411. "extra": {
  2412. "branch-alias": {
  2413. "dev-master": "3.1-dev"
  2414. },
  2415. "hyperf": {
  2416. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2417. }
  2418. },
  2419. "autoload": {
  2420. "psr-4": {
  2421. "Hyperf\\Dispatcher\\": "src/"
  2422. }
  2423. },
  2424. "notification-url": "https://packagist.org/downloads/",
  2425. "license": [
  2426. "MIT"
  2427. ],
  2428. "description": "A HTTP Server for Hyperf.",
  2429. "homepage": "https://hyperf.io",
  2430. "keywords": [
  2431. "dispatcher",
  2432. "filter",
  2433. "hyperf",
  2434. "middleware",
  2435. "php",
  2436. "swoole"
  2437. ],
  2438. "support": {
  2439. "docs": "https://hyperf.wiki",
  2440. "issues": "https://github.com/hyperf/hyperf/issues",
  2441. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2442. "source": "https://github.com/hyperf/hyperf"
  2443. },
  2444. "funding": [
  2445. {
  2446. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2447. "type": "custom"
  2448. },
  2449. {
  2450. "url": "https://opencollective.com/hyperf",
  2451. "type": "open_collective"
  2452. }
  2453. ],
  2454. "time": "2024-09-25T02:54:12+00:00"
  2455. },
  2456. {
  2457. "name": "hyperf/engine",
  2458. "version": "v2.11.0",
  2459. "source": {
  2460. "type": "git",
  2461. "url": "https://github.com/hyperf/engine.git",
  2462. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2463. },
  2464. "dist": {
  2465. "type": "zip",
  2466. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2467. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2468. "shasum": ""
  2469. },
  2470. "require": {
  2471. "hyperf/engine-contract": "~1.10.0",
  2472. "php": ">=8.0"
  2473. },
  2474. "conflict": {
  2475. "ext-swoole": "<5.0"
  2476. },
  2477. "require-dev": {
  2478. "friendsofphp/php-cs-fixer": "^3.0",
  2479. "hyperf/guzzle": "^3.0",
  2480. "hyperf/http-message": "^3.0",
  2481. "mockery/mockery": "^1.5",
  2482. "phpstan/phpstan": "^1.0",
  2483. "phpunit/phpunit": "^9.4",
  2484. "swoole/ide-helper": "5.*"
  2485. },
  2486. "suggest": {
  2487. "ext-sockets": "*",
  2488. "ext-swoole": ">=5.0",
  2489. "hyperf/http-message": "Required to use ResponseEmitter.",
  2490. "psr/http-message": "Required to use WebSocket Frame."
  2491. },
  2492. "type": "library",
  2493. "extra": {
  2494. "branch-alias": {
  2495. "dev-master": "2.11-dev"
  2496. },
  2497. "hyperf": {
  2498. "config": "Hyperf\\Engine\\ConfigProvider"
  2499. }
  2500. },
  2501. "autoload": {
  2502. "files": [
  2503. "src/Functions.php"
  2504. ],
  2505. "psr-4": {
  2506. "Hyperf\\Engine\\": "src/"
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "description": "Coroutine engine provided by swoole.",
  2514. "keywords": [
  2515. "engine",
  2516. "hyperf",
  2517. "php",
  2518. "swoole"
  2519. ],
  2520. "support": {
  2521. "issues": "https://github.com/hyperf/engine/issues",
  2522. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2523. },
  2524. "funding": [
  2525. {
  2526. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2527. "type": "custom"
  2528. },
  2529. {
  2530. "url": "https://opencollective.com/hyperf",
  2531. "type": "open_collective"
  2532. }
  2533. ],
  2534. "time": "2024-04-17T13:36:28+00:00"
  2535. },
  2536. {
  2537. "name": "hyperf/engine-contract",
  2538. "version": "v1.10.1",
  2539. "source": {
  2540. "type": "git",
  2541. "url": "https://github.com/hyperf/engine-contract.git",
  2542. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2543. },
  2544. "dist": {
  2545. "type": "zip",
  2546. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2547. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2548. "shasum": ""
  2549. },
  2550. "require": {
  2551. "php": ">=8.0"
  2552. },
  2553. "require-dev": {
  2554. "friendsofphp/php-cs-fixer": "^3.0",
  2555. "mockery/mockery": "^1.0",
  2556. "phpstan/phpstan": "^1.0",
  2557. "phpunit/phpunit": ">=7.0",
  2558. "psr/http-message": "^1.0",
  2559. "swoole/ide-helper": "^4.5"
  2560. },
  2561. "suggest": {
  2562. "psr/http-message": "Required to use WebSocket Frame."
  2563. },
  2564. "type": "library",
  2565. "extra": {
  2566. "branch-alias": {
  2567. "dev-master": "1.9-dev"
  2568. }
  2569. },
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Hyperf\\Engine\\Contract\\": "src/"
  2573. }
  2574. },
  2575. "notification-url": "https://packagist.org/downloads/",
  2576. "license": [
  2577. "MIT"
  2578. ],
  2579. "description": "Contract for Coroutine Engine",
  2580. "keywords": [
  2581. "contract",
  2582. "coroutine",
  2583. "engine",
  2584. "hyperf",
  2585. "php"
  2586. ],
  2587. "support": {
  2588. "issues": "https://github.com/hyperf/engine-contract/issues",
  2589. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2590. },
  2591. "funding": [
  2592. {
  2593. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2594. "type": "custom"
  2595. },
  2596. {
  2597. "url": "https://opencollective.com/hyperf",
  2598. "type": "open_collective"
  2599. }
  2600. ],
  2601. "time": "2024-04-17T13:34:51+00:00"
  2602. },
  2603. {
  2604. "name": "hyperf/event",
  2605. "version": "v3.1.42",
  2606. "source": {
  2607. "type": "git",
  2608. "url": "https://github.com/hyperf/event.git",
  2609. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2610. },
  2611. "dist": {
  2612. "type": "zip",
  2613. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2614. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2615. "shasum": ""
  2616. },
  2617. "require": {
  2618. "hyperf/contract": "~3.1.0",
  2619. "hyperf/stdlib": "~3.1.0",
  2620. "php": ">=8.1",
  2621. "psr/event-dispatcher": "^1.0"
  2622. },
  2623. "suggest": {
  2624. "hyperf/di": "Required to use annotatioins."
  2625. },
  2626. "type": "library",
  2627. "extra": {
  2628. "branch-alias": {
  2629. "dev-master": "3.1-dev"
  2630. },
  2631. "hyperf": {
  2632. "config": "Hyperf\\Event\\ConfigProvider"
  2633. }
  2634. },
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Hyperf\\Event\\": "src/"
  2638. }
  2639. },
  2640. "notification-url": "https://packagist.org/downloads/",
  2641. "license": [
  2642. "MIT"
  2643. ],
  2644. "description": "an event manager that implements PSR-14.",
  2645. "homepage": "https://hyperf.io",
  2646. "keywords": [
  2647. "event",
  2648. "hyperf",
  2649. "php",
  2650. "swoole"
  2651. ],
  2652. "support": {
  2653. "docs": "https://hyperf.wiki",
  2654. "issues": "https://github.com/hyperf/hyperf/issues",
  2655. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2656. "source": "https://github.com/hyperf/hyperf"
  2657. },
  2658. "funding": [
  2659. {
  2660. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2661. "type": "custom"
  2662. },
  2663. {
  2664. "url": "https://opencollective.com/hyperf",
  2665. "type": "open_collective"
  2666. }
  2667. ],
  2668. "time": "2024-09-25T02:54:12+00:00"
  2669. },
  2670. {
  2671. "name": "hyperf/exception-handler",
  2672. "version": "v3.1.42",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/hyperf/exception-handler.git",
  2676. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2681. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "hyperf/context": "~3.1.0",
  2686. "hyperf/contract": "~3.1.0",
  2687. "hyperf/dispatcher": "~3.1.0",
  2688. "hyperf/http-message": "~3.1.0",
  2689. "hyperf/stdlib": "~3.1.0",
  2690. "hyperf/support": "~3.1.0",
  2691. "php": ">=8.1",
  2692. "psr/container": "^1.0 || ^2.0",
  2693. "psr/http-message": "^1.0 || ^2.0",
  2694. "swow/psr7-plus": "^1.0"
  2695. },
  2696. "suggest": {
  2697. "hyperf/di": "Required to use #[ExceptionHandler]",
  2698. "hyperf/event": "Required to use listeners",
  2699. "hyperf/framework": "Required to use listeners",
  2700. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2701. },
  2702. "type": "library",
  2703. "extra": {
  2704. "branch-alias": {
  2705. "dev-master": "3.1-dev"
  2706. },
  2707. "hyperf": {
  2708. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2709. }
  2710. },
  2711. "autoload": {
  2712. "psr-4": {
  2713. "Hyperf\\ExceptionHandler\\": "src/"
  2714. }
  2715. },
  2716. "notification-url": "https://packagist.org/downloads/",
  2717. "license": [
  2718. "MIT"
  2719. ],
  2720. "description": "Exception handler for hyperf",
  2721. "homepage": "https://hyperf.io",
  2722. "keywords": [
  2723. "exception-handler",
  2724. "php",
  2725. "swoole"
  2726. ],
  2727. "support": {
  2728. "docs": "https://hyperf.wiki",
  2729. "issues": "https://github.com/hyperf/hyperf/issues",
  2730. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2731. "source": "https://github.com/hyperf/hyperf"
  2732. },
  2733. "funding": [
  2734. {
  2735. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2736. "type": "custom"
  2737. },
  2738. {
  2739. "url": "https://opencollective.com/hyperf",
  2740. "type": "open_collective"
  2741. }
  2742. ],
  2743. "time": "2024-09-25T02:54:12+00:00"
  2744. },
  2745. {
  2746. "name": "hyperf/framework",
  2747. "version": "v3.1.42",
  2748. "source": {
  2749. "type": "git",
  2750. "url": "https://github.com/hyperf/framework.git",
  2751. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2752. },
  2753. "dist": {
  2754. "type": "zip",
  2755. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2756. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2757. "shasum": ""
  2758. },
  2759. "require": {
  2760. "fig/http-message-util": "^1.1.2",
  2761. "hyperf/contract": "~3.1.0",
  2762. "hyperf/coordinator": "~3.1.0",
  2763. "hyperf/coroutine": "~3.1.0",
  2764. "php": ">=8.1",
  2765. "psr/container": "^1.0 || ^2.0",
  2766. "psr/event-dispatcher": "^1.0",
  2767. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2768. },
  2769. "suggest": {
  2770. "ext-swoole": "Required to use swoole engine.",
  2771. "hyperf/command": "Required to use Command annotation.",
  2772. "hyperf/di": "Required to use Command annotation.",
  2773. "hyperf/dispatcher": "Required to use BootApplication event.",
  2774. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2775. },
  2776. "type": "library",
  2777. "extra": {
  2778. "branch-alias": {
  2779. "dev-master": "3.1-dev"
  2780. },
  2781. "hyperf": {
  2782. "config": "Hyperf\\Framework\\ConfigProvider"
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "Hyperf\\Framework\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2795. "homepage": "https://hyperf.io",
  2796. "keywords": [
  2797. "Microservice",
  2798. "framework",
  2799. "hyperf",
  2800. "middleware",
  2801. "php",
  2802. "swoole"
  2803. ],
  2804. "support": {
  2805. "docs": "https://hyperf.wiki",
  2806. "issues": "https://github.com/hyperf/hyperf/issues",
  2807. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2808. "source": "https://github.com/hyperf/hyperf"
  2809. },
  2810. "funding": [
  2811. {
  2812. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2813. "type": "custom"
  2814. },
  2815. {
  2816. "url": "https://opencollective.com/hyperf",
  2817. "type": "open_collective"
  2818. }
  2819. ],
  2820. "time": "2024-09-25T02:54:12+00:00"
  2821. },
  2822. {
  2823. "name": "hyperf/guzzle",
  2824. "version": "v3.1.42",
  2825. "source": {
  2826. "type": "git",
  2827. "url": "https://github.com/hyperf/guzzle.git",
  2828. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2829. },
  2830. "dist": {
  2831. "type": "zip",
  2832. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2833. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2834. "shasum": ""
  2835. },
  2836. "require": {
  2837. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2838. "php": ">=8.1",
  2839. "psr/container": "^1.0 || ^2.0",
  2840. "psr/http-message": "^1.0 || ^2.0"
  2841. },
  2842. "suggest": {
  2843. "ext-curl": "Required for CURL handler support",
  2844. "hyperf/pool": "Required to use pool handler."
  2845. },
  2846. "type": "library",
  2847. "extra": {
  2848. "branch-alias": {
  2849. "dev-master": "3.1-dev"
  2850. },
  2851. "hyperf": {
  2852. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2853. }
  2854. },
  2855. "autoload": {
  2856. "psr-4": {
  2857. "Hyperf\\Guzzle\\": "src/"
  2858. }
  2859. },
  2860. "notification-url": "https://packagist.org/downloads/",
  2861. "license": [
  2862. "MIT"
  2863. ],
  2864. "description": "Swoole coroutine handler for guzzle",
  2865. "keywords": [
  2866. "Guzzle",
  2867. "handler",
  2868. "php",
  2869. "swoole"
  2870. ],
  2871. "support": {
  2872. "issues": "https://github.com/hyperf/guzzle/issues",
  2873. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2874. },
  2875. "funding": [
  2876. {
  2877. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2878. "type": "custom"
  2879. },
  2880. {
  2881. "url": "https://opencollective.com/hyperf",
  2882. "type": "open_collective"
  2883. }
  2884. ],
  2885. "time": "2024-09-25T02:54:12+00:00"
  2886. },
  2887. {
  2888. "name": "hyperf/http-message",
  2889. "version": "v3.1.42",
  2890. "source": {
  2891. "type": "git",
  2892. "url": "https://github.com/hyperf/http-message.git",
  2893. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2894. },
  2895. "dist": {
  2896. "type": "zip",
  2897. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2898. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2899. "shasum": ""
  2900. },
  2901. "require": {
  2902. "hyperf/codec": "~3.1.0",
  2903. "hyperf/engine": "^2.11",
  2904. "hyperf/support": "~3.1.0",
  2905. "laminas/laminas-mime": "^2.7",
  2906. "php": ">=8.1",
  2907. "psr/http-message": "^1.0 || ^2.0",
  2908. "swow/psr7-plus": "^1.0"
  2909. },
  2910. "suggest": {
  2911. "psr/container": "Required to replace RequestParserInterface."
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "branch-alias": {
  2916. "dev-master": "3.1-dev"
  2917. },
  2918. "hyperf": {
  2919. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2920. }
  2921. },
  2922. "autoload": {
  2923. "psr-4": {
  2924. "Hyperf\\HttpMessage\\": "src/"
  2925. }
  2926. },
  2927. "notification-url": "https://packagist.org/downloads/",
  2928. "license": [
  2929. "MIT"
  2930. ],
  2931. "description": "microservice framework base on swoole",
  2932. "keywords": [
  2933. "http-message",
  2934. "hyperf",
  2935. "php",
  2936. "swoole"
  2937. ],
  2938. "support": {
  2939. "issues": "https://github.com/hyperf/http-message/issues",
  2940. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2941. },
  2942. "funding": [
  2943. {
  2944. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2945. "type": "custom"
  2946. },
  2947. {
  2948. "url": "https://opencollective.com/hyperf",
  2949. "type": "open_collective"
  2950. }
  2951. ],
  2952. "time": "2024-09-25T02:54:12+00:00"
  2953. },
  2954. {
  2955. "name": "hyperf/http-server",
  2956. "version": "v3.1.42",
  2957. "source": {
  2958. "type": "git",
  2959. "url": "https://github.com/hyperf/http-server.git",
  2960. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2961. },
  2962. "dist": {
  2963. "type": "zip",
  2964. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2965. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2966. "shasum": ""
  2967. },
  2968. "require": {
  2969. "hyperf/codec": "~3.1.0",
  2970. "hyperf/collection": "~3.1.0",
  2971. "hyperf/context": "~3.1.0",
  2972. "hyperf/contract": "~3.1.0",
  2973. "hyperf/coroutine": "~3.1.0",
  2974. "hyperf/dispatcher": "~3.1.0",
  2975. "hyperf/event": "~3.1.0",
  2976. "hyperf/exception-handler": "~3.1.0",
  2977. "hyperf/http-message": "~3.1.0",
  2978. "hyperf/macroable": "~3.1.0",
  2979. "hyperf/serializer": "~3.1.0",
  2980. "hyperf/server": "~3.1.0",
  2981. "hyperf/stdlib": "~3.1.0",
  2982. "hyperf/support": "~3.1.0",
  2983. "nikic/fast-route": "^1.3",
  2984. "php": ">=8.1",
  2985. "psr/container": "^1.0 || ^2.0",
  2986. "swow/psr7-plus": "^1.0"
  2987. },
  2988. "suggest": {
  2989. "hyperf/di": "Required to use annotations."
  2990. },
  2991. "type": "library",
  2992. "extra": {
  2993. "branch-alias": {
  2994. "dev-master": "3.1-dev"
  2995. },
  2996. "hyperf": {
  2997. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2998. }
  2999. },
  3000. "autoload": {
  3001. "psr-4": {
  3002. "Hyperf\\HttpServer\\": "src/"
  3003. }
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "description": "A HTTP Server for Hyperf.",
  3010. "homepage": "https://hyperf.io",
  3011. "keywords": [
  3012. "http",
  3013. "http-server",
  3014. "hyperf",
  3015. "php",
  3016. "swoole"
  3017. ],
  3018. "support": {
  3019. "docs": "https://hyperf.wiki",
  3020. "issues": "https://github.com/hyperf/hyperf/issues",
  3021. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3022. "source": "https://github.com/hyperf/hyperf"
  3023. },
  3024. "funding": [
  3025. {
  3026. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3027. "type": "custom"
  3028. },
  3029. {
  3030. "url": "https://opencollective.com/hyperf",
  3031. "type": "open_collective"
  3032. }
  3033. ],
  3034. "time": "2024-09-25T02:54:12+00:00"
  3035. },
  3036. {
  3037. "name": "hyperf/json-rpc",
  3038. "version": "v3.1.42",
  3039. "source": {
  3040. "type": "git",
  3041. "url": "https://github.com/hyperf/json-rpc.git",
  3042. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  3043. },
  3044. "dist": {
  3045. "type": "zip",
  3046. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3047. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  3048. "shasum": ""
  3049. },
  3050. "require": {
  3051. "hyperf/codec": "~3.1.0",
  3052. "hyperf/context": "~3.1.0",
  3053. "hyperf/contract": "~3.1.0",
  3054. "hyperf/engine": "^2.0",
  3055. "hyperf/http-message": "~3.1.0",
  3056. "hyperf/load-balancer": "~3.1.0",
  3057. "hyperf/rpc": "~3.1.0",
  3058. "hyperf/serializer": "~3.1.0",
  3059. "hyperf/support": "~3.1.0",
  3060. "hyperf/utils": "~3.1.0",
  3061. "php": ">=8.1",
  3062. "psr/container": "^1.0 || ^2.0",
  3063. "swow/psr7-plus": "^1.0"
  3064. },
  3065. "suggest": {
  3066. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  3067. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  3068. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  3069. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  3070. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  3071. },
  3072. "type": "library",
  3073. "extra": {
  3074. "branch-alias": {
  3075. "dev-master": "3.1-dev"
  3076. },
  3077. "hyperf": {
  3078. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  3079. }
  3080. },
  3081. "autoload": {
  3082. "psr-4": {
  3083. "Hyperf\\JsonRpc\\": "src/"
  3084. }
  3085. },
  3086. "notification-url": "https://packagist.org/downloads/",
  3087. "license": [
  3088. "MIT"
  3089. ],
  3090. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  3091. "homepage": "https://hyperf.io",
  3092. "keywords": [
  3093. "hyperf",
  3094. "json-rpc",
  3095. "php",
  3096. "swoole"
  3097. ],
  3098. "support": {
  3099. "docs": "https://hyperf.wiki",
  3100. "issues": "https://github.com/hyperf/hyperf/issues",
  3101. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3102. "source": "https://github.com/hyperf/hyperf"
  3103. },
  3104. "funding": [
  3105. {
  3106. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3107. "type": "custom"
  3108. },
  3109. {
  3110. "url": "https://opencollective.com/hyperf",
  3111. "type": "open_collective"
  3112. }
  3113. ],
  3114. "time": "2024-09-25T02:54:12+00:00"
  3115. },
  3116. {
  3117. "name": "hyperf/load-balancer",
  3118. "version": "v3.1.42",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/hyperf/load-balancer.git",
  3122. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  3127. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "hyperf/coordinator": "~3.1.0",
  3132. "hyperf/coroutine": "~3.1.0",
  3133. "markrogoyski/math-php": "^2.0",
  3134. "php": ">=8.1",
  3135. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3136. },
  3137. "type": "library",
  3138. "extra": {
  3139. "branch-alias": {
  3140. "dev-master": "3.1-dev"
  3141. },
  3142. "hyperf": {
  3143. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  3144. }
  3145. },
  3146. "autoload": {
  3147. "psr-4": {
  3148. "Hyperf\\LoadBalancer\\": "src/"
  3149. }
  3150. },
  3151. "notification-url": "https://packagist.org/downloads/",
  3152. "license": [
  3153. "MIT"
  3154. ],
  3155. "description": "A load balancer library for Hyperf.",
  3156. "homepage": "https://hyperf.io",
  3157. "keywords": [
  3158. "hyperf",
  3159. "load-balancer",
  3160. "php",
  3161. "swoole"
  3162. ],
  3163. "support": {
  3164. "docs": "https://hyperf.wiki",
  3165. "issues": "https://github.com/hyperf/hyperf/issues",
  3166. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3167. "source": "https://github.com/hyperf/hyperf"
  3168. },
  3169. "funding": [
  3170. {
  3171. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3172. "type": "custom"
  3173. },
  3174. {
  3175. "url": "https://opencollective.com/hyperf",
  3176. "type": "open_collective"
  3177. }
  3178. ],
  3179. "time": "2024-09-25T02:54:12+00:00"
  3180. },
  3181. {
  3182. "name": "hyperf/logger",
  3183. "version": "v3.1.42",
  3184. "source": {
  3185. "type": "git",
  3186. "url": "https://github.com/hyperf/logger.git",
  3187. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  3188. },
  3189. "dist": {
  3190. "type": "zip",
  3191. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  3192. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  3193. "shasum": ""
  3194. },
  3195. "require": {
  3196. "hyperf/contract": "~3.1.0",
  3197. "hyperf/support": "~3.1.0",
  3198. "hyperf/utils": "~3.1.0",
  3199. "monolog/monolog": "^2.7 || ^3.1",
  3200. "php": ">=8.1",
  3201. "psr/container": "^1.0 || ^2.0",
  3202. "psr/log": "^1.0 || ^2.0 || ^3.0"
  3203. },
  3204. "type": "library",
  3205. "extra": {
  3206. "branch-alias": {
  3207. "dev-master": "3.1-dev"
  3208. },
  3209. "hyperf": {
  3210. "config": "Hyperf\\Logger\\ConfigProvider"
  3211. }
  3212. },
  3213. "autoload": {
  3214. "psr-4": {
  3215. "Hyperf\\Logger\\": "src/"
  3216. }
  3217. },
  3218. "notification-url": "https://packagist.org/downloads/",
  3219. "license": [
  3220. "MIT"
  3221. ],
  3222. "description": "A logger component for hyperf.",
  3223. "homepage": "https://hyperf.io",
  3224. "keywords": [
  3225. "hyperf",
  3226. "logger",
  3227. "php"
  3228. ],
  3229. "support": {
  3230. "docs": "https://hyperf.wiki",
  3231. "issues": "https://github.com/hyperf/hyperf/issues",
  3232. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3233. "source": "https://github.com/hyperf/hyperf"
  3234. },
  3235. "funding": [
  3236. {
  3237. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3238. "type": "custom"
  3239. },
  3240. {
  3241. "url": "https://opencollective.com/hyperf",
  3242. "type": "open_collective"
  3243. }
  3244. ],
  3245. "time": "2024-09-25T02:54:12+00:00"
  3246. },
  3247. {
  3248. "name": "hyperf/macroable",
  3249. "version": "v3.1.42",
  3250. "source": {
  3251. "type": "git",
  3252. "url": "https://github.com/hyperf/macroable.git",
  3253. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  3254. },
  3255. "dist": {
  3256. "type": "zip",
  3257. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  3258. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  3259. "shasum": ""
  3260. },
  3261. "require": {
  3262. "php": ">=8.1"
  3263. },
  3264. "type": "library",
  3265. "extra": {
  3266. "branch-alias": {
  3267. "dev-master": "3.1-dev"
  3268. }
  3269. },
  3270. "autoload": {
  3271. "psr-4": {
  3272. "Hyperf\\Macroable\\": "src/"
  3273. }
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "description": "Hyperf Macroable package which come from illuminate/macroable",
  3280. "homepage": "https://hyperf.io",
  3281. "keywords": [
  3282. "hyperf",
  3283. "macroable",
  3284. "php",
  3285. "swoole"
  3286. ],
  3287. "support": {
  3288. "docs": "https://hyperf.wiki",
  3289. "issues": "https://github.com/hyperf/hyperf/issues",
  3290. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3291. "source": "https://github.com/hyperf/hyperf"
  3292. },
  3293. "funding": [
  3294. {
  3295. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3296. "type": "custom"
  3297. },
  3298. {
  3299. "url": "https://opencollective.com/hyperf",
  3300. "type": "open_collective"
  3301. }
  3302. ],
  3303. "time": "2024-09-25T02:54:12+00:00"
  3304. },
  3305. {
  3306. "name": "hyperf/memory",
  3307. "version": "v3.1.42",
  3308. "source": {
  3309. "type": "git",
  3310. "url": "https://github.com/hyperf/memory.git",
  3311. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  3312. },
  3313. "dist": {
  3314. "type": "zip",
  3315. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3316. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  3317. "shasum": ""
  3318. },
  3319. "require": {
  3320. "php": ">=8.1"
  3321. },
  3322. "type": "library",
  3323. "extra": {
  3324. "branch-alias": {
  3325. "dev-master": "3.1-dev"
  3326. },
  3327. "hyperf": {
  3328. "config": "Hyperf\\Memory\\ConfigProvider"
  3329. }
  3330. },
  3331. "autoload": {
  3332. "psr-4": {
  3333. "Hyperf\\Memory\\": "src/"
  3334. }
  3335. },
  3336. "notification-url": "https://packagist.org/downloads/",
  3337. "license": [
  3338. "MIT"
  3339. ],
  3340. "description": "An independent component that use to operate and manage memory.",
  3341. "homepage": "https://hyperf.io",
  3342. "keywords": [
  3343. "hyperf",
  3344. "memory",
  3345. "php",
  3346. "swoole"
  3347. ],
  3348. "support": {
  3349. "docs": "https://hyperf.wiki",
  3350. "issues": "https://github.com/hyperf/hyperf/issues",
  3351. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3352. "source": "https://github.com/hyperf/hyperf"
  3353. },
  3354. "funding": [
  3355. {
  3356. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3357. "type": "custom"
  3358. },
  3359. {
  3360. "url": "https://opencollective.com/hyperf",
  3361. "type": "open_collective"
  3362. }
  3363. ],
  3364. "time": "2024-09-25T02:54:12+00:00"
  3365. },
  3366. {
  3367. "name": "hyperf/model-listener",
  3368. "version": "v3.1.42",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/hyperf/model-listener.git",
  3372. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3377. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "hyperf/contract": "~3.1.0",
  3382. "hyperf/database": "~3.1.0",
  3383. "hyperf/di": "~3.1.0",
  3384. "hyperf/event": "~3.1.0",
  3385. "hyperf/support": "~3.1.0",
  3386. "hyperf/utils": "~3.1.0",
  3387. "php": ">=8.1",
  3388. "psr/container": "^1.0 || ^2.0"
  3389. },
  3390. "type": "library",
  3391. "extra": {
  3392. "branch-alias": {
  3393. "dev-master": "3.1-dev"
  3394. },
  3395. "hyperf": {
  3396. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3397. }
  3398. },
  3399. "autoload": {
  3400. "psr-4": {
  3401. "Hyperf\\ModelListener\\": "src/"
  3402. }
  3403. },
  3404. "notification-url": "https://packagist.org/downloads/",
  3405. "license": [
  3406. "MIT"
  3407. ],
  3408. "description": "A model listener for Hyperf.",
  3409. "homepage": "https://hyperf.io",
  3410. "keywords": [
  3411. "hyperf",
  3412. "model-listener",
  3413. "php",
  3414. "swoole"
  3415. ],
  3416. "support": {
  3417. "docs": "https://hyperf.wiki",
  3418. "issues": "https://github.com/hyperf/hyperf/issues",
  3419. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3420. "source": "https://github.com/hyperf/hyperf"
  3421. },
  3422. "funding": [
  3423. {
  3424. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3425. "type": "custom"
  3426. },
  3427. {
  3428. "url": "https://opencollective.com/hyperf",
  3429. "type": "open_collective"
  3430. }
  3431. ],
  3432. "time": "2024-09-25T02:54:12+00:00"
  3433. },
  3434. {
  3435. "name": "hyperf/nacos",
  3436. "version": "v3.1.42",
  3437. "source": {
  3438. "type": "git",
  3439. "url": "https://github.com/hyperf/nacos.git",
  3440. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3441. },
  3442. "dist": {
  3443. "type": "zip",
  3444. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3445. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3446. "shasum": ""
  3447. },
  3448. "require": {
  3449. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3450. "hyperf/codec": "~3.1.0",
  3451. "hyperf/contract": "~3.1.0",
  3452. "hyperf/support": "~3.1.0",
  3453. "hyperf/utils": "~3.1.0",
  3454. "jetbrains/phpstorm-attributes": "^1.0",
  3455. "php": ">=8.1"
  3456. },
  3457. "type": "library",
  3458. "extra": {
  3459. "branch-alias": {
  3460. "dev-master": "3.1-dev"
  3461. },
  3462. "hyperf": {
  3463. "config": "Hyperf\\Nacos\\ConfigProvider"
  3464. }
  3465. },
  3466. "autoload": {
  3467. "psr-4": {
  3468. "Hyperf\\Nacos\\": "src/"
  3469. }
  3470. },
  3471. "notification-url": "https://packagist.org/downloads/",
  3472. "license": [
  3473. "MIT"
  3474. ],
  3475. "description": "Nacos SDK",
  3476. "keywords": [
  3477. "hyperf",
  3478. "nacos",
  3479. "php"
  3480. ],
  3481. "support": {
  3482. "issues": "https://github.com/hyperf/nacos/issues",
  3483. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3484. },
  3485. "funding": [
  3486. {
  3487. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3488. "type": "custom"
  3489. },
  3490. {
  3491. "url": "https://opencollective.com/hyperf",
  3492. "type": "open_collective"
  3493. }
  3494. ],
  3495. "time": "2024-09-25T02:54:12+00:00"
  3496. },
  3497. {
  3498. "name": "hyperf/pipeline",
  3499. "version": "v3.1.42",
  3500. "source": {
  3501. "type": "git",
  3502. "url": "https://github.com/hyperf/pipeline.git",
  3503. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3504. },
  3505. "dist": {
  3506. "type": "zip",
  3507. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3508. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3509. "shasum": ""
  3510. },
  3511. "require": {
  3512. "php": ">=8.1",
  3513. "psr/container": "^1.0 || ^2.0"
  3514. },
  3515. "type": "library",
  3516. "extra": {
  3517. "branch-alias": {
  3518. "dev-master": "3.1-dev"
  3519. }
  3520. },
  3521. "autoload": {
  3522. "psr-4": {
  3523. "Hyperf\\Pipeline\\": "src/"
  3524. }
  3525. },
  3526. "notification-url": "https://packagist.org/downloads/",
  3527. "license": [
  3528. "MIT"
  3529. ],
  3530. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3531. "homepage": "https://hyperf.io",
  3532. "keywords": [
  3533. "hyperf",
  3534. "php",
  3535. "pipeline",
  3536. "swoole"
  3537. ],
  3538. "support": {
  3539. "docs": "https://hyperf.wiki",
  3540. "issues": "https://github.com/hyperf/hyperf/issues",
  3541. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3542. "source": "https://github.com/hyperf/hyperf"
  3543. },
  3544. "funding": [
  3545. {
  3546. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3547. "type": "custom"
  3548. },
  3549. {
  3550. "url": "https://opencollective.com/hyperf",
  3551. "type": "open_collective"
  3552. }
  3553. ],
  3554. "time": "2024-09-25T02:54:12+00:00"
  3555. },
  3556. {
  3557. "name": "hyperf/pool",
  3558. "version": "v3.1.42",
  3559. "source": {
  3560. "type": "git",
  3561. "url": "https://github.com/hyperf/pool.git",
  3562. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3563. },
  3564. "dist": {
  3565. "type": "zip",
  3566. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3567. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3568. "shasum": ""
  3569. },
  3570. "require": {
  3571. "hyperf/contract": "~3.1.0",
  3572. "hyperf/support": "~3.1.0",
  3573. "hyperf/utils": "~3.1.0",
  3574. "php": ">=8.1",
  3575. "psr/container": "^1.0 || ^2.0"
  3576. },
  3577. "suggest": {
  3578. "psr/event-dispatcher": "Required to use events."
  3579. },
  3580. "type": "library",
  3581. "extra": {
  3582. "branch-alias": {
  3583. "dev-master": "3.1-dev"
  3584. },
  3585. "hyperf": {
  3586. "config": "Hyperf\\Pool\\ConfigProvider"
  3587. }
  3588. },
  3589. "autoload": {
  3590. "psr-4": {
  3591. "Hyperf\\Pool\\": "src/"
  3592. }
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "description": "An independent universal connection pool component.",
  3599. "homepage": "https://hyperf.io",
  3600. "keywords": [
  3601. "connection-pool",
  3602. "hyperf",
  3603. "php",
  3604. "swoole"
  3605. ],
  3606. "support": {
  3607. "docs": "https://hyperf.wiki",
  3608. "issues": "https://github.com/hyperf/hyperf/issues",
  3609. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3610. "source": "https://github.com/hyperf/hyperf"
  3611. },
  3612. "funding": [
  3613. {
  3614. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3615. "type": "custom"
  3616. },
  3617. {
  3618. "url": "https://opencollective.com/hyperf",
  3619. "type": "open_collective"
  3620. }
  3621. ],
  3622. "time": "2024-09-25T02:54:12+00:00"
  3623. },
  3624. {
  3625. "name": "hyperf/process",
  3626. "version": "v3.1.42",
  3627. "source": {
  3628. "type": "git",
  3629. "url": "https://github.com/hyperf/process.git",
  3630. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3631. },
  3632. "dist": {
  3633. "type": "zip",
  3634. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3635. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3636. "shasum": ""
  3637. },
  3638. "require": {
  3639. "hyperf/contract": "~3.1.0",
  3640. "hyperf/support": "~3.1.0",
  3641. "hyperf/utils": "~3.1.0",
  3642. "php": ">=8.1",
  3643. "psr/container": "^1.0 || ^2.0",
  3644. "psr/event-dispatcher": "^1.0"
  3645. },
  3646. "suggest": {
  3647. "hyperf/di": "Required to use annotations.",
  3648. "hyperf/event": "Required to dump the message before and after process.",
  3649. "hyperf/framework": "Required to use BootProcessListener."
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-master": "3.1-dev"
  3655. },
  3656. "hyperf": {
  3657. "config": "Hyperf\\Process\\ConfigProvider"
  3658. }
  3659. },
  3660. "autoload": {
  3661. "psr-4": {
  3662. "Hyperf\\Process\\": "src/"
  3663. }
  3664. },
  3665. "notification-url": "https://packagist.org/downloads/",
  3666. "license": [
  3667. "MIT"
  3668. ],
  3669. "description": "A process component for hyperf.",
  3670. "homepage": "https://hyperf.io",
  3671. "keywords": [
  3672. "hyperf",
  3673. "php",
  3674. "process"
  3675. ],
  3676. "support": {
  3677. "docs": "https://hyperf.wiki",
  3678. "issues": "https://github.com/hyperf/hyperf/issues",
  3679. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3680. "source": "https://github.com/hyperf/hyperf"
  3681. },
  3682. "funding": [
  3683. {
  3684. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3685. "type": "custom"
  3686. },
  3687. {
  3688. "url": "https://opencollective.com/hyperf",
  3689. "type": "open_collective"
  3690. }
  3691. ],
  3692. "time": "2024-09-25T02:54:12+00:00"
  3693. },
  3694. {
  3695. "name": "hyperf/redis",
  3696. "version": "v3.1.42",
  3697. "source": {
  3698. "type": "git",
  3699. "url": "https://github.com/hyperf/redis.git",
  3700. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3701. },
  3702. "dist": {
  3703. "type": "zip",
  3704. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3705. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3706. "shasum": ""
  3707. },
  3708. "require": {
  3709. "ext-redis": "^5.0 || ^6.0",
  3710. "hyperf/contract": "~3.1.0",
  3711. "hyperf/pool": "~3.1.0",
  3712. "hyperf/support": "~3.1.0",
  3713. "hyperf/tappable": "~3.1.0",
  3714. "hyperf/utils": "~3.1.0",
  3715. "php": ">=8.1",
  3716. "psr/container": "^1.0 || ^2.0"
  3717. },
  3718. "suggest": {
  3719. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3720. "hyperf/di": "Create the RedisPool via dependency injection."
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-master": "3.1-dev"
  3726. },
  3727. "hyperf": {
  3728. "config": "Hyperf\\Redis\\ConfigProvider"
  3729. }
  3730. },
  3731. "autoload": {
  3732. "psr-4": {
  3733. "Hyperf\\Redis\\": "src/"
  3734. }
  3735. },
  3736. "notification-url": "https://packagist.org/downloads/",
  3737. "license": [
  3738. "MIT"
  3739. ],
  3740. "description": "A redis component for hyperf.",
  3741. "homepage": "https://hyperf.io",
  3742. "keywords": [
  3743. "hyperf",
  3744. "php",
  3745. "pool",
  3746. "redis"
  3747. ],
  3748. "support": {
  3749. "docs": "https://hyperf.wiki",
  3750. "issues": "https://github.com/hyperf/hyperf/issues",
  3751. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3752. "source": "https://github.com/hyperf/hyperf"
  3753. },
  3754. "funding": [
  3755. {
  3756. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3757. "type": "custom"
  3758. },
  3759. {
  3760. "url": "https://opencollective.com/hyperf",
  3761. "type": "open_collective"
  3762. }
  3763. ],
  3764. "time": "2024-09-25T02:54:12+00:00"
  3765. },
  3766. {
  3767. "name": "hyperf/rpc",
  3768. "version": "v3.1.42",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/hyperf/rpc.git",
  3772. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3777. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "hyperf/codec": "~3.1.0",
  3782. "hyperf/contract": "~3.1.0",
  3783. "hyperf/support": "~3.1.0",
  3784. "jetbrains/phpstorm-attributes": "^1.0",
  3785. "php": ">=8.1"
  3786. },
  3787. "type": "library",
  3788. "extra": {
  3789. "branch-alias": {
  3790. "dev-master": "3.1-dev"
  3791. },
  3792. "hyperf": []
  3793. },
  3794. "autoload": {
  3795. "psr-4": {
  3796. "Hyperf\\Rpc\\": "src/"
  3797. }
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "MIT"
  3802. ],
  3803. "description": "A rpc basic library for Hyperf.",
  3804. "homepage": "https://hyperf.io",
  3805. "keywords": [
  3806. "hyperf",
  3807. "php",
  3808. "rpc",
  3809. "swoole"
  3810. ],
  3811. "support": {
  3812. "docs": "https://hyperf.wiki",
  3813. "issues": "https://github.com/hyperf/hyperf/issues",
  3814. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3815. "source": "https://github.com/hyperf/hyperf"
  3816. },
  3817. "funding": [
  3818. {
  3819. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3820. "type": "custom"
  3821. },
  3822. {
  3823. "url": "https://opencollective.com/hyperf",
  3824. "type": "open_collective"
  3825. }
  3826. ],
  3827. "time": "2024-09-25T02:54:12+00:00"
  3828. },
  3829. {
  3830. "name": "hyperf/rpc-client",
  3831. "version": "v3.1.42",
  3832. "source": {
  3833. "type": "git",
  3834. "url": "https://github.com/hyperf/rpc-client.git",
  3835. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201"
  3836. },
  3837. "dist": {
  3838. "type": "zip",
  3839. "url": "https://api.github.com/repos/hyperf/rpc-client/zipball/40f38de55fffcd8d77e683d69a812913cc1ce201",
  3840. "reference": "40f38de55fffcd8d77e683d69a812913cc1ce201",
  3841. "shasum": ""
  3842. },
  3843. "require": {
  3844. "hyperf/code-parser": "~3.1.0",
  3845. "hyperf/load-balancer": "~3.1.0",
  3846. "hyperf/rpc": "~3.1.0",
  3847. "hyperf/support": "~3.1.0",
  3848. "hyperf/utils": "~3.1.0",
  3849. "jetbrains/phpstorm-attributes": "^1.0",
  3850. "php": ">=8.1",
  3851. "psr/container": "^1.0 || ^2.0"
  3852. },
  3853. "suggest": {
  3854. "hyperf/di": "For better container experience.",
  3855. "hyperf/pool": "Required to use connection pool.",
  3856. "hyperf/service-governance": "Required to fetch the nodes info from service governance."
  3857. },
  3858. "type": "library",
  3859. "extra": {
  3860. "branch-alias": {
  3861. "dev-master": "3.1-dev"
  3862. },
  3863. "hyperf": {
  3864. "config": "Hyperf\\RpcClient\\ConfigProvider"
  3865. }
  3866. },
  3867. "autoload": {
  3868. "psr-4": {
  3869. "Hyperf\\RpcClient\\": "src/"
  3870. }
  3871. },
  3872. "notification-url": "https://packagist.org/downloads/",
  3873. "license": [
  3874. "MIT"
  3875. ],
  3876. "description": "An abstract rpc server component for Hyperf.",
  3877. "homepage": "https://hyperf.io",
  3878. "keywords": [
  3879. "hyperf",
  3880. "json-rpc",
  3881. "php",
  3882. "rpc",
  3883. "rpc-client",
  3884. "swoole"
  3885. ],
  3886. "support": {
  3887. "docs": "https://hyperf.wiki",
  3888. "issues": "https://github.com/hyperf/hyperf/issues",
  3889. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3890. "source": "https://github.com/hyperf/hyperf"
  3891. },
  3892. "funding": [
  3893. {
  3894. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3895. "type": "custom"
  3896. },
  3897. {
  3898. "url": "https://opencollective.com/hyperf",
  3899. "type": "open_collective"
  3900. }
  3901. ],
  3902. "time": "2024-09-25T02:54:12+00:00"
  3903. },
  3904. {
  3905. "name": "hyperf/rpc-server",
  3906. "version": "v3.1.42",
  3907. "source": {
  3908. "type": "git",
  3909. "url": "https://github.com/hyperf/rpc-server.git",
  3910. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3911. },
  3912. "dist": {
  3913. "type": "zip",
  3914. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3915. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3916. "shasum": ""
  3917. },
  3918. "require": {
  3919. "hyperf/http-server": "~3.1.0",
  3920. "hyperf/rpc": "~3.1.0",
  3921. "php": ">=8.1"
  3922. },
  3923. "suggest": {
  3924. "hyperf/di": "Required to use annotations."
  3925. },
  3926. "type": "library",
  3927. "extra": {
  3928. "branch-alias": {
  3929. "dev-master": "3.1-dev"
  3930. },
  3931. "hyperf": {
  3932. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3933. }
  3934. },
  3935. "autoload": {
  3936. "psr-4": {
  3937. "Hyperf\\RpcServer\\": "src/"
  3938. }
  3939. },
  3940. "notification-url": "https://packagist.org/downloads/",
  3941. "license": [
  3942. "MIT"
  3943. ],
  3944. "description": "An abstract rpc server component for Hyperf.",
  3945. "homepage": "https://hyperf.io",
  3946. "keywords": [
  3947. "hyperf",
  3948. "php",
  3949. "rpc",
  3950. "rpc-server",
  3951. "swoole"
  3952. ],
  3953. "support": {
  3954. "docs": "https://hyperf.wiki",
  3955. "issues": "https://github.com/hyperf/hyperf/issues",
  3956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3957. "source": "https://github.com/hyperf/hyperf"
  3958. },
  3959. "funding": [
  3960. {
  3961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3962. "type": "custom"
  3963. },
  3964. {
  3965. "url": "https://opencollective.com/hyperf",
  3966. "type": "open_collective"
  3967. }
  3968. ],
  3969. "time": "2024-09-25T02:54:12+00:00"
  3970. },
  3971. {
  3972. "name": "hyperf/serializer",
  3973. "version": "v3.1.42",
  3974. "source": {
  3975. "type": "git",
  3976. "url": "https://github.com/hyperf/serializer.git",
  3977. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3978. },
  3979. "dist": {
  3980. "type": "zip",
  3981. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3982. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3983. "shasum": ""
  3984. },
  3985. "require": {
  3986. "hyperf/contract": "~3.1.0",
  3987. "php": ">=8.1"
  3988. },
  3989. "suggest": {
  3990. "hyperf/di": "Required to use ExceptionNormalizer",
  3991. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3992. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "3.1-dev"
  3998. },
  3999. "hyperf": {
  4000. "config": "Hyperf\\Serializer\\ConfigProvider"
  4001. }
  4002. },
  4003. "autoload": {
  4004. "psr-4": {
  4005. "Hyperf\\Serializer\\": "src/"
  4006. }
  4007. },
  4008. "notification-url": "https://packagist.org/downloads/",
  4009. "license": [
  4010. "MIT"
  4011. ],
  4012. "description": "A serializer component for Hyperf.",
  4013. "homepage": "https://hyperf.io",
  4014. "keywords": [
  4015. "hyperf",
  4016. "php",
  4017. "swoole",
  4018. "tappable"
  4019. ],
  4020. "support": {
  4021. "docs": "https://hyperf.wiki",
  4022. "issues": "https://github.com/hyperf/hyperf/issues",
  4023. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4024. "source": "https://github.com/hyperf/hyperf"
  4025. },
  4026. "funding": [
  4027. {
  4028. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4029. "type": "custom"
  4030. },
  4031. {
  4032. "url": "https://opencollective.com/hyperf",
  4033. "type": "open_collective"
  4034. }
  4035. ],
  4036. "time": "2024-09-25T02:54:12+00:00"
  4037. },
  4038. {
  4039. "name": "hyperf/server",
  4040. "version": "v3.1.42",
  4041. "source": {
  4042. "type": "git",
  4043. "url": "https://github.com/hyperf/server.git",
  4044. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  4045. },
  4046. "dist": {
  4047. "type": "zip",
  4048. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4049. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  4050. "shasum": ""
  4051. },
  4052. "require": {
  4053. "hyperf/contract": "~3.1.0",
  4054. "hyperf/coordinator": "~3.1.0",
  4055. "hyperf/engine": "^2.8",
  4056. "hyperf/support": "~3.1.0",
  4057. "hyperf/tappable": "~3.1.0",
  4058. "php": ">=8.1",
  4059. "psr/container": "^1.0 || ^2.0",
  4060. "psr/event-dispatcher": "^1.0",
  4061. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4062. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  4063. },
  4064. "suggest": {
  4065. "hyperf/event": "Dump the info after server start.",
  4066. "hyperf/framework": "Dump the info after server start."
  4067. },
  4068. "type": "library",
  4069. "extra": {
  4070. "branch-alias": {
  4071. "dev-master": "3.1-dev"
  4072. },
  4073. "hyperf": {
  4074. "config": "Hyperf\\Server\\ConfigProvider"
  4075. }
  4076. },
  4077. "autoload": {
  4078. "psr-4": {
  4079. "Hyperf\\Server\\": "src/"
  4080. }
  4081. },
  4082. "notification-url": "https://packagist.org/downloads/",
  4083. "license": [
  4084. "MIT"
  4085. ],
  4086. "description": "A base server library for Hyperf.",
  4087. "homepage": "https://hyperf.io",
  4088. "keywords": [
  4089. "hyperf",
  4090. "php",
  4091. "server",
  4092. "swoole"
  4093. ],
  4094. "support": {
  4095. "docs": "https://hyperf.wiki",
  4096. "issues": "https://github.com/hyperf/hyperf/issues",
  4097. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4098. "source": "https://github.com/hyperf/hyperf"
  4099. },
  4100. "funding": [
  4101. {
  4102. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4103. "type": "custom"
  4104. },
  4105. {
  4106. "url": "https://opencollective.com/hyperf",
  4107. "type": "open_collective"
  4108. }
  4109. ],
  4110. "time": "2024-09-25T02:54:12+00:00"
  4111. },
  4112. {
  4113. "name": "hyperf/service-governance",
  4114. "version": "v3.1.42",
  4115. "source": {
  4116. "type": "git",
  4117. "url": "https://github.com/hyperf/service-governance.git",
  4118. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  4119. },
  4120. "dist": {
  4121. "type": "zip",
  4122. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4123. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  4124. "shasum": ""
  4125. },
  4126. "require": {
  4127. "hyperf/contract": "~3.1.0",
  4128. "hyperf/support": "~3.1.0",
  4129. "jetbrains/phpstorm-attributes": "^1.0",
  4130. "php": ">=8.1"
  4131. },
  4132. "suggest": {
  4133. "hyperf/event": "Required to use RegisterServiceListener.",
  4134. "hyperf/framework": "Required to use RegisterServiceListener.",
  4135. "hyperf/service-governance-consul": "Required to use consul adapter.",
  4136. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  4137. },
  4138. "type": "library",
  4139. "extra": {
  4140. "branch-alias": {
  4141. "dev-master": "3.1-dev"
  4142. },
  4143. "hyperf": {
  4144. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  4145. }
  4146. },
  4147. "autoload": {
  4148. "psr-4": {
  4149. "Hyperf\\ServiceGovernance\\": "src/"
  4150. }
  4151. },
  4152. "notification-url": "https://packagist.org/downloads/",
  4153. "license": [
  4154. "MIT"
  4155. ],
  4156. "description": "A service governance component for Hyperf.",
  4157. "homepage": "https://hyperf.io",
  4158. "keywords": [
  4159. "hyperf",
  4160. "php",
  4161. "service-governance",
  4162. "swoole"
  4163. ],
  4164. "support": {
  4165. "docs": "https://hyperf.wiki",
  4166. "issues": "https://github.com/hyperf/hyperf/issues",
  4167. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4168. "source": "https://github.com/hyperf/hyperf"
  4169. },
  4170. "funding": [
  4171. {
  4172. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4173. "type": "custom"
  4174. },
  4175. {
  4176. "url": "https://opencollective.com/hyperf",
  4177. "type": "open_collective"
  4178. }
  4179. ],
  4180. "time": "2024-09-25T02:54:12+00:00"
  4181. },
  4182. {
  4183. "name": "hyperf/service-governance-consul",
  4184. "version": "v3.1.42",
  4185. "source": {
  4186. "type": "git",
  4187. "url": "https://github.com/hyperf/service-governance-consul.git",
  4188. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  4189. },
  4190. "dist": {
  4191. "type": "zip",
  4192. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  4193. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  4194. "shasum": ""
  4195. },
  4196. "require": {
  4197. "hyperf/consul": "~3.1.0",
  4198. "hyperf/contract": "~3.1.0",
  4199. "hyperf/service-governance": "~3.1.0",
  4200. "hyperf/support": "~3.1.0",
  4201. "hyperf/utils": "~3.1.0",
  4202. "php": ">=8.1"
  4203. },
  4204. "type": "library",
  4205. "extra": {
  4206. "branch-alias": {
  4207. "dev-master": "3.1-dev"
  4208. },
  4209. "hyperf": {
  4210. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  4211. }
  4212. },
  4213. "autoload": {
  4214. "psr-4": {
  4215. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  4216. }
  4217. },
  4218. "notification-url": "https://packagist.org/downloads/",
  4219. "license": [
  4220. "MIT"
  4221. ],
  4222. "description": "A consul adapter for service governance.",
  4223. "homepage": "https://hyperf.io",
  4224. "keywords": [
  4225. "consul-adapter",
  4226. "hyperf",
  4227. "php",
  4228. "service-governance",
  4229. "swoole"
  4230. ],
  4231. "support": {
  4232. "docs": "https://hyperf.wiki",
  4233. "issues": "https://github.com/hyperf/hyperf/issues",
  4234. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4235. "source": "https://github.com/hyperf/hyperf"
  4236. },
  4237. "funding": [
  4238. {
  4239. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4240. "type": "custom"
  4241. },
  4242. {
  4243. "url": "https://opencollective.com/hyperf",
  4244. "type": "open_collective"
  4245. }
  4246. ],
  4247. "time": "2024-09-25T02:54:12+00:00"
  4248. },
  4249. {
  4250. "name": "hyperf/service-governance-nacos",
  4251. "version": "v3.1.42",
  4252. "source": {
  4253. "type": "git",
  4254. "url": "https://github.com/hyperf/service-governance-nacos.git",
  4255. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  4256. },
  4257. "dist": {
  4258. "type": "zip",
  4259. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  4260. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  4261. "shasum": ""
  4262. },
  4263. "require": {
  4264. "hyperf/codec": "~3.1.0",
  4265. "hyperf/contract": "~3.1.0",
  4266. "hyperf/nacos": "~3.1.0",
  4267. "hyperf/service-governance": "~3.1.0",
  4268. "hyperf/support": "~3.1.0",
  4269. "hyperf/utils": "~3.1.0",
  4270. "php": ">=8.1"
  4271. },
  4272. "type": "library",
  4273. "extra": {
  4274. "branch-alias": {
  4275. "dev-master": "3.1-dev"
  4276. },
  4277. "hyperf": {
  4278. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  4279. }
  4280. },
  4281. "autoload": {
  4282. "psr-4": {
  4283. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  4284. }
  4285. },
  4286. "notification-url": "https://packagist.org/downloads/",
  4287. "license": [
  4288. "MIT"
  4289. ],
  4290. "description": "A nacos adapter for service governance.",
  4291. "homepage": "https://hyperf.io",
  4292. "keywords": [
  4293. "hyperf",
  4294. "nacos-adapter",
  4295. "php",
  4296. "service-governance",
  4297. "swoole"
  4298. ],
  4299. "support": {
  4300. "docs": "https://hyperf.wiki",
  4301. "issues": "https://github.com/hyperf/hyperf/issues",
  4302. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4303. "source": "https://github.com/hyperf/hyperf"
  4304. },
  4305. "funding": [
  4306. {
  4307. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4308. "type": "custom"
  4309. },
  4310. {
  4311. "url": "https://opencollective.com/hyperf",
  4312. "type": "open_collective"
  4313. }
  4314. ],
  4315. "time": "2024-09-25T02:54:12+00:00"
  4316. },
  4317. {
  4318. "name": "hyperf/snowflake",
  4319. "version": "v3.1.42",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/hyperf/snowflake.git",
  4323. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/hyperf/snowflake/zipball/0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4328. "reference": "0271dfd9f0030e4f4cdd90f91428d1dbb35ecd56",
  4329. "shasum": ""
  4330. },
  4331. "require": {
  4332. "hyperf/contract": "~3.1.0",
  4333. "php": ">=8.1"
  4334. },
  4335. "suggest": {
  4336. "hyperf/config": "Required to read snowflake config.",
  4337. "hyperf/redis": "Required to use RedisMilliSecondMetaGenerator or RedisSecondMetaGenerator.",
  4338. "psr/container": "Required to use MetaGeneratorFactory."
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "3.1-dev"
  4344. },
  4345. "hyperf": {
  4346. "config": "Hyperf\\Snowflake\\ConfigProvider"
  4347. }
  4348. },
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Hyperf\\Snowflake\\": "src/"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "MIT"
  4357. ],
  4358. "description": "A snowflake library",
  4359. "homepage": "https://hyperf.io",
  4360. "keywords": [
  4361. "php",
  4362. "snowflake"
  4363. ],
  4364. "support": {
  4365. "docs": "https://hyperf.wiki",
  4366. "issues": "https://github.com/hyperf/hyperf/issues",
  4367. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4368. "source": "https://github.com/hyperf/hyperf"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4373. "type": "custom"
  4374. },
  4375. {
  4376. "url": "https://opencollective.com/hyperf",
  4377. "type": "open_collective"
  4378. }
  4379. ],
  4380. "time": "2024-09-25T02:54:12+00:00"
  4381. },
  4382. {
  4383. "name": "hyperf/stdlib",
  4384. "version": "v3.1.42",
  4385. "source": {
  4386. "type": "git",
  4387. "url": "https://github.com/hyperf/stdlib.git",
  4388. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  4389. },
  4390. "dist": {
  4391. "type": "zip",
  4392. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4393. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  4394. "shasum": ""
  4395. },
  4396. "require": {
  4397. "php": ">=8.1"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-master": "3.1-dev"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Hyperf\\Stdlib\\": "src/"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "description": "A stdlib component for Hyperf.",
  4415. "homepage": "https://hyperf.io",
  4416. "keywords": [
  4417. "hyperf",
  4418. "php",
  4419. "stdlib",
  4420. "swoole"
  4421. ],
  4422. "support": {
  4423. "docs": "https://hyperf.wiki",
  4424. "issues": "https://github.com/hyperf/hyperf/issues",
  4425. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4426. "source": "https://github.com/hyperf/hyperf"
  4427. },
  4428. "funding": [
  4429. {
  4430. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4431. "type": "custom"
  4432. },
  4433. {
  4434. "url": "https://opencollective.com/hyperf",
  4435. "type": "open_collective"
  4436. }
  4437. ],
  4438. "time": "2024-09-25T02:54:12+00:00"
  4439. },
  4440. {
  4441. "name": "hyperf/stringable",
  4442. "version": "v3.1.43",
  4443. "source": {
  4444. "type": "git",
  4445. "url": "https://github.com/hyperf/stringable.git",
  4446. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  4447. },
  4448. "dist": {
  4449. "type": "zip",
  4450. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  4451. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  4452. "shasum": ""
  4453. },
  4454. "require": {
  4455. "ext-mbstring": "*",
  4456. "hyperf/collection": "~3.1.0",
  4457. "hyperf/conditionable": "~3.1.0",
  4458. "hyperf/macroable": "~3.1.0",
  4459. "hyperf/tappable": "~3.1.0",
  4460. "php": ">=8.1"
  4461. },
  4462. "suggest": {
  4463. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  4464. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  4465. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  4466. },
  4467. "type": "library",
  4468. "extra": {
  4469. "branch-alias": {
  4470. "dev-master": "3.1-dev"
  4471. }
  4472. },
  4473. "autoload": {
  4474. "files": [
  4475. "src/Functions.php"
  4476. ],
  4477. "psr-4": {
  4478. "Hyperf\\Stringable\\": "src/"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "description": "Hyperf Stringable package which come from illuminate/support",
  4486. "homepage": "https://hyperf.io",
  4487. "keywords": [
  4488. "hyperf",
  4489. "php",
  4490. "stringable",
  4491. "swoole"
  4492. ],
  4493. "support": {
  4494. "docs": "https://hyperf.wiki",
  4495. "issues": "https://github.com/hyperf/hyperf/issues",
  4496. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4497. "source": "https://github.com/hyperf/hyperf"
  4498. },
  4499. "funding": [
  4500. {
  4501. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4502. "type": "custom"
  4503. },
  4504. {
  4505. "url": "https://opencollective.com/hyperf",
  4506. "type": "open_collective"
  4507. }
  4508. ],
  4509. "time": "2024-10-09T02:28:40+00:00"
  4510. },
  4511. {
  4512. "name": "hyperf/support",
  4513. "version": "v3.1.42",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/hyperf/support.git",
  4517. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4522. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "hyperf/collection": "~3.1.0",
  4527. "hyperf/context": "~3.1.0",
  4528. "hyperf/contract": "~3.1.0",
  4529. "hyperf/coroutine": "~3.1.0",
  4530. "hyperf/macroable": "~3.1.0",
  4531. "hyperf/stringable": "~3.1.0",
  4532. "php": ">=8.1"
  4533. },
  4534. "suggest": {
  4535. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4536. },
  4537. "type": "library",
  4538. "extra": {
  4539. "branch-alias": {
  4540. "dev-master": "3.1-dev"
  4541. }
  4542. },
  4543. "autoload": {
  4544. "files": [
  4545. "src/Functions.php"
  4546. ],
  4547. "psr-4": {
  4548. "Hyperf\\Support\\": "src/"
  4549. }
  4550. },
  4551. "notification-url": "https://packagist.org/downloads/",
  4552. "license": [
  4553. "MIT"
  4554. ],
  4555. "description": "A support component for Hyperf.",
  4556. "homepage": "https://hyperf.io",
  4557. "keywords": [
  4558. "hyperf",
  4559. "php",
  4560. "support",
  4561. "swoole"
  4562. ],
  4563. "support": {
  4564. "docs": "https://hyperf.wiki",
  4565. "issues": "https://github.com/hyperf/hyperf/issues",
  4566. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4567. "source": "https://github.com/hyperf/hyperf"
  4568. },
  4569. "funding": [
  4570. {
  4571. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4572. "type": "custom"
  4573. },
  4574. {
  4575. "url": "https://opencollective.com/hyperf",
  4576. "type": "open_collective"
  4577. }
  4578. ],
  4579. "time": "2024-09-25T02:54:12+00:00"
  4580. },
  4581. {
  4582. "name": "hyperf/tappable",
  4583. "version": "v3.1.42",
  4584. "source": {
  4585. "type": "git",
  4586. "url": "https://github.com/hyperf/tappable.git",
  4587. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4588. },
  4589. "dist": {
  4590. "type": "zip",
  4591. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4592. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4593. "shasum": ""
  4594. },
  4595. "require": {
  4596. "php": ">=8.1"
  4597. },
  4598. "type": "library",
  4599. "extra": {
  4600. "branch-alias": {
  4601. "dev-master": "3.1-dev"
  4602. }
  4603. },
  4604. "autoload": {
  4605. "files": [
  4606. "src/Functions.php"
  4607. ],
  4608. "psr-4": {
  4609. "Hyperf\\Tappable\\": "src/"
  4610. }
  4611. },
  4612. "notification-url": "https://packagist.org/downloads/",
  4613. "license": [
  4614. "MIT"
  4615. ],
  4616. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4617. "homepage": "https://hyperf.io",
  4618. "keywords": [
  4619. "hyperf",
  4620. "php",
  4621. "swoole",
  4622. "tappable"
  4623. ],
  4624. "support": {
  4625. "docs": "https://hyperf.wiki",
  4626. "issues": "https://github.com/hyperf/hyperf/issues",
  4627. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4628. "source": "https://github.com/hyperf/hyperf"
  4629. },
  4630. "funding": [
  4631. {
  4632. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4633. "type": "custom"
  4634. },
  4635. {
  4636. "url": "https://opencollective.com/hyperf",
  4637. "type": "open_collective"
  4638. }
  4639. ],
  4640. "time": "2024-09-25T02:54:12+00:00"
  4641. },
  4642. {
  4643. "name": "hyperf/translation",
  4644. "version": "v3.1.42",
  4645. "source": {
  4646. "type": "git",
  4647. "url": "https://github.com/hyperf/translation.git",
  4648. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f"
  4649. },
  4650. "dist": {
  4651. "type": "zip",
  4652. "url": "https://api.github.com/repos/hyperf/translation/zipball/0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4653. "reference": "0bca5490a99b0ea5200d5753fd096338ec24c25f",
  4654. "shasum": ""
  4655. },
  4656. "require": {
  4657. "hyperf/contract": "~3.1.0",
  4658. "hyperf/macroable": "~3.1.0",
  4659. "hyperf/support": "~3.1.0",
  4660. "hyperf/utils": "~3.1.0",
  4661. "php": ">=8.1",
  4662. "psr/container": "^1.0 || ^2.0"
  4663. },
  4664. "type": "library",
  4665. "extra": {
  4666. "branch-alias": {
  4667. "dev-master": "3.1-dev"
  4668. },
  4669. "hyperf": {
  4670. "config": "Hyperf\\Translation\\ConfigProvider"
  4671. }
  4672. },
  4673. "autoload": {
  4674. "files": [
  4675. "src/Functions.php"
  4676. ],
  4677. "psr-4": {
  4678. "Hyperf\\Translation\\": "src/"
  4679. }
  4680. },
  4681. "notification-url": "https://packagist.org/downloads/",
  4682. "license": [
  4683. "MIT"
  4684. ],
  4685. "description": "An independent translation component, forked by illuminate/translation.",
  4686. "keywords": [
  4687. "hyperf",
  4688. "translation"
  4689. ],
  4690. "support": {
  4691. "issues": "https://github.com/hyperf/translation/issues",
  4692. "source": "https://github.com/hyperf/translation/tree/v3.1.42"
  4693. },
  4694. "funding": [
  4695. {
  4696. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4697. "type": "custom"
  4698. },
  4699. {
  4700. "url": "https://opencollective.com/hyperf",
  4701. "type": "open_collective"
  4702. }
  4703. ],
  4704. "time": "2024-09-25T02:54:12+00:00"
  4705. },
  4706. {
  4707. "name": "hyperf/utils",
  4708. "version": "v3.1.42",
  4709. "source": {
  4710. "type": "git",
  4711. "url": "https://github.com/hyperf/utils.git",
  4712. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4713. },
  4714. "dist": {
  4715. "type": "zip",
  4716. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4717. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4718. "shasum": ""
  4719. },
  4720. "require": {
  4721. "doctrine/inflector": "^2.0",
  4722. "hyperf/code-parser": "~3.1.0",
  4723. "hyperf/codec": "~3.1.0",
  4724. "hyperf/collection": "~3.1.0",
  4725. "hyperf/context": "~3.1.0",
  4726. "hyperf/contract": "~3.1.0",
  4727. "hyperf/coordinator": "~3.1.0",
  4728. "hyperf/coroutine": "~3.1.0",
  4729. "hyperf/engine": "^2.0",
  4730. "hyperf/macroable": "~3.1.0",
  4731. "hyperf/serializer": "~3.1.0",
  4732. "hyperf/stringable": "~3.1.0",
  4733. "hyperf/support": "~3.1.0",
  4734. "php": ">=8.1"
  4735. },
  4736. "type": "library",
  4737. "extra": {
  4738. "branch-alias": {
  4739. "dev-master": "3.1-dev"
  4740. }
  4741. },
  4742. "notification-url": "https://packagist.org/downloads/",
  4743. "license": [
  4744. "MIT"
  4745. ],
  4746. "description": "A tools package that could help developer solved the problem quickly.",
  4747. "homepage": "https://hyperf.io",
  4748. "keywords": [
  4749. "hyperf",
  4750. "php",
  4751. "swoole",
  4752. "utils"
  4753. ],
  4754. "support": {
  4755. "docs": "https://hyperf.wiki",
  4756. "issues": "https://github.com/hyperf/hyperf/issues",
  4757. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4758. "source": "https://github.com/hyperf/hyperf"
  4759. },
  4760. "funding": [
  4761. {
  4762. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4763. "type": "custom"
  4764. },
  4765. {
  4766. "url": "https://opencollective.com/hyperf",
  4767. "type": "open_collective"
  4768. }
  4769. ],
  4770. "time": "2024-09-25T02:54:12+00:00"
  4771. },
  4772. {
  4773. "name": "hyperf/validation",
  4774. "version": "v3.1.42",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://github.com/hyperf/validation.git",
  4778. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://api.github.com/repos/hyperf/validation/zipball/917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4783. "reference": "917eb70c3dd67487b10ad5d5cbb0a009dac91e40",
  4784. "shasum": ""
  4785. },
  4786. "require": {
  4787. "egulias/email-validator": "^3.0",
  4788. "hyperf/collection": "~3.1.0",
  4789. "hyperf/conditionable": "~3.1.0",
  4790. "hyperf/contract": "~3.1.0",
  4791. "hyperf/di": "~3.1.0",
  4792. "hyperf/framework": "~3.1.0",
  4793. "hyperf/macroable": "~3.1.0",
  4794. "hyperf/stringable": "~3.1.0",
  4795. "hyperf/support": "~3.1.0",
  4796. "hyperf/tappable": "~3.1.0",
  4797. "hyperf/translation": "~3.1.0",
  4798. "hyperf/utils": "~3.1.0",
  4799. "nesbot/carbon": "^2.21",
  4800. "php": ">=8.1",
  4801. "psr/container": "^1.0 || ^2.0",
  4802. "psr/event-dispatcher": "^1.0",
  4803. "psr/http-message": "^1.0 || ^2.0"
  4804. },
  4805. "suggest": {
  4806. "hyperf/database": "Required if you want to use the database validation rule (~3.1.0).",
  4807. "hyperf/http-server": "Required if you want to use the request validation rule (~3.1.0)."
  4808. },
  4809. "type": "library",
  4810. "extra": {
  4811. "branch-alias": {
  4812. "dev-master": "3.1-dev"
  4813. },
  4814. "hyperf": {
  4815. "config": "Hyperf\\Validation\\ConfigProvider"
  4816. }
  4817. },
  4818. "autoload": {
  4819. "psr-4": {
  4820. "Hyperf\\Validation\\": "src/"
  4821. }
  4822. },
  4823. "notification-url": "https://packagist.org/downloads/",
  4824. "license": [
  4825. "MIT"
  4826. ],
  4827. "description": "hyperf validation",
  4828. "keywords": [
  4829. "hyperf",
  4830. "validation"
  4831. ],
  4832. "support": {
  4833. "issues": "https://github.com/hyperf/validation/issues",
  4834. "source": "https://github.com/hyperf/validation/tree/v3.1.42"
  4835. },
  4836. "funding": [
  4837. {
  4838. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4839. "type": "custom"
  4840. },
  4841. {
  4842. "url": "https://opencollective.com/hyperf",
  4843. "type": "open_collective"
  4844. }
  4845. ],
  4846. "time": "2024-09-25T02:54:12+00:00"
  4847. },
  4848. {
  4849. "name": "hyperf/websocket-server",
  4850. "version": "v3.1.42",
  4851. "source": {
  4852. "type": "git",
  4853. "url": "https://github.com/hyperf/websocket-server.git",
  4854. "reference": "f788eda083c6942a153d57617d5a347735d10dfc"
  4855. },
  4856. "dist": {
  4857. "type": "zip",
  4858. "url": "https://api.github.com/repos/hyperf/websocket-server/zipball/f788eda083c6942a153d57617d5a347735d10dfc",
  4859. "reference": "f788eda083c6942a153d57617d5a347735d10dfc",
  4860. "shasum": ""
  4861. },
  4862. "require": {
  4863. "hyperf/collection": "~3.1.0",
  4864. "hyperf/contract": "~3.1.0",
  4865. "hyperf/exception-handler": "~3.1.0",
  4866. "hyperf/http-server": "~3.1.0",
  4867. "hyperf/support": "~3.1.0",
  4868. "hyperf/utils": "~3.1.0",
  4869. "php": ">=8.1",
  4870. "psr/container": "^1.0 || ^2.0",
  4871. "psr/event-dispatcher": "^1.0"
  4872. },
  4873. "type": "library",
  4874. "extra": {
  4875. "branch-alias": {
  4876. "dev-master": "3.1-dev"
  4877. },
  4878. "hyperf": {
  4879. "config": "Hyperf\\WebSocketServer\\ConfigProvider"
  4880. }
  4881. },
  4882. "autoload": {
  4883. "psr-4": {
  4884. "Hyperf\\WebSocketServer\\": "src/"
  4885. }
  4886. },
  4887. "notification-url": "https://packagist.org/downloads/",
  4888. "license": [
  4889. "MIT"
  4890. ],
  4891. "description": "A websocket server library for Hyperf.",
  4892. "homepage": "https://hyperf.io",
  4893. "keywords": [
  4894. "hyperf",
  4895. "php",
  4896. "swoole",
  4897. "websocket"
  4898. ],
  4899. "support": {
  4900. "docs": "https://hyperf.wiki",
  4901. "issues": "https://github.com/hyperf/hyperf/issues",
  4902. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4903. "source": "https://github.com/hyperf/hyperf"
  4904. },
  4905. "funding": [
  4906. {
  4907. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4908. "type": "custom"
  4909. },
  4910. {
  4911. "url": "https://opencollective.com/hyperf",
  4912. "type": "open_collective"
  4913. }
  4914. ],
  4915. "time": "2024-09-25T02:54:12+00:00"
  4916. },
  4917. {
  4918. "name": "jetbrains/phpstorm-attributes",
  4919. "version": "1.1",
  4920. "source": {
  4921. "type": "git",
  4922. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4923. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4924. },
  4925. "dist": {
  4926. "type": "zip",
  4927. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4928. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4929. "shasum": ""
  4930. },
  4931. "type": "library",
  4932. "autoload": {
  4933. "psr-4": {
  4934. "JetBrains\\PhpStorm\\": "src/"
  4935. }
  4936. },
  4937. "notification-url": "https://packagist.org/downloads/",
  4938. "license": [
  4939. "Apache-2.0"
  4940. ],
  4941. "authors": [
  4942. {
  4943. "name": "JetBrains",
  4944. "homepage": "https://www.jetbrains.com"
  4945. }
  4946. ],
  4947. "description": "PhpStorm specific attributes",
  4948. "keywords": [
  4949. "attributes",
  4950. "jetbrains",
  4951. "phpstorm"
  4952. ],
  4953. "support": {
  4954. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4955. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4956. },
  4957. "time": "2023-09-01T08:50:25+00:00"
  4958. },
  4959. {
  4960. "name": "laminas/laminas-mime",
  4961. "version": "2.12.0",
  4962. "source": {
  4963. "type": "git",
  4964. "url": "https://github.com/laminas/laminas-mime.git",
  4965. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4966. },
  4967. "dist": {
  4968. "type": "zip",
  4969. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4970. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4971. "shasum": ""
  4972. },
  4973. "require": {
  4974. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4975. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4976. },
  4977. "conflict": {
  4978. "zendframework/zend-mime": "*"
  4979. },
  4980. "require-dev": {
  4981. "laminas/laminas-coding-standard": "~2.4.0",
  4982. "laminas/laminas-mail": "^2.19.0",
  4983. "phpunit/phpunit": "~9.5.25"
  4984. },
  4985. "suggest": {
  4986. "laminas/laminas-mail": "Laminas\\Mail component"
  4987. },
  4988. "type": "library",
  4989. "autoload": {
  4990. "psr-4": {
  4991. "Laminas\\Mime\\": "src/"
  4992. }
  4993. },
  4994. "notification-url": "https://packagist.org/downloads/",
  4995. "license": [
  4996. "BSD-3-Clause"
  4997. ],
  4998. "description": "Create and parse MIME messages and parts",
  4999. "homepage": "https://laminas.dev",
  5000. "keywords": [
  5001. "laminas",
  5002. "mime"
  5003. ],
  5004. "support": {
  5005. "chat": "https://laminas.dev/chat",
  5006. "docs": "https://docs.laminas.dev/laminas-mime/",
  5007. "forum": "https://discourse.laminas.dev",
  5008. "issues": "https://github.com/laminas/laminas-mime/issues",
  5009. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  5010. "source": "https://github.com/laminas/laminas-mime"
  5011. },
  5012. "funding": [
  5013. {
  5014. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5015. "type": "community_bridge"
  5016. }
  5017. ],
  5018. "time": "2023-11-02T16:47:19+00:00"
  5019. },
  5020. {
  5021. "name": "laminas/laminas-stdlib",
  5022. "version": "3.20.0",
  5023. "source": {
  5024. "type": "git",
  5025. "url": "https://github.com/laminas/laminas-stdlib.git",
  5026. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  5027. },
  5028. "dist": {
  5029. "type": "zip",
  5030. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5031. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  5032. "shasum": ""
  5033. },
  5034. "require": {
  5035. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  5036. },
  5037. "conflict": {
  5038. "zendframework/zend-stdlib": "*"
  5039. },
  5040. "require-dev": {
  5041. "laminas/laminas-coding-standard": "^3.0",
  5042. "phpbench/phpbench": "^1.3.1",
  5043. "phpunit/phpunit": "^10.5.38",
  5044. "psalm/plugin-phpunit": "^0.19.0",
  5045. "vimeo/psalm": "^5.26.1"
  5046. },
  5047. "type": "library",
  5048. "autoload": {
  5049. "psr-4": {
  5050. "Laminas\\Stdlib\\": "src/"
  5051. }
  5052. },
  5053. "notification-url": "https://packagist.org/downloads/",
  5054. "license": [
  5055. "BSD-3-Clause"
  5056. ],
  5057. "description": "SPL extensions, array utilities, error handlers, and more",
  5058. "homepage": "https://laminas.dev",
  5059. "keywords": [
  5060. "laminas",
  5061. "stdlib"
  5062. ],
  5063. "support": {
  5064. "chat": "https://laminas.dev/chat",
  5065. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  5066. "forum": "https://discourse.laminas.dev",
  5067. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  5068. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  5069. "source": "https://github.com/laminas/laminas-stdlib"
  5070. },
  5071. "funding": [
  5072. {
  5073. "url": "https://funding.communitybridge.org/projects/laminas-project",
  5074. "type": "community_bridge"
  5075. }
  5076. ],
  5077. "time": "2024-10-29T13:46:07+00:00"
  5078. },
  5079. {
  5080. "name": "lcobucci/clock",
  5081. "version": "2.3.0",
  5082. "source": {
  5083. "type": "git",
  5084. "url": "https://github.com/lcobucci/clock.git",
  5085. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  5086. },
  5087. "dist": {
  5088. "type": "zip",
  5089. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5090. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  5091. "shasum": ""
  5092. },
  5093. "require": {
  5094. "php": "~8.1.0 || ~8.2.0",
  5095. "stella-maris/clock": "^0.1.7"
  5096. },
  5097. "provide": {
  5098. "psr/clock-implementation": "1.0"
  5099. },
  5100. "require-dev": {
  5101. "infection/infection": "^0.26",
  5102. "lcobucci/coding-standard": "^9.0",
  5103. "phpstan/extension-installer": "^1.2",
  5104. "phpstan/phpstan": "^1.9.4",
  5105. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  5106. "phpstan/phpstan-phpunit": "^1.3.2",
  5107. "phpstan/phpstan-strict-rules": "^1.4.4",
  5108. "phpunit/phpunit": "^9.5.27"
  5109. },
  5110. "type": "library",
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Lcobucci\\Clock\\": "src"
  5114. }
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Luís Cobucci",
  5123. "email": "lcobucci@gmail.com"
  5124. }
  5125. ],
  5126. "description": "Yet another clock abstraction",
  5127. "support": {
  5128. "issues": "https://github.com/lcobucci/clock/issues",
  5129. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  5130. },
  5131. "funding": [
  5132. {
  5133. "url": "https://github.com/lcobucci",
  5134. "type": "github"
  5135. },
  5136. {
  5137. "url": "https://www.patreon.com/lcobucci",
  5138. "type": "patreon"
  5139. }
  5140. ],
  5141. "time": "2022-12-19T14:38:11+00:00"
  5142. },
  5143. {
  5144. "name": "lcobucci/jwt",
  5145. "version": "4.1.5",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/lcobucci/jwt.git",
  5149. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5154. "reference": "fe2d89f2eaa7087af4aa166c6f480ef04e000582",
  5155. "shasum": ""
  5156. },
  5157. "require": {
  5158. "ext-hash": "*",
  5159. "ext-json": "*",
  5160. "ext-mbstring": "*",
  5161. "ext-openssl": "*",
  5162. "ext-sodium": "*",
  5163. "lcobucci/clock": "^2.0",
  5164. "php": "^7.4 || ^8.0"
  5165. },
  5166. "require-dev": {
  5167. "infection/infection": "^0.21",
  5168. "lcobucci/coding-standard": "^6.0",
  5169. "mikey179/vfsstream": "^1.6.7",
  5170. "phpbench/phpbench": "^1.0",
  5171. "phpstan/extension-installer": "^1.0",
  5172. "phpstan/phpstan": "^0.12",
  5173. "phpstan/phpstan-deprecation-rules": "^0.12",
  5174. "phpstan/phpstan-phpunit": "^0.12",
  5175. "phpstan/phpstan-strict-rules": "^0.12",
  5176. "phpunit/php-invoker": "^3.1",
  5177. "phpunit/phpunit": "^9.5"
  5178. },
  5179. "type": "library",
  5180. "autoload": {
  5181. "psr-4": {
  5182. "Lcobucci\\JWT\\": "src"
  5183. }
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "BSD-3-Clause"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Luís Cobucci",
  5192. "email": "lcobucci@gmail.com",
  5193. "role": "Developer"
  5194. }
  5195. ],
  5196. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  5197. "keywords": [
  5198. "JWS",
  5199. "jwt"
  5200. ],
  5201. "support": {
  5202. "issues": "https://github.com/lcobucci/jwt/issues",
  5203. "source": "https://github.com/lcobucci/jwt/tree/4.1.5"
  5204. },
  5205. "funding": [
  5206. {
  5207. "url": "https://github.com/lcobucci",
  5208. "type": "github"
  5209. },
  5210. {
  5211. "url": "https://www.patreon.com/lcobucci",
  5212. "type": "patreon"
  5213. }
  5214. ],
  5215. "time": "2021-09-28T19:34:56+00:00"
  5216. },
  5217. {
  5218. "name": "markrogoyski/math-php",
  5219. "version": "v2.10.0",
  5220. "source": {
  5221. "type": "git",
  5222. "url": "https://github.com/markrogoyski/math-php.git",
  5223. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  5224. },
  5225. "dist": {
  5226. "type": "zip",
  5227. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5228. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  5229. "shasum": ""
  5230. },
  5231. "require": {
  5232. "ext-json": "*",
  5233. "php": ">=7.2.0"
  5234. },
  5235. "require-dev": {
  5236. "php-coveralls/php-coveralls": "^2.0",
  5237. "php-parallel-lint/php-parallel-lint": "^1.2",
  5238. "phploc/phploc": "*",
  5239. "phpmd/phpmd": "^2.6",
  5240. "phpstan/phpstan": "^1.10",
  5241. "phpunit/phpunit": "^8.5",
  5242. "squizlabs/php_codesniffer": "3.*"
  5243. },
  5244. "type": "library",
  5245. "autoload": {
  5246. "psr-4": {
  5247. "MathPHP\\": "src/"
  5248. }
  5249. },
  5250. "notification-url": "https://packagist.org/downloads/",
  5251. "license": [
  5252. "MIT"
  5253. ],
  5254. "authors": [
  5255. {
  5256. "name": "Mark Rogoyski",
  5257. "email": "mark@rogoyski.com",
  5258. "homepage": "https://github.com/markrogoyski",
  5259. "role": "Lead developer"
  5260. },
  5261. {
  5262. "name": "Kevin Nowaczyk",
  5263. "homepage": "https://github.com/Beakerboy",
  5264. "role": "Developer"
  5265. },
  5266. {
  5267. "name": "MathPHP Community of Contributors",
  5268. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  5269. }
  5270. ],
  5271. "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",
  5272. "homepage": "https://github.com/markrogoyski/math-php/",
  5273. "keywords": [
  5274. "algebra",
  5275. "combinatorics",
  5276. "distributions",
  5277. "linear algebra",
  5278. "math",
  5279. "mathematics",
  5280. "matrix",
  5281. "numerical analysis",
  5282. "probability",
  5283. "regressions",
  5284. "statistics"
  5285. ],
  5286. "support": {
  5287. "issues": "https://github.com/markrogoyski/math-php/issues",
  5288. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  5289. },
  5290. "time": "2024-04-17T00:09:51+00:00"
  5291. },
  5292. {
  5293. "name": "monolog/monolog",
  5294. "version": "3.7.0",
  5295. "source": {
  5296. "type": "git",
  5297. "url": "https://github.com/Seldaek/monolog.git",
  5298. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  5299. },
  5300. "dist": {
  5301. "type": "zip",
  5302. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5303. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  5304. "shasum": ""
  5305. },
  5306. "require": {
  5307. "php": ">=8.1",
  5308. "psr/log": "^2.0 || ^3.0"
  5309. },
  5310. "provide": {
  5311. "psr/log-implementation": "3.0.0"
  5312. },
  5313. "require-dev": {
  5314. "aws/aws-sdk-php": "^3.0",
  5315. "doctrine/couchdb": "~1.0@dev",
  5316. "elasticsearch/elasticsearch": "^7 || ^8",
  5317. "ext-json": "*",
  5318. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  5319. "guzzlehttp/guzzle": "^7.4.5",
  5320. "guzzlehttp/psr7": "^2.2",
  5321. "mongodb/mongodb": "^1.8",
  5322. "php-amqplib/php-amqplib": "~2.4 || ^3",
  5323. "phpstan/phpstan": "^1.9",
  5324. "phpstan/phpstan-deprecation-rules": "^1.0",
  5325. "phpstan/phpstan-strict-rules": "^1.4",
  5326. "phpunit/phpunit": "^10.5.17",
  5327. "predis/predis": "^1.1 || ^2",
  5328. "ruflin/elastica": "^7",
  5329. "symfony/mailer": "^5.4 || ^6",
  5330. "symfony/mime": "^5.4 || ^6"
  5331. },
  5332. "suggest": {
  5333. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  5334. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  5335. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  5336. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  5337. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  5338. "ext-mbstring": "Allow to work properly with unicode symbols",
  5339. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  5340. "ext-openssl": "Required to send log messages using SSL",
  5341. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  5342. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  5343. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  5344. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  5345. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  5346. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  5347. },
  5348. "type": "library",
  5349. "extra": {
  5350. "branch-alias": {
  5351. "dev-main": "3.x-dev"
  5352. }
  5353. },
  5354. "autoload": {
  5355. "psr-4": {
  5356. "Monolog\\": "src/Monolog"
  5357. }
  5358. },
  5359. "notification-url": "https://packagist.org/downloads/",
  5360. "license": [
  5361. "MIT"
  5362. ],
  5363. "authors": [
  5364. {
  5365. "name": "Jordi Boggiano",
  5366. "email": "j.boggiano@seld.be",
  5367. "homepage": "https://seld.be"
  5368. }
  5369. ],
  5370. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  5371. "homepage": "https://github.com/Seldaek/monolog",
  5372. "keywords": [
  5373. "log",
  5374. "logging",
  5375. "psr-3"
  5376. ],
  5377. "support": {
  5378. "issues": "https://github.com/Seldaek/monolog/issues",
  5379. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  5380. },
  5381. "funding": [
  5382. {
  5383. "url": "https://github.com/Seldaek",
  5384. "type": "github"
  5385. },
  5386. {
  5387. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  5388. "type": "tidelift"
  5389. }
  5390. ],
  5391. "time": "2024-06-28T09:40:51+00:00"
  5392. },
  5393. {
  5394. "name": "nesbot/carbon",
  5395. "version": "2.72.5",
  5396. "source": {
  5397. "type": "git",
  5398. "url": "https://github.com/briannesbitt/Carbon.git",
  5399. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  5400. },
  5401. "dist": {
  5402. "type": "zip",
  5403. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  5404. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  5405. "shasum": ""
  5406. },
  5407. "require": {
  5408. "carbonphp/carbon-doctrine-types": "*",
  5409. "ext-json": "*",
  5410. "php": "^7.1.8 || ^8.0",
  5411. "psr/clock": "^1.0",
  5412. "symfony/polyfill-mbstring": "^1.0",
  5413. "symfony/polyfill-php80": "^1.16",
  5414. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  5415. },
  5416. "provide": {
  5417. "psr/clock-implementation": "1.0"
  5418. },
  5419. "require-dev": {
  5420. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  5421. "doctrine/orm": "^2.7 || ^3.0",
  5422. "friendsofphp/php-cs-fixer": "^3.0",
  5423. "kylekatarnls/multi-tester": "^2.0",
  5424. "ondrejmirtes/better-reflection": "*",
  5425. "phpmd/phpmd": "^2.9",
  5426. "phpstan/extension-installer": "^1.0",
  5427. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  5428. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  5429. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  5430. "squizlabs/php_codesniffer": "^3.4"
  5431. },
  5432. "bin": [
  5433. "bin/carbon"
  5434. ],
  5435. "type": "library",
  5436. "extra": {
  5437. "branch-alias": {
  5438. "dev-master": "3.x-dev",
  5439. "dev-2.x": "2.x-dev"
  5440. },
  5441. "laravel": {
  5442. "providers": [
  5443. "Carbon\\Laravel\\ServiceProvider"
  5444. ]
  5445. },
  5446. "phpstan": {
  5447. "includes": [
  5448. "extension.neon"
  5449. ]
  5450. }
  5451. },
  5452. "autoload": {
  5453. "psr-4": {
  5454. "Carbon\\": "src/Carbon/"
  5455. }
  5456. },
  5457. "notification-url": "https://packagist.org/downloads/",
  5458. "license": [
  5459. "MIT"
  5460. ],
  5461. "authors": [
  5462. {
  5463. "name": "Brian Nesbitt",
  5464. "email": "brian@nesbot.com",
  5465. "homepage": "https://markido.com"
  5466. },
  5467. {
  5468. "name": "kylekatarnls",
  5469. "homepage": "https://github.com/kylekatarnls"
  5470. }
  5471. ],
  5472. "description": "An API extension for DateTime that supports 281 different languages.",
  5473. "homepage": "https://carbon.nesbot.com",
  5474. "keywords": [
  5475. "date",
  5476. "datetime",
  5477. "time"
  5478. ],
  5479. "support": {
  5480. "docs": "https://carbon.nesbot.com/docs",
  5481. "issues": "https://github.com/briannesbitt/Carbon/issues",
  5482. "source": "https://github.com/briannesbitt/Carbon"
  5483. },
  5484. "funding": [
  5485. {
  5486. "url": "https://github.com/sponsors/kylekatarnls",
  5487. "type": "github"
  5488. },
  5489. {
  5490. "url": "https://opencollective.com/Carbon#sponsor",
  5491. "type": "opencollective"
  5492. },
  5493. {
  5494. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  5495. "type": "tidelift"
  5496. }
  5497. ],
  5498. "time": "2024-06-03T19:18:41+00:00"
  5499. },
  5500. {
  5501. "name": "nikic/fast-route",
  5502. "version": "v1.3.0",
  5503. "source": {
  5504. "type": "git",
  5505. "url": "https://github.com/nikic/FastRoute.git",
  5506. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  5507. },
  5508. "dist": {
  5509. "type": "zip",
  5510. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  5511. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  5512. "shasum": ""
  5513. },
  5514. "require": {
  5515. "php": ">=5.4.0"
  5516. },
  5517. "require-dev": {
  5518. "phpunit/phpunit": "^4.8.35|~5.7"
  5519. },
  5520. "type": "library",
  5521. "autoload": {
  5522. "files": [
  5523. "src/functions.php"
  5524. ],
  5525. "psr-4": {
  5526. "FastRoute\\": "src/"
  5527. }
  5528. },
  5529. "notification-url": "https://packagist.org/downloads/",
  5530. "license": [
  5531. "BSD-3-Clause"
  5532. ],
  5533. "authors": [
  5534. {
  5535. "name": "Nikita Popov",
  5536. "email": "nikic@php.net"
  5537. }
  5538. ],
  5539. "description": "Fast request router for PHP",
  5540. "keywords": [
  5541. "router",
  5542. "routing"
  5543. ],
  5544. "support": {
  5545. "issues": "https://github.com/nikic/FastRoute/issues",
  5546. "source": "https://github.com/nikic/FastRoute/tree/master"
  5547. },
  5548. "time": "2018-02-13T20:26:39+00:00"
  5549. },
  5550. {
  5551. "name": "nikic/php-parser",
  5552. "version": "v4.19.4",
  5553. "source": {
  5554. "type": "git",
  5555. "url": "https://github.com/nikic/PHP-Parser.git",
  5556. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  5557. },
  5558. "dist": {
  5559. "type": "zip",
  5560. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5561. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  5562. "shasum": ""
  5563. },
  5564. "require": {
  5565. "ext-tokenizer": "*",
  5566. "php": ">=7.1"
  5567. },
  5568. "require-dev": {
  5569. "ircmaxell/php-yacc": "^0.0.7",
  5570. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  5571. },
  5572. "bin": [
  5573. "bin/php-parse"
  5574. ],
  5575. "type": "library",
  5576. "extra": {
  5577. "branch-alias": {
  5578. "dev-master": "4.9-dev"
  5579. }
  5580. },
  5581. "autoload": {
  5582. "psr-4": {
  5583. "PhpParser\\": "lib/PhpParser"
  5584. }
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "BSD-3-Clause"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "Nikita Popov"
  5593. }
  5594. ],
  5595. "description": "A PHP parser written in PHP",
  5596. "keywords": [
  5597. "parser",
  5598. "php"
  5599. ],
  5600. "support": {
  5601. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5602. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  5603. },
  5604. "time": "2024-09-29T15:01:53+00:00"
  5605. },
  5606. {
  5607. "name": "paragonie/constant_time_encoding",
  5608. "version": "v3.0.0",
  5609. "source": {
  5610. "type": "git",
  5611. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5612. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5613. },
  5614. "dist": {
  5615. "type": "zip",
  5616. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5617. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5618. "shasum": ""
  5619. },
  5620. "require": {
  5621. "php": "^8"
  5622. },
  5623. "require-dev": {
  5624. "phpunit/phpunit": "^9",
  5625. "vimeo/psalm": "^4|^5"
  5626. },
  5627. "type": "library",
  5628. "autoload": {
  5629. "psr-4": {
  5630. "ParagonIE\\ConstantTime\\": "src/"
  5631. }
  5632. },
  5633. "notification-url": "https://packagist.org/downloads/",
  5634. "license": [
  5635. "MIT"
  5636. ],
  5637. "authors": [
  5638. {
  5639. "name": "Paragon Initiative Enterprises",
  5640. "email": "security@paragonie.com",
  5641. "homepage": "https://paragonie.com",
  5642. "role": "Maintainer"
  5643. },
  5644. {
  5645. "name": "Steve 'Sc00bz' Thomas",
  5646. "email": "steve@tobtu.com",
  5647. "homepage": "https://www.tobtu.com",
  5648. "role": "Original Developer"
  5649. }
  5650. ],
  5651. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5652. "keywords": [
  5653. "base16",
  5654. "base32",
  5655. "base32_decode",
  5656. "base32_encode",
  5657. "base64",
  5658. "base64_decode",
  5659. "base64_encode",
  5660. "bin2hex",
  5661. "encoding",
  5662. "hex",
  5663. "hex2bin",
  5664. "rfc4648"
  5665. ],
  5666. "support": {
  5667. "email": "info@paragonie.com",
  5668. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5669. "source": "https://github.com/paragonie/constant_time_encoding"
  5670. },
  5671. "time": "2024-05-08T12:36:18+00:00"
  5672. },
  5673. {
  5674. "name": "paragonie/random_compat",
  5675. "version": "v9.99.100",
  5676. "source": {
  5677. "type": "git",
  5678. "url": "https://github.com/paragonie/random_compat.git",
  5679. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5680. },
  5681. "dist": {
  5682. "type": "zip",
  5683. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5684. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5685. "shasum": ""
  5686. },
  5687. "require": {
  5688. "php": ">= 7"
  5689. },
  5690. "require-dev": {
  5691. "phpunit/phpunit": "4.*|5.*",
  5692. "vimeo/psalm": "^1"
  5693. },
  5694. "suggest": {
  5695. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5696. },
  5697. "type": "library",
  5698. "notification-url": "https://packagist.org/downloads/",
  5699. "license": [
  5700. "MIT"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "Paragon Initiative Enterprises",
  5705. "email": "security@paragonie.com",
  5706. "homepage": "https://paragonie.com"
  5707. }
  5708. ],
  5709. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5710. "keywords": [
  5711. "csprng",
  5712. "polyfill",
  5713. "pseudorandom",
  5714. "random"
  5715. ],
  5716. "support": {
  5717. "email": "info@paragonie.com",
  5718. "issues": "https://github.com/paragonie/random_compat/issues",
  5719. "source": "https://github.com/paragonie/random_compat"
  5720. },
  5721. "time": "2020-10-15T08:29:30+00:00"
  5722. },
  5723. {
  5724. "name": "php-amqplib/php-amqplib",
  5725. "version": "v3.7.1",
  5726. "source": {
  5727. "type": "git",
  5728. "url": "https://github.com/php-amqplib/php-amqplib.git",
  5729. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65"
  5730. },
  5731. "dist": {
  5732. "type": "zip",
  5733. "url": "https://api.github.com/repos/php-amqplib/php-amqplib/zipball/5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5734. "reference": "5db9a68435fdde9ba4248a8fd2fae6d07b442b65",
  5735. "shasum": ""
  5736. },
  5737. "require": {
  5738. "ext-mbstring": "*",
  5739. "ext-sockets": "*",
  5740. "php": "^7.2||^8.0",
  5741. "phpseclib/phpseclib": "^2.0|^3.0"
  5742. },
  5743. "conflict": {
  5744. "php": "7.4.0 - 7.4.1"
  5745. },
  5746. "replace": {
  5747. "videlalvaro/php-amqplib": "self.version"
  5748. },
  5749. "require-dev": {
  5750. "ext-curl": "*",
  5751. "nategood/httpful": "^0.2.20",
  5752. "phpunit/phpunit": "^7.5|^9.5",
  5753. "squizlabs/php_codesniffer": "^3.6"
  5754. },
  5755. "type": "library",
  5756. "extra": {
  5757. "branch-alias": {
  5758. "dev-master": "3.0-dev"
  5759. }
  5760. },
  5761. "autoload": {
  5762. "psr-4": {
  5763. "PhpAmqpLib\\": "PhpAmqpLib/"
  5764. }
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "LGPL-2.1-or-later"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "Alvaro Videla",
  5773. "role": "Original Maintainer"
  5774. },
  5775. {
  5776. "name": "Raúl Araya",
  5777. "email": "nubeiro@gmail.com",
  5778. "role": "Maintainer"
  5779. },
  5780. {
  5781. "name": "Luke Bakken",
  5782. "email": "luke@bakken.io",
  5783. "role": "Maintainer"
  5784. },
  5785. {
  5786. "name": "Ramūnas Dronga",
  5787. "email": "github@ramuno.lt",
  5788. "role": "Maintainer"
  5789. }
  5790. ],
  5791. "description": "Formerly videlalvaro/php-amqplib. This library is a pure PHP implementation of the AMQP protocol. It's been tested against RabbitMQ.",
  5792. "homepage": "https://github.com/php-amqplib/php-amqplib/",
  5793. "keywords": [
  5794. "message",
  5795. "queue",
  5796. "rabbitmq"
  5797. ],
  5798. "support": {
  5799. "issues": "https://github.com/php-amqplib/php-amqplib/issues",
  5800. "source": "https://github.com/php-amqplib/php-amqplib/tree/v3.7.1"
  5801. },
  5802. "time": "2024-09-03T19:18:03+00:00"
  5803. },
  5804. {
  5805. "name": "php-di/phpdoc-reader",
  5806. "version": "2.2.1",
  5807. "source": {
  5808. "type": "git",
  5809. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  5810. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  5811. },
  5812. "dist": {
  5813. "type": "zip",
  5814. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5815. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  5816. "shasum": ""
  5817. },
  5818. "require": {
  5819. "php": ">=7.2.0"
  5820. },
  5821. "require-dev": {
  5822. "mnapoli/hard-mode": "~0.3.0",
  5823. "phpunit/phpunit": "^8.5|^9.0"
  5824. },
  5825. "type": "library",
  5826. "autoload": {
  5827. "psr-4": {
  5828. "PhpDocReader\\": "src/PhpDocReader"
  5829. }
  5830. },
  5831. "notification-url": "https://packagist.org/downloads/",
  5832. "license": [
  5833. "MIT"
  5834. ],
  5835. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  5836. "keywords": [
  5837. "phpdoc",
  5838. "reflection"
  5839. ],
  5840. "support": {
  5841. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  5842. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  5843. },
  5844. "time": "2020-10-12T12:39:22+00:00"
  5845. },
  5846. {
  5847. "name": "phper666/jwt-auth",
  5848. "version": "v4.0.11",
  5849. "source": {
  5850. "type": "git",
  5851. "url": "https://github.com/phper666/jwt-auth.git",
  5852. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440"
  5853. },
  5854. "dist": {
  5855. "type": "zip",
  5856. "url": "https://api.github.com/repos/phper666/jwt-auth/zipball/0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5857. "reference": "0938a96cd7ca3936fd6ff849789f94d4e992d440",
  5858. "shasum": ""
  5859. },
  5860. "require": {
  5861. "ext-swoole": ">=4.4",
  5862. "lcobucci/jwt": "4.1.5",
  5863. "nesbot/carbon": "^1.0 || ^2.0",
  5864. "php": ">=7.4"
  5865. },
  5866. "suggest": {
  5867. "hyperf/cache": "required hyperf/cache ~2.2.0",
  5868. "hyperf/command": "required hyperf/command ~2.2.0",
  5869. "hyperf/config": "required hyperf/config ~2.2.0",
  5870. "hyperf/di": "required hyperf/di ~2.2.0"
  5871. },
  5872. "type": "library",
  5873. "extra": {
  5874. "hyperf": {
  5875. "config": "Phper666\\JWTAuth\\ConfigProvider"
  5876. }
  5877. },
  5878. "autoload": {
  5879. "files": [
  5880. "src/Functions.php"
  5881. ],
  5882. "psr-4": {
  5883. "Phper666\\JWTAuth\\": "src/"
  5884. }
  5885. },
  5886. "notification-url": "https://packagist.org/downloads/",
  5887. "license": [
  5888. "MIT"
  5889. ],
  5890. "authors": [
  5891. {
  5892. "name": "Li Yuzhao",
  5893. "email": "562405704@qq.com",
  5894. "homepage": "https://github.com/phper666/jwt-auth",
  5895. "role": "Developer"
  5896. }
  5897. ],
  5898. "description": "jwt-auth Component",
  5899. "keywords": [
  5900. "hyperf",
  5901. "php"
  5902. ],
  5903. "support": {
  5904. "issues": "https://github.com/phper666/jwt-auth/issues",
  5905. "source": "https://github.com/phper666/jwt-auth/tree/v4.0.11"
  5906. },
  5907. "time": "2024-02-02T13:24:54+00:00"
  5908. },
  5909. {
  5910. "name": "phpoption/phpoption",
  5911. "version": "1.9.3",
  5912. "source": {
  5913. "type": "git",
  5914. "url": "https://github.com/schmittjoh/php-option.git",
  5915. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5916. },
  5917. "dist": {
  5918. "type": "zip",
  5919. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5920. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5921. "shasum": ""
  5922. },
  5923. "require": {
  5924. "php": "^7.2.5 || ^8.0"
  5925. },
  5926. "require-dev": {
  5927. "bamarni/composer-bin-plugin": "^1.8.2",
  5928. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5929. },
  5930. "type": "library",
  5931. "extra": {
  5932. "bamarni-bin": {
  5933. "bin-links": true,
  5934. "forward-command": false
  5935. },
  5936. "branch-alias": {
  5937. "dev-master": "1.9-dev"
  5938. }
  5939. },
  5940. "autoload": {
  5941. "psr-4": {
  5942. "PhpOption\\": "src/PhpOption/"
  5943. }
  5944. },
  5945. "notification-url": "https://packagist.org/downloads/",
  5946. "license": [
  5947. "Apache-2.0"
  5948. ],
  5949. "authors": [
  5950. {
  5951. "name": "Johannes M. Schmitt",
  5952. "email": "schmittjoh@gmail.com",
  5953. "homepage": "https://github.com/schmittjoh"
  5954. },
  5955. {
  5956. "name": "Graham Campbell",
  5957. "email": "hello@gjcampbell.co.uk",
  5958. "homepage": "https://github.com/GrahamCampbell"
  5959. }
  5960. ],
  5961. "description": "Option Type for PHP",
  5962. "keywords": [
  5963. "language",
  5964. "option",
  5965. "php",
  5966. "type"
  5967. ],
  5968. "support": {
  5969. "issues": "https://github.com/schmittjoh/php-option/issues",
  5970. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5971. },
  5972. "funding": [
  5973. {
  5974. "url": "https://github.com/GrahamCampbell",
  5975. "type": "github"
  5976. },
  5977. {
  5978. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5979. "type": "tidelift"
  5980. }
  5981. ],
  5982. "time": "2024-07-20T21:41:07+00:00"
  5983. },
  5984. {
  5985. "name": "phpseclib/phpseclib",
  5986. "version": "3.0.42",
  5987. "source": {
  5988. "type": "git",
  5989. "url": "https://github.com/phpseclib/phpseclib.git",
  5990. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5991. },
  5992. "dist": {
  5993. "type": "zip",
  5994. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5995. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5996. "shasum": ""
  5997. },
  5998. "require": {
  5999. "paragonie/constant_time_encoding": "^1|^2|^3",
  6000. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6001. "php": ">=5.6.1"
  6002. },
  6003. "require-dev": {
  6004. "phpunit/phpunit": "*"
  6005. },
  6006. "suggest": {
  6007. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6008. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6009. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6010. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6011. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6012. },
  6013. "type": "library",
  6014. "autoload": {
  6015. "files": [
  6016. "phpseclib/bootstrap.php"
  6017. ],
  6018. "psr-4": {
  6019. "phpseclib3\\": "phpseclib/"
  6020. }
  6021. },
  6022. "notification-url": "https://packagist.org/downloads/",
  6023. "license": [
  6024. "MIT"
  6025. ],
  6026. "authors": [
  6027. {
  6028. "name": "Jim Wigginton",
  6029. "email": "terrafrost@php.net",
  6030. "role": "Lead Developer"
  6031. },
  6032. {
  6033. "name": "Patrick Monnerat",
  6034. "email": "pm@datasphere.ch",
  6035. "role": "Developer"
  6036. },
  6037. {
  6038. "name": "Andreas Fischer",
  6039. "email": "bantu@phpbb.com",
  6040. "role": "Developer"
  6041. },
  6042. {
  6043. "name": "Hans-Jürgen Petrich",
  6044. "email": "petrich@tronic-media.com",
  6045. "role": "Developer"
  6046. },
  6047. {
  6048. "name": "Graham Campbell",
  6049. "email": "graham@alt-three.com",
  6050. "role": "Developer"
  6051. }
  6052. ],
  6053. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6054. "homepage": "http://phpseclib.sourceforge.net",
  6055. "keywords": [
  6056. "BigInteger",
  6057. "aes",
  6058. "asn.1",
  6059. "asn1",
  6060. "blowfish",
  6061. "crypto",
  6062. "cryptography",
  6063. "encryption",
  6064. "rsa",
  6065. "security",
  6066. "sftp",
  6067. "signature",
  6068. "signing",
  6069. "ssh",
  6070. "twofish",
  6071. "x.509",
  6072. "x509"
  6073. ],
  6074. "support": {
  6075. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6076. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.42"
  6077. },
  6078. "funding": [
  6079. {
  6080. "url": "https://github.com/terrafrost",
  6081. "type": "github"
  6082. },
  6083. {
  6084. "url": "https://www.patreon.com/phpseclib",
  6085. "type": "patreon"
  6086. },
  6087. {
  6088. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6089. "type": "tidelift"
  6090. }
  6091. ],
  6092. "time": "2024-09-16T03:06:04+00:00"
  6093. },
  6094. {
  6095. "name": "psr/cache",
  6096. "version": "3.0.0",
  6097. "source": {
  6098. "type": "git",
  6099. "url": "https://github.com/php-fig/cache.git",
  6100. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6101. },
  6102. "dist": {
  6103. "type": "zip",
  6104. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6105. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6106. "shasum": ""
  6107. },
  6108. "require": {
  6109. "php": ">=8.0.0"
  6110. },
  6111. "type": "library",
  6112. "extra": {
  6113. "branch-alias": {
  6114. "dev-master": "1.0.x-dev"
  6115. }
  6116. },
  6117. "autoload": {
  6118. "psr-4": {
  6119. "Psr\\Cache\\": "src/"
  6120. }
  6121. },
  6122. "notification-url": "https://packagist.org/downloads/",
  6123. "license": [
  6124. "MIT"
  6125. ],
  6126. "authors": [
  6127. {
  6128. "name": "PHP-FIG",
  6129. "homepage": "https://www.php-fig.org/"
  6130. }
  6131. ],
  6132. "description": "Common interface for caching libraries",
  6133. "keywords": [
  6134. "cache",
  6135. "psr",
  6136. "psr-6"
  6137. ],
  6138. "support": {
  6139. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6140. },
  6141. "time": "2021-02-03T23:26:27+00:00"
  6142. },
  6143. {
  6144. "name": "psr/clock",
  6145. "version": "1.0.0",
  6146. "source": {
  6147. "type": "git",
  6148. "url": "https://github.com/php-fig/clock.git",
  6149. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6150. },
  6151. "dist": {
  6152. "type": "zip",
  6153. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6154. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6155. "shasum": ""
  6156. },
  6157. "require": {
  6158. "php": "^7.0 || ^8.0"
  6159. },
  6160. "type": "library",
  6161. "autoload": {
  6162. "psr-4": {
  6163. "Psr\\Clock\\": "src/"
  6164. }
  6165. },
  6166. "notification-url": "https://packagist.org/downloads/",
  6167. "license": [
  6168. "MIT"
  6169. ],
  6170. "authors": [
  6171. {
  6172. "name": "PHP-FIG",
  6173. "homepage": "https://www.php-fig.org/"
  6174. }
  6175. ],
  6176. "description": "Common interface for reading the clock.",
  6177. "homepage": "https://github.com/php-fig/clock",
  6178. "keywords": [
  6179. "clock",
  6180. "now",
  6181. "psr",
  6182. "psr-20",
  6183. "time"
  6184. ],
  6185. "support": {
  6186. "issues": "https://github.com/php-fig/clock/issues",
  6187. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6188. },
  6189. "time": "2022-11-25T14:36:26+00:00"
  6190. },
  6191. {
  6192. "name": "psr/container",
  6193. "version": "2.0.2",
  6194. "source": {
  6195. "type": "git",
  6196. "url": "https://github.com/php-fig/container.git",
  6197. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6198. },
  6199. "dist": {
  6200. "type": "zip",
  6201. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6202. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6203. "shasum": ""
  6204. },
  6205. "require": {
  6206. "php": ">=7.4.0"
  6207. },
  6208. "type": "library",
  6209. "extra": {
  6210. "branch-alias": {
  6211. "dev-master": "2.0.x-dev"
  6212. }
  6213. },
  6214. "autoload": {
  6215. "psr-4": {
  6216. "Psr\\Container\\": "src/"
  6217. }
  6218. },
  6219. "notification-url": "https://packagist.org/downloads/",
  6220. "license": [
  6221. "MIT"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "PHP-FIG",
  6226. "homepage": "https://www.php-fig.org/"
  6227. }
  6228. ],
  6229. "description": "Common Container Interface (PHP FIG PSR-11)",
  6230. "homepage": "https://github.com/php-fig/container",
  6231. "keywords": [
  6232. "PSR-11",
  6233. "container",
  6234. "container-interface",
  6235. "container-interop",
  6236. "psr"
  6237. ],
  6238. "support": {
  6239. "issues": "https://github.com/php-fig/container/issues",
  6240. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6241. },
  6242. "time": "2021-11-05T16:47:00+00:00"
  6243. },
  6244. {
  6245. "name": "psr/event-dispatcher",
  6246. "version": "1.0.0",
  6247. "source": {
  6248. "type": "git",
  6249. "url": "https://github.com/php-fig/event-dispatcher.git",
  6250. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6251. },
  6252. "dist": {
  6253. "type": "zip",
  6254. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6255. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6256. "shasum": ""
  6257. },
  6258. "require": {
  6259. "php": ">=7.2.0"
  6260. },
  6261. "type": "library",
  6262. "extra": {
  6263. "branch-alias": {
  6264. "dev-master": "1.0.x-dev"
  6265. }
  6266. },
  6267. "autoload": {
  6268. "psr-4": {
  6269. "Psr\\EventDispatcher\\": "src/"
  6270. }
  6271. },
  6272. "notification-url": "https://packagist.org/downloads/",
  6273. "license": [
  6274. "MIT"
  6275. ],
  6276. "authors": [
  6277. {
  6278. "name": "PHP-FIG",
  6279. "homepage": "http://www.php-fig.org/"
  6280. }
  6281. ],
  6282. "description": "Standard interfaces for event handling.",
  6283. "keywords": [
  6284. "events",
  6285. "psr",
  6286. "psr-14"
  6287. ],
  6288. "support": {
  6289. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6290. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6291. },
  6292. "time": "2019-01-08T18:20:26+00:00"
  6293. },
  6294. {
  6295. "name": "psr/http-client",
  6296. "version": "1.0.3",
  6297. "source": {
  6298. "type": "git",
  6299. "url": "https://github.com/php-fig/http-client.git",
  6300. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6301. },
  6302. "dist": {
  6303. "type": "zip",
  6304. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6305. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6306. "shasum": ""
  6307. },
  6308. "require": {
  6309. "php": "^7.0 || ^8.0",
  6310. "psr/http-message": "^1.0 || ^2.0"
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "branch-alias": {
  6315. "dev-master": "1.0.x-dev"
  6316. }
  6317. },
  6318. "autoload": {
  6319. "psr-4": {
  6320. "Psr\\Http\\Client\\": "src/"
  6321. }
  6322. },
  6323. "notification-url": "https://packagist.org/downloads/",
  6324. "license": [
  6325. "MIT"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "PHP-FIG",
  6330. "homepage": "https://www.php-fig.org/"
  6331. }
  6332. ],
  6333. "description": "Common interface for HTTP clients",
  6334. "homepage": "https://github.com/php-fig/http-client",
  6335. "keywords": [
  6336. "http",
  6337. "http-client",
  6338. "psr",
  6339. "psr-18"
  6340. ],
  6341. "support": {
  6342. "source": "https://github.com/php-fig/http-client"
  6343. },
  6344. "time": "2023-09-23T14:17:50+00:00"
  6345. },
  6346. {
  6347. "name": "psr/http-factory",
  6348. "version": "1.1.0",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/php-fig/http-factory.git",
  6352. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6357. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "php": ">=7.1",
  6362. "psr/http-message": "^1.0 || ^2.0"
  6363. },
  6364. "type": "library",
  6365. "extra": {
  6366. "branch-alias": {
  6367. "dev-master": "1.0.x-dev"
  6368. }
  6369. },
  6370. "autoload": {
  6371. "psr-4": {
  6372. "Psr\\Http\\Message\\": "src/"
  6373. }
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "MIT"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "PHP-FIG",
  6382. "homepage": "https://www.php-fig.org/"
  6383. }
  6384. ],
  6385. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6386. "keywords": [
  6387. "factory",
  6388. "http",
  6389. "message",
  6390. "psr",
  6391. "psr-17",
  6392. "psr-7",
  6393. "request",
  6394. "response"
  6395. ],
  6396. "support": {
  6397. "source": "https://github.com/php-fig/http-factory"
  6398. },
  6399. "time": "2024-04-15T12:06:14+00:00"
  6400. },
  6401. {
  6402. "name": "psr/http-message",
  6403. "version": "2.0",
  6404. "source": {
  6405. "type": "git",
  6406. "url": "https://github.com/php-fig/http-message.git",
  6407. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6408. },
  6409. "dist": {
  6410. "type": "zip",
  6411. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6412. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6413. "shasum": ""
  6414. },
  6415. "require": {
  6416. "php": "^7.2 || ^8.0"
  6417. },
  6418. "type": "library",
  6419. "extra": {
  6420. "branch-alias": {
  6421. "dev-master": "2.0.x-dev"
  6422. }
  6423. },
  6424. "autoload": {
  6425. "psr-4": {
  6426. "Psr\\Http\\Message\\": "src/"
  6427. }
  6428. },
  6429. "notification-url": "https://packagist.org/downloads/",
  6430. "license": [
  6431. "MIT"
  6432. ],
  6433. "authors": [
  6434. {
  6435. "name": "PHP-FIG",
  6436. "homepage": "https://www.php-fig.org/"
  6437. }
  6438. ],
  6439. "description": "Common interface for HTTP messages",
  6440. "homepage": "https://github.com/php-fig/http-message",
  6441. "keywords": [
  6442. "http",
  6443. "http-message",
  6444. "psr",
  6445. "psr-7",
  6446. "request",
  6447. "response"
  6448. ],
  6449. "support": {
  6450. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6451. },
  6452. "time": "2023-04-04T09:54:51+00:00"
  6453. },
  6454. {
  6455. "name": "psr/http-server-handler",
  6456. "version": "1.0.2",
  6457. "source": {
  6458. "type": "git",
  6459. "url": "https://github.com/php-fig/http-server-handler.git",
  6460. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  6461. },
  6462. "dist": {
  6463. "type": "zip",
  6464. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  6465. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  6466. "shasum": ""
  6467. },
  6468. "require": {
  6469. "php": ">=7.0",
  6470. "psr/http-message": "^1.0 || ^2.0"
  6471. },
  6472. "type": "library",
  6473. "extra": {
  6474. "branch-alias": {
  6475. "dev-master": "1.0.x-dev"
  6476. }
  6477. },
  6478. "autoload": {
  6479. "psr-4": {
  6480. "Psr\\Http\\Server\\": "src/"
  6481. }
  6482. },
  6483. "notification-url": "https://packagist.org/downloads/",
  6484. "license": [
  6485. "MIT"
  6486. ],
  6487. "authors": [
  6488. {
  6489. "name": "PHP-FIG",
  6490. "homepage": "https://www.php-fig.org/"
  6491. }
  6492. ],
  6493. "description": "Common interface for HTTP server-side request handler",
  6494. "keywords": [
  6495. "handler",
  6496. "http",
  6497. "http-interop",
  6498. "psr",
  6499. "psr-15",
  6500. "psr-7",
  6501. "request",
  6502. "response",
  6503. "server"
  6504. ],
  6505. "support": {
  6506. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  6507. },
  6508. "time": "2023-04-10T20:06:20+00:00"
  6509. },
  6510. {
  6511. "name": "psr/http-server-middleware",
  6512. "version": "1.0.2",
  6513. "source": {
  6514. "type": "git",
  6515. "url": "https://github.com/php-fig/http-server-middleware.git",
  6516. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  6517. },
  6518. "dist": {
  6519. "type": "zip",
  6520. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6521. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  6522. "shasum": ""
  6523. },
  6524. "require": {
  6525. "php": ">=7.0",
  6526. "psr/http-message": "^1.0 || ^2.0",
  6527. "psr/http-server-handler": "^1.0"
  6528. },
  6529. "type": "library",
  6530. "extra": {
  6531. "branch-alias": {
  6532. "dev-master": "1.0.x-dev"
  6533. }
  6534. },
  6535. "autoload": {
  6536. "psr-4": {
  6537. "Psr\\Http\\Server\\": "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 server-side middleware",
  6551. "keywords": [
  6552. "http",
  6553. "http-interop",
  6554. "middleware",
  6555. "psr",
  6556. "psr-15",
  6557. "psr-7",
  6558. "request",
  6559. "response"
  6560. ],
  6561. "support": {
  6562. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  6563. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  6564. },
  6565. "time": "2023-04-11T06:14:47+00:00"
  6566. },
  6567. {
  6568. "name": "psr/log",
  6569. "version": "3.0.2",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/php-fig/log.git",
  6573. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6578. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6579. "shasum": ""
  6580. },
  6581. "require": {
  6582. "php": ">=8.0.0"
  6583. },
  6584. "type": "library",
  6585. "extra": {
  6586. "branch-alias": {
  6587. "dev-master": "3.x-dev"
  6588. }
  6589. },
  6590. "autoload": {
  6591. "psr-4": {
  6592. "Psr\\Log\\": "src"
  6593. }
  6594. },
  6595. "notification-url": "https://packagist.org/downloads/",
  6596. "license": [
  6597. "MIT"
  6598. ],
  6599. "authors": [
  6600. {
  6601. "name": "PHP-FIG",
  6602. "homepage": "https://www.php-fig.org/"
  6603. }
  6604. ],
  6605. "description": "Common interface for logging libraries",
  6606. "homepage": "https://github.com/php-fig/log",
  6607. "keywords": [
  6608. "log",
  6609. "psr",
  6610. "psr-3"
  6611. ],
  6612. "support": {
  6613. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6614. },
  6615. "time": "2024-09-11T13:17:53+00:00"
  6616. },
  6617. {
  6618. "name": "psr/simple-cache",
  6619. "version": "3.0.0",
  6620. "source": {
  6621. "type": "git",
  6622. "url": "https://github.com/php-fig/simple-cache.git",
  6623. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6624. },
  6625. "dist": {
  6626. "type": "zip",
  6627. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6628. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6629. "shasum": ""
  6630. },
  6631. "require": {
  6632. "php": ">=8.0.0"
  6633. },
  6634. "type": "library",
  6635. "extra": {
  6636. "branch-alias": {
  6637. "dev-master": "3.0.x-dev"
  6638. }
  6639. },
  6640. "autoload": {
  6641. "psr-4": {
  6642. "Psr\\SimpleCache\\": "src/"
  6643. }
  6644. },
  6645. "notification-url": "https://packagist.org/downloads/",
  6646. "license": [
  6647. "MIT"
  6648. ],
  6649. "authors": [
  6650. {
  6651. "name": "PHP-FIG",
  6652. "homepage": "https://www.php-fig.org/"
  6653. }
  6654. ],
  6655. "description": "Common interfaces for simple caching",
  6656. "keywords": [
  6657. "cache",
  6658. "caching",
  6659. "psr",
  6660. "psr-16",
  6661. "simple-cache"
  6662. ],
  6663. "support": {
  6664. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6665. },
  6666. "time": "2021-10-29T13:26:27+00:00"
  6667. },
  6668. {
  6669. "name": "ralouphie/getallheaders",
  6670. "version": "3.0.3",
  6671. "source": {
  6672. "type": "git",
  6673. "url": "https://github.com/ralouphie/getallheaders.git",
  6674. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6675. },
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6679. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6680. "shasum": ""
  6681. },
  6682. "require": {
  6683. "php": ">=5.6"
  6684. },
  6685. "require-dev": {
  6686. "php-coveralls/php-coveralls": "^2.1",
  6687. "phpunit/phpunit": "^5 || ^6.5"
  6688. },
  6689. "type": "library",
  6690. "autoload": {
  6691. "files": [
  6692. "src/getallheaders.php"
  6693. ]
  6694. },
  6695. "notification-url": "https://packagist.org/downloads/",
  6696. "license": [
  6697. "MIT"
  6698. ],
  6699. "authors": [
  6700. {
  6701. "name": "Ralph Khattar",
  6702. "email": "ralph.khattar@gmail.com"
  6703. }
  6704. ],
  6705. "description": "A polyfill for getallheaders.",
  6706. "support": {
  6707. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6708. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6709. },
  6710. "time": "2019-03-08T08:55:37+00:00"
  6711. },
  6712. {
  6713. "name": "stella-maris/clock",
  6714. "version": "0.1.7",
  6715. "source": {
  6716. "type": "git",
  6717. "url": "https://github.com/stella-maris-solutions/clock.git",
  6718. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  6719. },
  6720. "dist": {
  6721. "type": "zip",
  6722. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6723. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  6724. "shasum": ""
  6725. },
  6726. "require": {
  6727. "php": "^7.0|^8.0",
  6728. "psr/clock": "^1.0"
  6729. },
  6730. "type": "library",
  6731. "autoload": {
  6732. "psr-4": {
  6733. "StellaMaris\\Clock\\": "src"
  6734. }
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Andreas Heigl",
  6743. "role": "Maintainer"
  6744. }
  6745. ],
  6746. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  6747. "homepage": "https://gitlab.com/stella-maris/clock",
  6748. "keywords": [
  6749. "clock",
  6750. "datetime",
  6751. "point in time",
  6752. "psr20"
  6753. ],
  6754. "support": {
  6755. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  6756. },
  6757. "time": "2022-11-25T16:15:06+00:00"
  6758. },
  6759. {
  6760. "name": "swow/psr7-plus",
  6761. "version": "v1.1.2",
  6762. "source": {
  6763. "type": "git",
  6764. "url": "https://github.com/swow/psr7-plus.git",
  6765. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  6766. },
  6767. "dist": {
  6768. "type": "zip",
  6769. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  6770. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  6771. "shasum": ""
  6772. },
  6773. "require": {
  6774. "php": ">=8.0",
  6775. "psr/http-client": "^1.0",
  6776. "psr/http-factory": "^1.0",
  6777. "psr/http-message": "^1.1|^2.0"
  6778. },
  6779. "type": "library",
  6780. "autoload": {
  6781. "psr-4": {
  6782. "Swow\\Psr7\\Message\\": "src/Message/"
  6783. }
  6784. },
  6785. "notification-url": "https://packagist.org/downloads/",
  6786. "license": [
  6787. "Apache-2.0"
  6788. ],
  6789. "authors": [
  6790. {
  6791. "name": "twose",
  6792. "email": "twosee@php.net"
  6793. }
  6794. ],
  6795. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  6796. "keywords": [
  6797. "http",
  6798. "psr17",
  6799. "psr7",
  6800. "swow",
  6801. "websocket"
  6802. ],
  6803. "support": {
  6804. "issues": "https://github.com/swow/swow",
  6805. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  6806. },
  6807. "time": "2023-06-15T09:18:11+00:00"
  6808. },
  6809. {
  6810. "name": "symfony/console",
  6811. "version": "v6.4.14",
  6812. "source": {
  6813. "type": "git",
  6814. "url": "https://github.com/symfony/console.git",
  6815. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  6816. },
  6817. "dist": {
  6818. "type": "zip",
  6819. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6820. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  6821. "shasum": ""
  6822. },
  6823. "require": {
  6824. "php": ">=8.1",
  6825. "symfony/deprecation-contracts": "^2.5|^3",
  6826. "symfony/polyfill-mbstring": "~1.0",
  6827. "symfony/service-contracts": "^2.5|^3",
  6828. "symfony/string": "^5.4|^6.0|^7.0"
  6829. },
  6830. "conflict": {
  6831. "symfony/dependency-injection": "<5.4",
  6832. "symfony/dotenv": "<5.4",
  6833. "symfony/event-dispatcher": "<5.4",
  6834. "symfony/lock": "<5.4",
  6835. "symfony/process": "<5.4"
  6836. },
  6837. "provide": {
  6838. "psr/log-implementation": "1.0|2.0|3.0"
  6839. },
  6840. "require-dev": {
  6841. "psr/log": "^1|^2|^3",
  6842. "symfony/config": "^5.4|^6.0|^7.0",
  6843. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6844. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  6845. "symfony/http-foundation": "^6.4|^7.0",
  6846. "symfony/http-kernel": "^6.4|^7.0",
  6847. "symfony/lock": "^5.4|^6.0|^7.0",
  6848. "symfony/messenger": "^5.4|^6.0|^7.0",
  6849. "symfony/process": "^5.4|^6.0|^7.0",
  6850. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6851. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  6852. },
  6853. "type": "library",
  6854. "autoload": {
  6855. "psr-4": {
  6856. "Symfony\\Component\\Console\\": ""
  6857. },
  6858. "exclude-from-classmap": [
  6859. "/Tests/"
  6860. ]
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Fabien Potencier",
  6869. "email": "fabien@symfony.com"
  6870. },
  6871. {
  6872. "name": "Symfony Community",
  6873. "homepage": "https://symfony.com/contributors"
  6874. }
  6875. ],
  6876. "description": "Eases the creation of beautiful and testable command line interfaces",
  6877. "homepage": "https://symfony.com",
  6878. "keywords": [
  6879. "cli",
  6880. "command-line",
  6881. "console",
  6882. "terminal"
  6883. ],
  6884. "support": {
  6885. "source": "https://github.com/symfony/console/tree/v6.4.14"
  6886. },
  6887. "funding": [
  6888. {
  6889. "url": "https://symfony.com/sponsor",
  6890. "type": "custom"
  6891. },
  6892. {
  6893. "url": "https://github.com/fabpot",
  6894. "type": "github"
  6895. },
  6896. {
  6897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6898. "type": "tidelift"
  6899. }
  6900. ],
  6901. "time": "2024-11-05T15:34:40+00:00"
  6902. },
  6903. {
  6904. "name": "symfony/deprecation-contracts",
  6905. "version": "v3.5.0",
  6906. "source": {
  6907. "type": "git",
  6908. "url": "https://github.com/symfony/deprecation-contracts.git",
  6909. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  6910. },
  6911. "dist": {
  6912. "type": "zip",
  6913. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6914. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  6915. "shasum": ""
  6916. },
  6917. "require": {
  6918. "php": ">=8.1"
  6919. },
  6920. "type": "library",
  6921. "extra": {
  6922. "branch-alias": {
  6923. "dev-main": "3.5-dev"
  6924. },
  6925. "thanks": {
  6926. "name": "symfony/contracts",
  6927. "url": "https://github.com/symfony/contracts"
  6928. }
  6929. },
  6930. "autoload": {
  6931. "files": [
  6932. "function.php"
  6933. ]
  6934. },
  6935. "notification-url": "https://packagist.org/downloads/",
  6936. "license": [
  6937. "MIT"
  6938. ],
  6939. "authors": [
  6940. {
  6941. "name": "Nicolas Grekas",
  6942. "email": "p@tchwork.com"
  6943. },
  6944. {
  6945. "name": "Symfony Community",
  6946. "homepage": "https://symfony.com/contributors"
  6947. }
  6948. ],
  6949. "description": "A generic function and convention to trigger deprecation notices",
  6950. "homepage": "https://symfony.com",
  6951. "support": {
  6952. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  6953. },
  6954. "funding": [
  6955. {
  6956. "url": "https://symfony.com/sponsor",
  6957. "type": "custom"
  6958. },
  6959. {
  6960. "url": "https://github.com/fabpot",
  6961. "type": "github"
  6962. },
  6963. {
  6964. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6965. "type": "tidelift"
  6966. }
  6967. ],
  6968. "time": "2024-04-18T09:32:20+00:00"
  6969. },
  6970. {
  6971. "name": "symfony/finder",
  6972. "version": "v6.4.13",
  6973. "source": {
  6974. "type": "git",
  6975. "url": "https://github.com/symfony/finder.git",
  6976. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  6977. },
  6978. "dist": {
  6979. "type": "zip",
  6980. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6981. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  6982. "shasum": ""
  6983. },
  6984. "require": {
  6985. "php": ">=8.1"
  6986. },
  6987. "require-dev": {
  6988. "symfony/filesystem": "^6.0|^7.0"
  6989. },
  6990. "type": "library",
  6991. "autoload": {
  6992. "psr-4": {
  6993. "Symfony\\Component\\Finder\\": ""
  6994. },
  6995. "exclude-from-classmap": [
  6996. "/Tests/"
  6997. ]
  6998. },
  6999. "notification-url": "https://packagist.org/downloads/",
  7000. "license": [
  7001. "MIT"
  7002. ],
  7003. "authors": [
  7004. {
  7005. "name": "Fabien Potencier",
  7006. "email": "fabien@symfony.com"
  7007. },
  7008. {
  7009. "name": "Symfony Community",
  7010. "homepage": "https://symfony.com/contributors"
  7011. }
  7012. ],
  7013. "description": "Finds files and directories via an intuitive fluent interface",
  7014. "homepage": "https://symfony.com",
  7015. "support": {
  7016. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  7017. },
  7018. "funding": [
  7019. {
  7020. "url": "https://symfony.com/sponsor",
  7021. "type": "custom"
  7022. },
  7023. {
  7024. "url": "https://github.com/fabpot",
  7025. "type": "github"
  7026. },
  7027. {
  7028. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7029. "type": "tidelift"
  7030. }
  7031. ],
  7032. "time": "2024-10-01T08:30:56+00:00"
  7033. },
  7034. {
  7035. "name": "symfony/polyfill-ctype",
  7036. "version": "v1.31.0",
  7037. "source": {
  7038. "type": "git",
  7039. "url": "https://github.com/symfony/polyfill-ctype.git",
  7040. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7041. },
  7042. "dist": {
  7043. "type": "zip",
  7044. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7045. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7046. "shasum": ""
  7047. },
  7048. "require": {
  7049. "php": ">=7.2"
  7050. },
  7051. "provide": {
  7052. "ext-ctype": "*"
  7053. },
  7054. "suggest": {
  7055. "ext-ctype": "For best performance"
  7056. },
  7057. "type": "library",
  7058. "extra": {
  7059. "thanks": {
  7060. "name": "symfony/polyfill",
  7061. "url": "https://github.com/symfony/polyfill"
  7062. }
  7063. },
  7064. "autoload": {
  7065. "files": [
  7066. "bootstrap.php"
  7067. ],
  7068. "psr-4": {
  7069. "Symfony\\Polyfill\\Ctype\\": ""
  7070. }
  7071. },
  7072. "notification-url": "https://packagist.org/downloads/",
  7073. "license": [
  7074. "MIT"
  7075. ],
  7076. "authors": [
  7077. {
  7078. "name": "Gert de Pagter",
  7079. "email": "BackEndTea@gmail.com"
  7080. },
  7081. {
  7082. "name": "Symfony Community",
  7083. "homepage": "https://symfony.com/contributors"
  7084. }
  7085. ],
  7086. "description": "Symfony polyfill for ctype functions",
  7087. "homepage": "https://symfony.com",
  7088. "keywords": [
  7089. "compatibility",
  7090. "ctype",
  7091. "polyfill",
  7092. "portable"
  7093. ],
  7094. "support": {
  7095. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7096. },
  7097. "funding": [
  7098. {
  7099. "url": "https://symfony.com/sponsor",
  7100. "type": "custom"
  7101. },
  7102. {
  7103. "url": "https://github.com/fabpot",
  7104. "type": "github"
  7105. },
  7106. {
  7107. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7108. "type": "tidelift"
  7109. }
  7110. ],
  7111. "time": "2024-09-09T11:45:10+00:00"
  7112. },
  7113. {
  7114. "name": "symfony/polyfill-intl-grapheme",
  7115. "version": "v1.31.0",
  7116. "source": {
  7117. "type": "git",
  7118. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7119. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7120. },
  7121. "dist": {
  7122. "type": "zip",
  7123. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7124. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7125. "shasum": ""
  7126. },
  7127. "require": {
  7128. "php": ">=7.2"
  7129. },
  7130. "suggest": {
  7131. "ext-intl": "For best performance"
  7132. },
  7133. "type": "library",
  7134. "extra": {
  7135. "thanks": {
  7136. "name": "symfony/polyfill",
  7137. "url": "https://github.com/symfony/polyfill"
  7138. }
  7139. },
  7140. "autoload": {
  7141. "files": [
  7142. "bootstrap.php"
  7143. ],
  7144. "psr-4": {
  7145. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7146. }
  7147. },
  7148. "notification-url": "https://packagist.org/downloads/",
  7149. "license": [
  7150. "MIT"
  7151. ],
  7152. "authors": [
  7153. {
  7154. "name": "Nicolas Grekas",
  7155. "email": "p@tchwork.com"
  7156. },
  7157. {
  7158. "name": "Symfony Community",
  7159. "homepage": "https://symfony.com/contributors"
  7160. }
  7161. ],
  7162. "description": "Symfony polyfill for intl's grapheme_* functions",
  7163. "homepage": "https://symfony.com",
  7164. "keywords": [
  7165. "compatibility",
  7166. "grapheme",
  7167. "intl",
  7168. "polyfill",
  7169. "portable",
  7170. "shim"
  7171. ],
  7172. "support": {
  7173. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7174. },
  7175. "funding": [
  7176. {
  7177. "url": "https://symfony.com/sponsor",
  7178. "type": "custom"
  7179. },
  7180. {
  7181. "url": "https://github.com/fabpot",
  7182. "type": "github"
  7183. },
  7184. {
  7185. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7186. "type": "tidelift"
  7187. }
  7188. ],
  7189. "time": "2024-09-09T11:45:10+00:00"
  7190. },
  7191. {
  7192. "name": "symfony/polyfill-intl-idn",
  7193. "version": "v1.31.0",
  7194. "source": {
  7195. "type": "git",
  7196. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7197. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7198. },
  7199. "dist": {
  7200. "type": "zip",
  7201. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7202. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7203. "shasum": ""
  7204. },
  7205. "require": {
  7206. "php": ">=7.2",
  7207. "symfony/polyfill-intl-normalizer": "^1.10"
  7208. },
  7209. "suggest": {
  7210. "ext-intl": "For best performance"
  7211. },
  7212. "type": "library",
  7213. "extra": {
  7214. "thanks": {
  7215. "name": "symfony/polyfill",
  7216. "url": "https://github.com/symfony/polyfill"
  7217. }
  7218. },
  7219. "autoload": {
  7220. "files": [
  7221. "bootstrap.php"
  7222. ],
  7223. "psr-4": {
  7224. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7225. }
  7226. },
  7227. "notification-url": "https://packagist.org/downloads/",
  7228. "license": [
  7229. "MIT"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Laurent Bassin",
  7234. "email": "laurent@bassin.info"
  7235. },
  7236. {
  7237. "name": "Trevor Rowbotham",
  7238. "email": "trevor.rowbotham@pm.me"
  7239. },
  7240. {
  7241. "name": "Symfony Community",
  7242. "homepage": "https://symfony.com/contributors"
  7243. }
  7244. ],
  7245. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7246. "homepage": "https://symfony.com",
  7247. "keywords": [
  7248. "compatibility",
  7249. "idn",
  7250. "intl",
  7251. "polyfill",
  7252. "portable",
  7253. "shim"
  7254. ],
  7255. "support": {
  7256. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7257. },
  7258. "funding": [
  7259. {
  7260. "url": "https://symfony.com/sponsor",
  7261. "type": "custom"
  7262. },
  7263. {
  7264. "url": "https://github.com/fabpot",
  7265. "type": "github"
  7266. },
  7267. {
  7268. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7269. "type": "tidelift"
  7270. }
  7271. ],
  7272. "time": "2024-09-09T11:45:10+00:00"
  7273. },
  7274. {
  7275. "name": "symfony/polyfill-intl-normalizer",
  7276. "version": "v1.31.0",
  7277. "source": {
  7278. "type": "git",
  7279. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7280. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7281. },
  7282. "dist": {
  7283. "type": "zip",
  7284. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7285. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7286. "shasum": ""
  7287. },
  7288. "require": {
  7289. "php": ">=7.2"
  7290. },
  7291. "suggest": {
  7292. "ext-intl": "For best performance"
  7293. },
  7294. "type": "library",
  7295. "extra": {
  7296. "thanks": {
  7297. "name": "symfony/polyfill",
  7298. "url": "https://github.com/symfony/polyfill"
  7299. }
  7300. },
  7301. "autoload": {
  7302. "files": [
  7303. "bootstrap.php"
  7304. ],
  7305. "psr-4": {
  7306. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7307. },
  7308. "classmap": [
  7309. "Resources/stubs"
  7310. ]
  7311. },
  7312. "notification-url": "https://packagist.org/downloads/",
  7313. "license": [
  7314. "MIT"
  7315. ],
  7316. "authors": [
  7317. {
  7318. "name": "Nicolas Grekas",
  7319. "email": "p@tchwork.com"
  7320. },
  7321. {
  7322. "name": "Symfony Community",
  7323. "homepage": "https://symfony.com/contributors"
  7324. }
  7325. ],
  7326. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7327. "homepage": "https://symfony.com",
  7328. "keywords": [
  7329. "compatibility",
  7330. "intl",
  7331. "normalizer",
  7332. "polyfill",
  7333. "portable",
  7334. "shim"
  7335. ],
  7336. "support": {
  7337. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7338. },
  7339. "funding": [
  7340. {
  7341. "url": "https://symfony.com/sponsor",
  7342. "type": "custom"
  7343. },
  7344. {
  7345. "url": "https://github.com/fabpot",
  7346. "type": "github"
  7347. },
  7348. {
  7349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7350. "type": "tidelift"
  7351. }
  7352. ],
  7353. "time": "2024-09-09T11:45:10+00:00"
  7354. },
  7355. {
  7356. "name": "symfony/polyfill-mbstring",
  7357. "version": "v1.31.0",
  7358. "source": {
  7359. "type": "git",
  7360. "url": "https://github.com/symfony/polyfill-mbstring.git",
  7361. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  7362. },
  7363. "dist": {
  7364. "type": "zip",
  7365. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7366. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  7367. "shasum": ""
  7368. },
  7369. "require": {
  7370. "php": ">=7.2"
  7371. },
  7372. "provide": {
  7373. "ext-mbstring": "*"
  7374. },
  7375. "suggest": {
  7376. "ext-mbstring": "For best performance"
  7377. },
  7378. "type": "library",
  7379. "extra": {
  7380. "thanks": {
  7381. "name": "symfony/polyfill",
  7382. "url": "https://github.com/symfony/polyfill"
  7383. }
  7384. },
  7385. "autoload": {
  7386. "files": [
  7387. "bootstrap.php"
  7388. ],
  7389. "psr-4": {
  7390. "Symfony\\Polyfill\\Mbstring\\": ""
  7391. }
  7392. },
  7393. "notification-url": "https://packagist.org/downloads/",
  7394. "license": [
  7395. "MIT"
  7396. ],
  7397. "authors": [
  7398. {
  7399. "name": "Nicolas Grekas",
  7400. "email": "p@tchwork.com"
  7401. },
  7402. {
  7403. "name": "Symfony Community",
  7404. "homepage": "https://symfony.com/contributors"
  7405. }
  7406. ],
  7407. "description": "Symfony polyfill for the Mbstring extension",
  7408. "homepage": "https://symfony.com",
  7409. "keywords": [
  7410. "compatibility",
  7411. "mbstring",
  7412. "polyfill",
  7413. "portable",
  7414. "shim"
  7415. ],
  7416. "support": {
  7417. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://symfony.com/sponsor",
  7422. "type": "custom"
  7423. },
  7424. {
  7425. "url": "https://github.com/fabpot",
  7426. "type": "github"
  7427. },
  7428. {
  7429. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7430. "type": "tidelift"
  7431. }
  7432. ],
  7433. "time": "2024-09-09T11:45:10+00:00"
  7434. },
  7435. {
  7436. "name": "symfony/polyfill-php80",
  7437. "version": "v1.31.0",
  7438. "source": {
  7439. "type": "git",
  7440. "url": "https://github.com/symfony/polyfill-php80.git",
  7441. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  7442. },
  7443. "dist": {
  7444. "type": "zip",
  7445. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7446. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  7447. "shasum": ""
  7448. },
  7449. "require": {
  7450. "php": ">=7.2"
  7451. },
  7452. "type": "library",
  7453. "extra": {
  7454. "thanks": {
  7455. "name": "symfony/polyfill",
  7456. "url": "https://github.com/symfony/polyfill"
  7457. }
  7458. },
  7459. "autoload": {
  7460. "files": [
  7461. "bootstrap.php"
  7462. ],
  7463. "psr-4": {
  7464. "Symfony\\Polyfill\\Php80\\": ""
  7465. },
  7466. "classmap": [
  7467. "Resources/stubs"
  7468. ]
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "MIT"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Ion Bazan",
  7477. "email": "ion.bazan@gmail.com"
  7478. },
  7479. {
  7480. "name": "Nicolas Grekas",
  7481. "email": "p@tchwork.com"
  7482. },
  7483. {
  7484. "name": "Symfony Community",
  7485. "homepage": "https://symfony.com/contributors"
  7486. }
  7487. ],
  7488. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7489. "homepage": "https://symfony.com",
  7490. "keywords": [
  7491. "compatibility",
  7492. "polyfill",
  7493. "portable",
  7494. "shim"
  7495. ],
  7496. "support": {
  7497. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  7498. },
  7499. "funding": [
  7500. {
  7501. "url": "https://symfony.com/sponsor",
  7502. "type": "custom"
  7503. },
  7504. {
  7505. "url": "https://github.com/fabpot",
  7506. "type": "github"
  7507. },
  7508. {
  7509. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7510. "type": "tidelift"
  7511. }
  7512. ],
  7513. "time": "2024-09-09T11:45:10+00:00"
  7514. },
  7515. {
  7516. "name": "symfony/service-contracts",
  7517. "version": "v3.5.0",
  7518. "source": {
  7519. "type": "git",
  7520. "url": "https://github.com/symfony/service-contracts.git",
  7521. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  7522. },
  7523. "dist": {
  7524. "type": "zip",
  7525. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7526. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  7527. "shasum": ""
  7528. },
  7529. "require": {
  7530. "php": ">=8.1",
  7531. "psr/container": "^1.1|^2.0",
  7532. "symfony/deprecation-contracts": "^2.5|^3"
  7533. },
  7534. "conflict": {
  7535. "ext-psr": "<1.1|>=2"
  7536. },
  7537. "type": "library",
  7538. "extra": {
  7539. "branch-alias": {
  7540. "dev-main": "3.5-dev"
  7541. },
  7542. "thanks": {
  7543. "name": "symfony/contracts",
  7544. "url": "https://github.com/symfony/contracts"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Symfony\\Contracts\\Service\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Test/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Nicolas Grekas",
  7562. "email": "p@tchwork.com"
  7563. },
  7564. {
  7565. "name": "Symfony Community",
  7566. "homepage": "https://symfony.com/contributors"
  7567. }
  7568. ],
  7569. "description": "Generic abstractions related to writing services",
  7570. "homepage": "https://symfony.com",
  7571. "keywords": [
  7572. "abstractions",
  7573. "contracts",
  7574. "decoupling",
  7575. "interfaces",
  7576. "interoperability",
  7577. "standards"
  7578. ],
  7579. "support": {
  7580. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  7581. },
  7582. "funding": [
  7583. {
  7584. "url": "https://symfony.com/sponsor",
  7585. "type": "custom"
  7586. },
  7587. {
  7588. "url": "https://github.com/fabpot",
  7589. "type": "github"
  7590. },
  7591. {
  7592. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7593. "type": "tidelift"
  7594. }
  7595. ],
  7596. "time": "2024-04-18T09:32:20+00:00"
  7597. },
  7598. {
  7599. "name": "symfony/string",
  7600. "version": "v6.4.13",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://github.com/symfony/string.git",
  7604. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7609. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  7610. "shasum": ""
  7611. },
  7612. "require": {
  7613. "php": ">=8.1",
  7614. "symfony/polyfill-ctype": "~1.8",
  7615. "symfony/polyfill-intl-grapheme": "~1.0",
  7616. "symfony/polyfill-intl-normalizer": "~1.0",
  7617. "symfony/polyfill-mbstring": "~1.0"
  7618. },
  7619. "conflict": {
  7620. "symfony/translation-contracts": "<2.5"
  7621. },
  7622. "require-dev": {
  7623. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7624. "symfony/http-client": "^5.4|^6.0|^7.0",
  7625. "symfony/intl": "^6.2|^7.0",
  7626. "symfony/translation-contracts": "^2.5|^3.0",
  7627. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7628. },
  7629. "type": "library",
  7630. "autoload": {
  7631. "files": [
  7632. "Resources/functions.php"
  7633. ],
  7634. "psr-4": {
  7635. "Symfony\\Component\\String\\": ""
  7636. },
  7637. "exclude-from-classmap": [
  7638. "/Tests/"
  7639. ]
  7640. },
  7641. "notification-url": "https://packagist.org/downloads/",
  7642. "license": [
  7643. "MIT"
  7644. ],
  7645. "authors": [
  7646. {
  7647. "name": "Nicolas Grekas",
  7648. "email": "p@tchwork.com"
  7649. },
  7650. {
  7651. "name": "Symfony Community",
  7652. "homepage": "https://symfony.com/contributors"
  7653. }
  7654. ],
  7655. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7656. "homepage": "https://symfony.com",
  7657. "keywords": [
  7658. "grapheme",
  7659. "i18n",
  7660. "string",
  7661. "unicode",
  7662. "utf-8",
  7663. "utf8"
  7664. ],
  7665. "support": {
  7666. "source": "https://github.com/symfony/string/tree/v6.4.13"
  7667. },
  7668. "funding": [
  7669. {
  7670. "url": "https://symfony.com/sponsor",
  7671. "type": "custom"
  7672. },
  7673. {
  7674. "url": "https://github.com/fabpot",
  7675. "type": "github"
  7676. },
  7677. {
  7678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7679. "type": "tidelift"
  7680. }
  7681. ],
  7682. "time": "2024-09-25T14:18:03+00:00"
  7683. },
  7684. {
  7685. "name": "symfony/translation",
  7686. "version": "v6.4.13",
  7687. "source": {
  7688. "type": "git",
  7689. "url": "https://github.com/symfony/translation.git",
  7690. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  7691. },
  7692. "dist": {
  7693. "type": "zip",
  7694. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7695. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  7696. "shasum": ""
  7697. },
  7698. "require": {
  7699. "php": ">=8.1",
  7700. "symfony/deprecation-contracts": "^2.5|^3",
  7701. "symfony/polyfill-mbstring": "~1.0",
  7702. "symfony/translation-contracts": "^2.5|^3.0"
  7703. },
  7704. "conflict": {
  7705. "symfony/config": "<5.4",
  7706. "symfony/console": "<5.4",
  7707. "symfony/dependency-injection": "<5.4",
  7708. "symfony/http-client-contracts": "<2.5",
  7709. "symfony/http-kernel": "<5.4",
  7710. "symfony/service-contracts": "<2.5",
  7711. "symfony/twig-bundle": "<5.4",
  7712. "symfony/yaml": "<5.4"
  7713. },
  7714. "provide": {
  7715. "symfony/translation-implementation": "2.3|3.0"
  7716. },
  7717. "require-dev": {
  7718. "nikic/php-parser": "^4.18|^5.0",
  7719. "psr/log": "^1|^2|^3",
  7720. "symfony/config": "^5.4|^6.0|^7.0",
  7721. "symfony/console": "^5.4|^6.0|^7.0",
  7722. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7723. "symfony/finder": "^5.4|^6.0|^7.0",
  7724. "symfony/http-client-contracts": "^2.5|^3.0",
  7725. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7726. "symfony/intl": "^5.4|^6.0|^7.0",
  7727. "symfony/polyfill-intl-icu": "^1.21",
  7728. "symfony/routing": "^5.4|^6.0|^7.0",
  7729. "symfony/service-contracts": "^2.5|^3",
  7730. "symfony/yaml": "^5.4|^6.0|^7.0"
  7731. },
  7732. "type": "library",
  7733. "autoload": {
  7734. "files": [
  7735. "Resources/functions.php"
  7736. ],
  7737. "psr-4": {
  7738. "Symfony\\Component\\Translation\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Fabien Potencier",
  7751. "email": "fabien@symfony.com"
  7752. },
  7753. {
  7754. "name": "Symfony Community",
  7755. "homepage": "https://symfony.com/contributors"
  7756. }
  7757. ],
  7758. "description": "Provides tools to internationalize your application",
  7759. "homepage": "https://symfony.com",
  7760. "support": {
  7761. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  7762. },
  7763. "funding": [
  7764. {
  7765. "url": "https://symfony.com/sponsor",
  7766. "type": "custom"
  7767. },
  7768. {
  7769. "url": "https://github.com/fabpot",
  7770. "type": "github"
  7771. },
  7772. {
  7773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7774. "type": "tidelift"
  7775. }
  7776. ],
  7777. "time": "2024-09-27T18:14:25+00:00"
  7778. },
  7779. {
  7780. "name": "symfony/translation-contracts",
  7781. "version": "v3.5.0",
  7782. "source": {
  7783. "type": "git",
  7784. "url": "https://github.com/symfony/translation-contracts.git",
  7785. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  7786. },
  7787. "dist": {
  7788. "type": "zip",
  7789. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7790. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  7791. "shasum": ""
  7792. },
  7793. "require": {
  7794. "php": ">=8.1"
  7795. },
  7796. "type": "library",
  7797. "extra": {
  7798. "branch-alias": {
  7799. "dev-main": "3.5-dev"
  7800. },
  7801. "thanks": {
  7802. "name": "symfony/contracts",
  7803. "url": "https://github.com/symfony/contracts"
  7804. }
  7805. },
  7806. "autoload": {
  7807. "psr-4": {
  7808. "Symfony\\Contracts\\Translation\\": ""
  7809. },
  7810. "exclude-from-classmap": [
  7811. "/Test/"
  7812. ]
  7813. },
  7814. "notification-url": "https://packagist.org/downloads/",
  7815. "license": [
  7816. "MIT"
  7817. ],
  7818. "authors": [
  7819. {
  7820. "name": "Nicolas Grekas",
  7821. "email": "p@tchwork.com"
  7822. },
  7823. {
  7824. "name": "Symfony Community",
  7825. "homepage": "https://symfony.com/contributors"
  7826. }
  7827. ],
  7828. "description": "Generic abstractions related to translation",
  7829. "homepage": "https://symfony.com",
  7830. "keywords": [
  7831. "abstractions",
  7832. "contracts",
  7833. "decoupling",
  7834. "interfaces",
  7835. "interoperability",
  7836. "standards"
  7837. ],
  7838. "support": {
  7839. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  7840. },
  7841. "funding": [
  7842. {
  7843. "url": "https://symfony.com/sponsor",
  7844. "type": "custom"
  7845. },
  7846. {
  7847. "url": "https://github.com/fabpot",
  7848. "type": "github"
  7849. },
  7850. {
  7851. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7852. "type": "tidelift"
  7853. }
  7854. ],
  7855. "time": "2024-04-18T09:32:20+00:00"
  7856. },
  7857. {
  7858. "name": "vlucas/phpdotenv",
  7859. "version": "v5.6.1",
  7860. "source": {
  7861. "type": "git",
  7862. "url": "https://github.com/vlucas/phpdotenv.git",
  7863. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  7864. },
  7865. "dist": {
  7866. "type": "zip",
  7867. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7868. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  7869. "shasum": ""
  7870. },
  7871. "require": {
  7872. "ext-pcre": "*",
  7873. "graham-campbell/result-type": "^1.1.3",
  7874. "php": "^7.2.5 || ^8.0",
  7875. "phpoption/phpoption": "^1.9.3",
  7876. "symfony/polyfill-ctype": "^1.24",
  7877. "symfony/polyfill-mbstring": "^1.24",
  7878. "symfony/polyfill-php80": "^1.24"
  7879. },
  7880. "require-dev": {
  7881. "bamarni/composer-bin-plugin": "^1.8.2",
  7882. "ext-filter": "*",
  7883. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7884. },
  7885. "suggest": {
  7886. "ext-filter": "Required to use the boolean validator."
  7887. },
  7888. "type": "library",
  7889. "extra": {
  7890. "bamarni-bin": {
  7891. "bin-links": true,
  7892. "forward-command": false
  7893. },
  7894. "branch-alias": {
  7895. "dev-master": "5.6-dev"
  7896. }
  7897. },
  7898. "autoload": {
  7899. "psr-4": {
  7900. "Dotenv\\": "src/"
  7901. }
  7902. },
  7903. "notification-url": "https://packagist.org/downloads/",
  7904. "license": [
  7905. "BSD-3-Clause"
  7906. ],
  7907. "authors": [
  7908. {
  7909. "name": "Graham Campbell",
  7910. "email": "hello@gjcampbell.co.uk",
  7911. "homepage": "https://github.com/GrahamCampbell"
  7912. },
  7913. {
  7914. "name": "Vance Lucas",
  7915. "email": "vance@vancelucas.com",
  7916. "homepage": "https://github.com/vlucas"
  7917. }
  7918. ],
  7919. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7920. "keywords": [
  7921. "dotenv",
  7922. "env",
  7923. "environment"
  7924. ],
  7925. "support": {
  7926. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7927. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  7928. },
  7929. "funding": [
  7930. {
  7931. "url": "https://github.com/GrahamCampbell",
  7932. "type": "github"
  7933. },
  7934. {
  7935. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7936. "type": "tidelift"
  7937. }
  7938. ],
  7939. "time": "2024-07-20T21:52:34+00:00"
  7940. }
  7941. ],
  7942. "packages-dev": [
  7943. {
  7944. "name": "clue/ndjson-react",
  7945. "version": "v1.3.0",
  7946. "source": {
  7947. "type": "git",
  7948. "url": "https://github.com/clue/reactphp-ndjson.git",
  7949. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  7950. },
  7951. "dist": {
  7952. "type": "zip",
  7953. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  7954. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  7955. "shasum": ""
  7956. },
  7957. "require": {
  7958. "php": ">=5.3",
  7959. "react/stream": "^1.2"
  7960. },
  7961. "require-dev": {
  7962. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  7963. "react/event-loop": "^1.2"
  7964. },
  7965. "type": "library",
  7966. "autoload": {
  7967. "psr-4": {
  7968. "Clue\\React\\NDJson\\": "src/"
  7969. }
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Christian Lück",
  7978. "email": "christian@clue.engineering"
  7979. }
  7980. ],
  7981. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  7982. "homepage": "https://github.com/clue/reactphp-ndjson",
  7983. "keywords": [
  7984. "NDJSON",
  7985. "json",
  7986. "jsonlines",
  7987. "newline",
  7988. "reactphp",
  7989. "streaming"
  7990. ],
  7991. "support": {
  7992. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  7993. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  7994. },
  7995. "funding": [
  7996. {
  7997. "url": "https://clue.engineering/support",
  7998. "type": "custom"
  7999. },
  8000. {
  8001. "url": "https://github.com/clue",
  8002. "type": "github"
  8003. }
  8004. ],
  8005. "time": "2022-12-23T10:58:28+00:00"
  8006. },
  8007. {
  8008. "name": "composer/pcre",
  8009. "version": "3.3.1",
  8010. "source": {
  8011. "type": "git",
  8012. "url": "https://github.com/composer/pcre.git",
  8013. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  8014. },
  8015. "dist": {
  8016. "type": "zip",
  8017. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8018. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  8019. "shasum": ""
  8020. },
  8021. "require": {
  8022. "php": "^7.4 || ^8.0"
  8023. },
  8024. "conflict": {
  8025. "phpstan/phpstan": "<1.11.10"
  8026. },
  8027. "require-dev": {
  8028. "phpstan/phpstan": "^1.11.10",
  8029. "phpstan/phpstan-strict-rules": "^1.1",
  8030. "phpunit/phpunit": "^8 || ^9"
  8031. },
  8032. "type": "library",
  8033. "extra": {
  8034. "branch-alias": {
  8035. "dev-main": "3.x-dev"
  8036. },
  8037. "phpstan": {
  8038. "includes": [
  8039. "extension.neon"
  8040. ]
  8041. }
  8042. },
  8043. "autoload": {
  8044. "psr-4": {
  8045. "Composer\\Pcre\\": "src"
  8046. }
  8047. },
  8048. "notification-url": "https://packagist.org/downloads/",
  8049. "license": [
  8050. "MIT"
  8051. ],
  8052. "authors": [
  8053. {
  8054. "name": "Jordi Boggiano",
  8055. "email": "j.boggiano@seld.be",
  8056. "homepage": "http://seld.be"
  8057. }
  8058. ],
  8059. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  8060. "keywords": [
  8061. "PCRE",
  8062. "preg",
  8063. "regex",
  8064. "regular expression"
  8065. ],
  8066. "support": {
  8067. "issues": "https://github.com/composer/pcre/issues",
  8068. "source": "https://github.com/composer/pcre/tree/3.3.1"
  8069. },
  8070. "funding": [
  8071. {
  8072. "url": "https://packagist.com",
  8073. "type": "custom"
  8074. },
  8075. {
  8076. "url": "https://github.com/composer",
  8077. "type": "github"
  8078. },
  8079. {
  8080. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8081. "type": "tidelift"
  8082. }
  8083. ],
  8084. "time": "2024-08-27T18:44:43+00:00"
  8085. },
  8086. {
  8087. "name": "composer/semver",
  8088. "version": "3.4.3",
  8089. "source": {
  8090. "type": "git",
  8091. "url": "https://github.com/composer/semver.git",
  8092. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  8093. },
  8094. "dist": {
  8095. "type": "zip",
  8096. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8097. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  8098. "shasum": ""
  8099. },
  8100. "require": {
  8101. "php": "^5.3.2 || ^7.0 || ^8.0"
  8102. },
  8103. "require-dev": {
  8104. "phpstan/phpstan": "^1.11",
  8105. "symfony/phpunit-bridge": "^3 || ^7"
  8106. },
  8107. "type": "library",
  8108. "extra": {
  8109. "branch-alias": {
  8110. "dev-main": "3.x-dev"
  8111. }
  8112. },
  8113. "autoload": {
  8114. "psr-4": {
  8115. "Composer\\Semver\\": "src"
  8116. }
  8117. },
  8118. "notification-url": "https://packagist.org/downloads/",
  8119. "license": [
  8120. "MIT"
  8121. ],
  8122. "authors": [
  8123. {
  8124. "name": "Nils Adermann",
  8125. "email": "naderman@naderman.de",
  8126. "homepage": "http://www.naderman.de"
  8127. },
  8128. {
  8129. "name": "Jordi Boggiano",
  8130. "email": "j.boggiano@seld.be",
  8131. "homepage": "http://seld.be"
  8132. },
  8133. {
  8134. "name": "Rob Bast",
  8135. "email": "rob.bast@gmail.com",
  8136. "homepage": "http://robbast.nl"
  8137. }
  8138. ],
  8139. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  8140. "keywords": [
  8141. "semantic",
  8142. "semver",
  8143. "validation",
  8144. "versioning"
  8145. ],
  8146. "support": {
  8147. "irc": "ircs://irc.libera.chat:6697/composer",
  8148. "issues": "https://github.com/composer/semver/issues",
  8149. "source": "https://github.com/composer/semver/tree/3.4.3"
  8150. },
  8151. "funding": [
  8152. {
  8153. "url": "https://packagist.com",
  8154. "type": "custom"
  8155. },
  8156. {
  8157. "url": "https://github.com/composer",
  8158. "type": "github"
  8159. },
  8160. {
  8161. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8162. "type": "tidelift"
  8163. }
  8164. ],
  8165. "time": "2024-09-19T14:15:21+00:00"
  8166. },
  8167. {
  8168. "name": "composer/xdebug-handler",
  8169. "version": "3.0.5",
  8170. "source": {
  8171. "type": "git",
  8172. "url": "https://github.com/composer/xdebug-handler.git",
  8173. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  8174. },
  8175. "dist": {
  8176. "type": "zip",
  8177. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  8178. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  8179. "shasum": ""
  8180. },
  8181. "require": {
  8182. "composer/pcre": "^1 || ^2 || ^3",
  8183. "php": "^7.2.5 || ^8.0",
  8184. "psr/log": "^1 || ^2 || ^3"
  8185. },
  8186. "require-dev": {
  8187. "phpstan/phpstan": "^1.0",
  8188. "phpstan/phpstan-strict-rules": "^1.1",
  8189. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  8190. },
  8191. "type": "library",
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Composer\\XdebugHandler\\": "src"
  8195. }
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "John Stevenson",
  8204. "email": "john-stevenson@blueyonder.co.uk"
  8205. }
  8206. ],
  8207. "description": "Restarts a process without Xdebug.",
  8208. "keywords": [
  8209. "Xdebug",
  8210. "performance"
  8211. ],
  8212. "support": {
  8213. "irc": "ircs://irc.libera.chat:6697/composer",
  8214. "issues": "https://github.com/composer/xdebug-handler/issues",
  8215. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://packagist.com",
  8220. "type": "custom"
  8221. },
  8222. {
  8223. "url": "https://github.com/composer",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2024-05-06T16:37:16+00:00"
  8232. },
  8233. {
  8234. "name": "evenement/evenement",
  8235. "version": "v3.0.2",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/igorw/evenement.git",
  8239. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8244. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=7.0"
  8249. },
  8250. "require-dev": {
  8251. "phpunit/phpunit": "^9 || ^6"
  8252. },
  8253. "type": "library",
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Evenement\\": "src/"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "Igor Wiedler",
  8266. "email": "igor@wiedler.ch"
  8267. }
  8268. ],
  8269. "description": "Événement is a very simple event dispatching library for PHP",
  8270. "keywords": [
  8271. "event-dispatcher",
  8272. "event-emitter"
  8273. ],
  8274. "support": {
  8275. "issues": "https://github.com/igorw/evenement/issues",
  8276. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  8277. },
  8278. "time": "2023-08-08T05:53:35+00:00"
  8279. },
  8280. {
  8281. "name": "fidry/cpu-core-counter",
  8282. "version": "1.2.0",
  8283. "source": {
  8284. "type": "git",
  8285. "url": "https://github.com/theofidry/cpu-core-counter.git",
  8286. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  8287. },
  8288. "dist": {
  8289. "type": "zip",
  8290. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  8291. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  8292. "shasum": ""
  8293. },
  8294. "require": {
  8295. "php": "^7.2 || ^8.0"
  8296. },
  8297. "require-dev": {
  8298. "fidry/makefile": "^0.2.0",
  8299. "fidry/php-cs-fixer-config": "^1.1.2",
  8300. "phpstan/extension-installer": "^1.2.0",
  8301. "phpstan/phpstan": "^1.9.2",
  8302. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  8303. "phpstan/phpstan-phpunit": "^1.2.2",
  8304. "phpstan/phpstan-strict-rules": "^1.4.4",
  8305. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  8306. "webmozarts/strict-phpunit": "^7.5"
  8307. },
  8308. "type": "library",
  8309. "autoload": {
  8310. "psr-4": {
  8311. "Fidry\\CpuCoreCounter\\": "src/"
  8312. }
  8313. },
  8314. "notification-url": "https://packagist.org/downloads/",
  8315. "license": [
  8316. "MIT"
  8317. ],
  8318. "authors": [
  8319. {
  8320. "name": "Théo FIDRY",
  8321. "email": "theo.fidry@gmail.com"
  8322. }
  8323. ],
  8324. "description": "Tiny utility to get the number of CPU cores.",
  8325. "keywords": [
  8326. "CPU",
  8327. "core"
  8328. ],
  8329. "support": {
  8330. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  8331. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  8332. },
  8333. "funding": [
  8334. {
  8335. "url": "https://github.com/theofidry",
  8336. "type": "github"
  8337. }
  8338. ],
  8339. "time": "2024-08-06T10:04:20+00:00"
  8340. },
  8341. {
  8342. "name": "friendsofphp/php-cs-fixer",
  8343. "version": "v3.64.0",
  8344. "source": {
  8345. "type": "git",
  8346. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  8347. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  8348. },
  8349. "dist": {
  8350. "type": "zip",
  8351. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  8352. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  8353. "shasum": ""
  8354. },
  8355. "require": {
  8356. "clue/ndjson-react": "^1.0",
  8357. "composer/semver": "^3.4",
  8358. "composer/xdebug-handler": "^3.0.3",
  8359. "ext-filter": "*",
  8360. "ext-json": "*",
  8361. "ext-tokenizer": "*",
  8362. "fidry/cpu-core-counter": "^1.0",
  8363. "php": "^7.4 || ^8.0",
  8364. "react/child-process": "^0.6.5",
  8365. "react/event-loop": "^1.0",
  8366. "react/promise": "^2.0 || ^3.0",
  8367. "react/socket": "^1.0",
  8368. "react/stream": "^1.0",
  8369. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  8370. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  8371. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  8372. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  8373. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  8374. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  8375. "symfony/polyfill-mbstring": "^1.28",
  8376. "symfony/polyfill-php80": "^1.28",
  8377. "symfony/polyfill-php81": "^1.28",
  8378. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  8379. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  8380. },
  8381. "require-dev": {
  8382. "facile-it/paraunit": "^1.3 || ^2.3",
  8383. "infection/infection": "^0.29.5",
  8384. "justinrainbow/json-schema": "^5.2",
  8385. "keradus/cli-executor": "^2.1",
  8386. "mikey179/vfsstream": "^1.6.11",
  8387. "php-coveralls/php-coveralls": "^2.7",
  8388. "php-cs-fixer/accessible-object": "^1.1",
  8389. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  8390. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  8391. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  8392. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  8393. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  8394. },
  8395. "suggest": {
  8396. "ext-dom": "For handling output formats in XML",
  8397. "ext-mbstring": "For handling non-UTF8 characters."
  8398. },
  8399. "bin": [
  8400. "php-cs-fixer"
  8401. ],
  8402. "type": "application",
  8403. "autoload": {
  8404. "psr-4": {
  8405. "PhpCsFixer\\": "src/"
  8406. },
  8407. "exclude-from-classmap": [
  8408. "src/Fixer/Internal/*"
  8409. ]
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Fabien Potencier",
  8418. "email": "fabien@symfony.com"
  8419. },
  8420. {
  8421. "name": "Dariusz Rumiński",
  8422. "email": "dariusz.ruminski@gmail.com"
  8423. }
  8424. ],
  8425. "description": "A tool to automatically fix PHP code style",
  8426. "keywords": [
  8427. "Static code analysis",
  8428. "fixer",
  8429. "standards",
  8430. "static analysis"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  8434. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://github.com/keradus",
  8439. "type": "github"
  8440. }
  8441. ],
  8442. "time": "2024-08-30T23:09:38+00:00"
  8443. },
  8444. {
  8445. "name": "hamcrest/hamcrest-php",
  8446. "version": "v2.0.1",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8450. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8455. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8456. "shasum": ""
  8457. },
  8458. "require": {
  8459. "php": "^5.3|^7.0|^8.0"
  8460. },
  8461. "replace": {
  8462. "cordoval/hamcrest-php": "*",
  8463. "davedevelopment/hamcrest-php": "*",
  8464. "kodova/hamcrest-php": "*"
  8465. },
  8466. "require-dev": {
  8467. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8468. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8469. },
  8470. "type": "library",
  8471. "extra": {
  8472. "branch-alias": {
  8473. "dev-master": "2.1-dev"
  8474. }
  8475. },
  8476. "autoload": {
  8477. "classmap": [
  8478. "hamcrest"
  8479. ]
  8480. },
  8481. "notification-url": "https://packagist.org/downloads/",
  8482. "license": [
  8483. "BSD-3-Clause"
  8484. ],
  8485. "description": "This is the PHP port of Hamcrest Matchers",
  8486. "keywords": [
  8487. "test"
  8488. ],
  8489. "support": {
  8490. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8491. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8492. },
  8493. "time": "2020-07-09T08:09:16+00:00"
  8494. },
  8495. {
  8496. "name": "hyperf/devtool",
  8497. "version": "v3.1.42",
  8498. "source": {
  8499. "type": "git",
  8500. "url": "https://github.com/hyperf/devtool.git",
  8501. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  8502. },
  8503. "dist": {
  8504. "type": "zip",
  8505. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8506. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  8507. "shasum": ""
  8508. },
  8509. "require": {
  8510. "hyperf/code-parser": "~3.1.0",
  8511. "hyperf/command": "~3.1.0",
  8512. "hyperf/contract": "~3.1.0",
  8513. "hyperf/di": "~3.1.0",
  8514. "hyperf/support": "~3.1.0",
  8515. "hyperf/utils": "~3.1.0",
  8516. "php": ">=8.1"
  8517. },
  8518. "type": "library",
  8519. "extra": {
  8520. "branch-alias": {
  8521. "dev-master": "3.1-dev"
  8522. },
  8523. "hyperf": {
  8524. "config": "Hyperf\\Devtool\\ConfigProvider"
  8525. }
  8526. },
  8527. "autoload": {
  8528. "psr-4": {
  8529. "Hyperf\\Devtool\\": "src/"
  8530. }
  8531. },
  8532. "notification-url": "https://packagist.org/downloads/",
  8533. "license": [
  8534. "MIT"
  8535. ],
  8536. "description": "A Devtool for Hyperf.",
  8537. "homepage": "https://hyperf.io",
  8538. "keywords": [
  8539. "dev",
  8540. "devtool",
  8541. "hyperf",
  8542. "php",
  8543. "swoole"
  8544. ],
  8545. "support": {
  8546. "docs": "https://hyperf.wiki",
  8547. "issues": "https://github.com/hyperf/hyperf/issues",
  8548. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  8549. "source": "https://github.com/hyperf/hyperf"
  8550. },
  8551. "funding": [
  8552. {
  8553. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8554. "type": "custom"
  8555. },
  8556. {
  8557. "url": "https://opencollective.com/hyperf",
  8558. "type": "open_collective"
  8559. }
  8560. ],
  8561. "time": "2024-09-25T02:54:12+00:00"
  8562. },
  8563. {
  8564. "name": "hyperf/testing",
  8565. "version": "v3.1.44",
  8566. "source": {
  8567. "type": "git",
  8568. "url": "https://github.com/hyperf/testing.git",
  8569. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  8570. },
  8571. "dist": {
  8572. "type": "zip",
  8573. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8574. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  8575. "shasum": ""
  8576. },
  8577. "require": {
  8578. "hyperf/codec": "~3.1.0",
  8579. "hyperf/collection": "~3.1.0",
  8580. "hyperf/contract": "~3.1.0",
  8581. "hyperf/coroutine": "~3.1.0",
  8582. "hyperf/http-message": "~3.1.0",
  8583. "hyperf/http-server": "~3.1.0",
  8584. "hyperf/support": "~3.1.0",
  8585. "hyperf/utils": "~3.1.0",
  8586. "php": ">=8.1",
  8587. "phpunit/phpunit": "^10.0",
  8588. "psr/container": "^1.0 || ^2.0",
  8589. "symfony/http-foundation": "^5.4 || ^6.0"
  8590. },
  8591. "suggest": {
  8592. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  8593. },
  8594. "bin": [
  8595. "co-phpunit"
  8596. ],
  8597. "type": "library",
  8598. "extra": {
  8599. "branch-alias": {
  8600. "dev-master": "3.1-dev"
  8601. }
  8602. },
  8603. "autoload": {
  8604. "psr-4": {
  8605. "Hyperf\\Testing\\": "src/"
  8606. }
  8607. },
  8608. "notification-url": "https://packagist.org/downloads/",
  8609. "license": [
  8610. "MIT"
  8611. ],
  8612. "description": "Testing for hyperf",
  8613. "keywords": [
  8614. "dev",
  8615. "php",
  8616. "swoole",
  8617. "testing"
  8618. ],
  8619. "support": {
  8620. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  8621. },
  8622. "funding": [
  8623. {
  8624. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8625. "type": "custom"
  8626. },
  8627. {
  8628. "url": "https://opencollective.com/hyperf",
  8629. "type": "open_collective"
  8630. }
  8631. ],
  8632. "time": "2024-10-23T10:24:12+00:00"
  8633. },
  8634. {
  8635. "name": "hyperf/watcher",
  8636. "version": "v3.1.43",
  8637. "source": {
  8638. "type": "git",
  8639. "url": "https://github.com/hyperf/watcher.git",
  8640. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  8641. },
  8642. "dist": {
  8643. "type": "zip",
  8644. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8645. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  8646. "shasum": ""
  8647. },
  8648. "require": {
  8649. "ext-posix": "*",
  8650. "hyperf/codec": "~3.1.0",
  8651. "hyperf/command": "~3.1.0",
  8652. "hyperf/di": "~3.1.0",
  8653. "hyperf/framework": "~3.1.0",
  8654. "hyperf/support": "~3.1.0",
  8655. "php": ">=8.1"
  8656. },
  8657. "type": "library",
  8658. "extra": {
  8659. "branch-alias": {
  8660. "dev-master": "3.1-dev"
  8661. },
  8662. "hyperf": {
  8663. "config": "Hyperf\\Watcher\\ConfigProvider"
  8664. }
  8665. },
  8666. "autoload": {
  8667. "files": [
  8668. "src/Functions.php"
  8669. ],
  8670. "psr-4": {
  8671. "Hyperf\\Watcher\\": "src/"
  8672. }
  8673. },
  8674. "notification-url": "https://packagist.org/downloads/",
  8675. "license": [
  8676. "MIT"
  8677. ],
  8678. "description": "Hot reload watcher for Hyperf",
  8679. "keywords": [
  8680. "dev",
  8681. "hyperf",
  8682. "php"
  8683. ],
  8684. "support": {
  8685. "issues": "https://github.com/hyperf/watcher/issues",
  8686. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  8687. },
  8688. "funding": [
  8689. {
  8690. "url": "https://hyperf.wiki/#/zh-cn/donate",
  8691. "type": "custom"
  8692. },
  8693. {
  8694. "url": "https://opencollective.com/hyperf",
  8695. "type": "open_collective"
  8696. }
  8697. ],
  8698. "time": "2024-10-06T12:33:12+00:00"
  8699. },
  8700. {
  8701. "name": "mockery/mockery",
  8702. "version": "1.6.12",
  8703. "source": {
  8704. "type": "git",
  8705. "url": "https://github.com/mockery/mockery.git",
  8706. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8707. },
  8708. "dist": {
  8709. "type": "zip",
  8710. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8711. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8712. "shasum": ""
  8713. },
  8714. "require": {
  8715. "hamcrest/hamcrest-php": "^2.0.1",
  8716. "lib-pcre": ">=7.0",
  8717. "php": ">=7.3"
  8718. },
  8719. "conflict": {
  8720. "phpunit/phpunit": "<8.0"
  8721. },
  8722. "require-dev": {
  8723. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8724. "symplify/easy-coding-standard": "^12.1.14"
  8725. },
  8726. "type": "library",
  8727. "autoload": {
  8728. "files": [
  8729. "library/helpers.php",
  8730. "library/Mockery.php"
  8731. ],
  8732. "psr-4": {
  8733. "Mockery\\": "library/Mockery"
  8734. }
  8735. },
  8736. "notification-url": "https://packagist.org/downloads/",
  8737. "license": [
  8738. "BSD-3-Clause"
  8739. ],
  8740. "authors": [
  8741. {
  8742. "name": "Pádraic Brady",
  8743. "email": "padraic.brady@gmail.com",
  8744. "homepage": "https://github.com/padraic",
  8745. "role": "Author"
  8746. },
  8747. {
  8748. "name": "Dave Marshall",
  8749. "email": "dave.marshall@atstsolutions.co.uk",
  8750. "homepage": "https://davedevelopment.co.uk",
  8751. "role": "Developer"
  8752. },
  8753. {
  8754. "name": "Nathanael Esayeas",
  8755. "email": "nathanael.esayeas@protonmail.com",
  8756. "homepage": "https://github.com/ghostwriter",
  8757. "role": "Lead Developer"
  8758. }
  8759. ],
  8760. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8761. "homepage": "https://github.com/mockery/mockery",
  8762. "keywords": [
  8763. "BDD",
  8764. "TDD",
  8765. "library",
  8766. "mock",
  8767. "mock objects",
  8768. "mockery",
  8769. "stub",
  8770. "test",
  8771. "test double",
  8772. "testing"
  8773. ],
  8774. "support": {
  8775. "docs": "https://docs.mockery.io/",
  8776. "issues": "https://github.com/mockery/mockery/issues",
  8777. "rss": "https://github.com/mockery/mockery/releases.atom",
  8778. "security": "https://github.com/mockery/mockery/security/advisories",
  8779. "source": "https://github.com/mockery/mockery"
  8780. },
  8781. "time": "2024-05-16T03:13:13+00:00"
  8782. },
  8783. {
  8784. "name": "myclabs/deep-copy",
  8785. "version": "1.12.1",
  8786. "source": {
  8787. "type": "git",
  8788. "url": "https://github.com/myclabs/DeepCopy.git",
  8789. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  8790. },
  8791. "dist": {
  8792. "type": "zip",
  8793. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  8794. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  8795. "shasum": ""
  8796. },
  8797. "require": {
  8798. "php": "^7.1 || ^8.0"
  8799. },
  8800. "conflict": {
  8801. "doctrine/collections": "<1.6.8",
  8802. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8803. },
  8804. "require-dev": {
  8805. "doctrine/collections": "^1.6.8",
  8806. "doctrine/common": "^2.13.3 || ^3.2.2",
  8807. "phpspec/prophecy": "^1.10",
  8808. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8809. },
  8810. "type": "library",
  8811. "autoload": {
  8812. "files": [
  8813. "src/DeepCopy/deep_copy.php"
  8814. ],
  8815. "psr-4": {
  8816. "DeepCopy\\": "src/DeepCopy/"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "license": [
  8821. "MIT"
  8822. ],
  8823. "description": "Create deep copies (clones) of your objects",
  8824. "keywords": [
  8825. "clone",
  8826. "copy",
  8827. "duplicate",
  8828. "object",
  8829. "object graph"
  8830. ],
  8831. "support": {
  8832. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8833. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  8834. },
  8835. "funding": [
  8836. {
  8837. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8838. "type": "tidelift"
  8839. }
  8840. ],
  8841. "time": "2024-11-08T17:47:46+00:00"
  8842. },
  8843. {
  8844. "name": "phar-io/manifest",
  8845. "version": "2.0.4",
  8846. "source": {
  8847. "type": "git",
  8848. "url": "https://github.com/phar-io/manifest.git",
  8849. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8850. },
  8851. "dist": {
  8852. "type": "zip",
  8853. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8854. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8855. "shasum": ""
  8856. },
  8857. "require": {
  8858. "ext-dom": "*",
  8859. "ext-libxml": "*",
  8860. "ext-phar": "*",
  8861. "ext-xmlwriter": "*",
  8862. "phar-io/version": "^3.0.1",
  8863. "php": "^7.2 || ^8.0"
  8864. },
  8865. "type": "library",
  8866. "extra": {
  8867. "branch-alias": {
  8868. "dev-master": "2.0.x-dev"
  8869. }
  8870. },
  8871. "autoload": {
  8872. "classmap": [
  8873. "src/"
  8874. ]
  8875. },
  8876. "notification-url": "https://packagist.org/downloads/",
  8877. "license": [
  8878. "BSD-3-Clause"
  8879. ],
  8880. "authors": [
  8881. {
  8882. "name": "Arne Blankerts",
  8883. "email": "arne@blankerts.de",
  8884. "role": "Developer"
  8885. },
  8886. {
  8887. "name": "Sebastian Heuer",
  8888. "email": "sebastian@phpeople.de",
  8889. "role": "Developer"
  8890. },
  8891. {
  8892. "name": "Sebastian Bergmann",
  8893. "email": "sebastian@phpunit.de",
  8894. "role": "Developer"
  8895. }
  8896. ],
  8897. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8898. "support": {
  8899. "issues": "https://github.com/phar-io/manifest/issues",
  8900. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8901. },
  8902. "funding": [
  8903. {
  8904. "url": "https://github.com/theseer",
  8905. "type": "github"
  8906. }
  8907. ],
  8908. "time": "2024-03-03T12:33:53+00:00"
  8909. },
  8910. {
  8911. "name": "phar-io/version",
  8912. "version": "3.2.1",
  8913. "source": {
  8914. "type": "git",
  8915. "url": "https://github.com/phar-io/version.git",
  8916. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8917. },
  8918. "dist": {
  8919. "type": "zip",
  8920. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8921. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8922. "shasum": ""
  8923. },
  8924. "require": {
  8925. "php": "^7.2 || ^8.0"
  8926. },
  8927. "type": "library",
  8928. "autoload": {
  8929. "classmap": [
  8930. "src/"
  8931. ]
  8932. },
  8933. "notification-url": "https://packagist.org/downloads/",
  8934. "license": [
  8935. "BSD-3-Clause"
  8936. ],
  8937. "authors": [
  8938. {
  8939. "name": "Arne Blankerts",
  8940. "email": "arne@blankerts.de",
  8941. "role": "Developer"
  8942. },
  8943. {
  8944. "name": "Sebastian Heuer",
  8945. "email": "sebastian@phpeople.de",
  8946. "role": "Developer"
  8947. },
  8948. {
  8949. "name": "Sebastian Bergmann",
  8950. "email": "sebastian@phpunit.de",
  8951. "role": "Developer"
  8952. }
  8953. ],
  8954. "description": "Library for handling version information and constraints",
  8955. "support": {
  8956. "issues": "https://github.com/phar-io/version/issues",
  8957. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8958. },
  8959. "time": "2022-02-21T01:04:05+00:00"
  8960. },
  8961. {
  8962. "name": "phpstan/phpstan",
  8963. "version": "1.12.9",
  8964. "source": {
  8965. "type": "git",
  8966. "url": "https://github.com/phpstan/phpstan.git",
  8967. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  8968. },
  8969. "dist": {
  8970. "type": "zip",
  8971. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  8972. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  8973. "shasum": ""
  8974. },
  8975. "require": {
  8976. "php": "^7.2|^8.0"
  8977. },
  8978. "conflict": {
  8979. "phpstan/phpstan-shim": "*"
  8980. },
  8981. "bin": [
  8982. "phpstan",
  8983. "phpstan.phar"
  8984. ],
  8985. "type": "library",
  8986. "autoload": {
  8987. "files": [
  8988. "bootstrap.php"
  8989. ]
  8990. },
  8991. "notification-url": "https://packagist.org/downloads/",
  8992. "license": [
  8993. "MIT"
  8994. ],
  8995. "description": "PHPStan - PHP Static Analysis Tool",
  8996. "keywords": [
  8997. "dev",
  8998. "static analysis"
  8999. ],
  9000. "support": {
  9001. "docs": "https://phpstan.org/user-guide/getting-started",
  9002. "forum": "https://github.com/phpstan/phpstan/discussions",
  9003. "issues": "https://github.com/phpstan/phpstan/issues",
  9004. "security": "https://github.com/phpstan/phpstan/security/policy",
  9005. "source": "https://github.com/phpstan/phpstan-src"
  9006. },
  9007. "funding": [
  9008. {
  9009. "url": "https://github.com/ondrejmirtes",
  9010. "type": "github"
  9011. },
  9012. {
  9013. "url": "https://github.com/phpstan",
  9014. "type": "github"
  9015. }
  9016. ],
  9017. "time": "2024-11-10T17:10:04+00:00"
  9018. },
  9019. {
  9020. "name": "phpunit/php-code-coverage",
  9021. "version": "10.1.16",
  9022. "source": {
  9023. "type": "git",
  9024. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9025. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  9026. },
  9027. "dist": {
  9028. "type": "zip",
  9029. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  9030. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  9031. "shasum": ""
  9032. },
  9033. "require": {
  9034. "ext-dom": "*",
  9035. "ext-libxml": "*",
  9036. "ext-xmlwriter": "*",
  9037. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  9038. "php": ">=8.1",
  9039. "phpunit/php-file-iterator": "^4.1.0",
  9040. "phpunit/php-text-template": "^3.0.1",
  9041. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  9042. "sebastian/complexity": "^3.2.0",
  9043. "sebastian/environment": "^6.1.0",
  9044. "sebastian/lines-of-code": "^2.0.2",
  9045. "sebastian/version": "^4.0.1",
  9046. "theseer/tokenizer": "^1.2.3"
  9047. },
  9048. "require-dev": {
  9049. "phpunit/phpunit": "^10.1"
  9050. },
  9051. "suggest": {
  9052. "ext-pcov": "PHP extension that provides line coverage",
  9053. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "branch-alias": {
  9058. "dev-main": "10.1.x-dev"
  9059. }
  9060. },
  9061. "autoload": {
  9062. "classmap": [
  9063. "src/"
  9064. ]
  9065. },
  9066. "notification-url": "https://packagist.org/downloads/",
  9067. "license": [
  9068. "BSD-3-Clause"
  9069. ],
  9070. "authors": [
  9071. {
  9072. "name": "Sebastian Bergmann",
  9073. "email": "sebastian@phpunit.de",
  9074. "role": "lead"
  9075. }
  9076. ],
  9077. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9078. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9079. "keywords": [
  9080. "coverage",
  9081. "testing",
  9082. "xunit"
  9083. ],
  9084. "support": {
  9085. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9086. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  9087. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  9088. },
  9089. "funding": [
  9090. {
  9091. "url": "https://github.com/sebastianbergmann",
  9092. "type": "github"
  9093. }
  9094. ],
  9095. "time": "2024-08-22T04:31:57+00:00"
  9096. },
  9097. {
  9098. "name": "phpunit/php-file-iterator",
  9099. "version": "4.1.0",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9103. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9108. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "php": ">=8.1"
  9113. },
  9114. "require-dev": {
  9115. "phpunit/phpunit": "^10.0"
  9116. },
  9117. "type": "library",
  9118. "extra": {
  9119. "branch-alias": {
  9120. "dev-main": "4.0-dev"
  9121. }
  9122. },
  9123. "autoload": {
  9124. "classmap": [
  9125. "src/"
  9126. ]
  9127. },
  9128. "notification-url": "https://packagist.org/downloads/",
  9129. "license": [
  9130. "BSD-3-Clause"
  9131. ],
  9132. "authors": [
  9133. {
  9134. "name": "Sebastian Bergmann",
  9135. "email": "sebastian@phpunit.de",
  9136. "role": "lead"
  9137. }
  9138. ],
  9139. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9140. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9141. "keywords": [
  9142. "filesystem",
  9143. "iterator"
  9144. ],
  9145. "support": {
  9146. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9147. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  9148. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  9149. },
  9150. "funding": [
  9151. {
  9152. "url": "https://github.com/sebastianbergmann",
  9153. "type": "github"
  9154. }
  9155. ],
  9156. "time": "2023-08-31T06:24:48+00:00"
  9157. },
  9158. {
  9159. "name": "phpunit/php-invoker",
  9160. "version": "4.0.0",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9164. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9169. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "php": ">=8.1"
  9174. },
  9175. "require-dev": {
  9176. "ext-pcntl": "*",
  9177. "phpunit/phpunit": "^10.0"
  9178. },
  9179. "suggest": {
  9180. "ext-pcntl": "*"
  9181. },
  9182. "type": "library",
  9183. "extra": {
  9184. "branch-alias": {
  9185. "dev-main": "4.0-dev"
  9186. }
  9187. },
  9188. "autoload": {
  9189. "classmap": [
  9190. "src/"
  9191. ]
  9192. },
  9193. "notification-url": "https://packagist.org/downloads/",
  9194. "license": [
  9195. "BSD-3-Clause"
  9196. ],
  9197. "authors": [
  9198. {
  9199. "name": "Sebastian Bergmann",
  9200. "email": "sebastian@phpunit.de",
  9201. "role": "lead"
  9202. }
  9203. ],
  9204. "description": "Invoke callables with a timeout",
  9205. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9206. "keywords": [
  9207. "process"
  9208. ],
  9209. "support": {
  9210. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9211. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  9212. },
  9213. "funding": [
  9214. {
  9215. "url": "https://github.com/sebastianbergmann",
  9216. "type": "github"
  9217. }
  9218. ],
  9219. "time": "2023-02-03T06:56:09+00:00"
  9220. },
  9221. {
  9222. "name": "phpunit/php-text-template",
  9223. "version": "3.0.1",
  9224. "source": {
  9225. "type": "git",
  9226. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9227. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  9228. },
  9229. "dist": {
  9230. "type": "zip",
  9231. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9232. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  9233. "shasum": ""
  9234. },
  9235. "require": {
  9236. "php": ">=8.1"
  9237. },
  9238. "require-dev": {
  9239. "phpunit/phpunit": "^10.0"
  9240. },
  9241. "type": "library",
  9242. "extra": {
  9243. "branch-alias": {
  9244. "dev-main": "3.0-dev"
  9245. }
  9246. },
  9247. "autoload": {
  9248. "classmap": [
  9249. "src/"
  9250. ]
  9251. },
  9252. "notification-url": "https://packagist.org/downloads/",
  9253. "license": [
  9254. "BSD-3-Clause"
  9255. ],
  9256. "authors": [
  9257. {
  9258. "name": "Sebastian Bergmann",
  9259. "email": "sebastian@phpunit.de",
  9260. "role": "lead"
  9261. }
  9262. ],
  9263. "description": "Simple template engine.",
  9264. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9265. "keywords": [
  9266. "template"
  9267. ],
  9268. "support": {
  9269. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9270. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  9271. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  9272. },
  9273. "funding": [
  9274. {
  9275. "url": "https://github.com/sebastianbergmann",
  9276. "type": "github"
  9277. }
  9278. ],
  9279. "time": "2023-08-31T14:07:24+00:00"
  9280. },
  9281. {
  9282. "name": "phpunit/php-timer",
  9283. "version": "6.0.0",
  9284. "source": {
  9285. "type": "git",
  9286. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9287. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  9288. },
  9289. "dist": {
  9290. "type": "zip",
  9291. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9292. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  9293. "shasum": ""
  9294. },
  9295. "require": {
  9296. "php": ">=8.1"
  9297. },
  9298. "require-dev": {
  9299. "phpunit/phpunit": "^10.0"
  9300. },
  9301. "type": "library",
  9302. "extra": {
  9303. "branch-alias": {
  9304. "dev-main": "6.0-dev"
  9305. }
  9306. },
  9307. "autoload": {
  9308. "classmap": [
  9309. "src/"
  9310. ]
  9311. },
  9312. "notification-url": "https://packagist.org/downloads/",
  9313. "license": [
  9314. "BSD-3-Clause"
  9315. ],
  9316. "authors": [
  9317. {
  9318. "name": "Sebastian Bergmann",
  9319. "email": "sebastian@phpunit.de",
  9320. "role": "lead"
  9321. }
  9322. ],
  9323. "description": "Utility class for timing",
  9324. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9325. "keywords": [
  9326. "timer"
  9327. ],
  9328. "support": {
  9329. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9330. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  9331. },
  9332. "funding": [
  9333. {
  9334. "url": "https://github.com/sebastianbergmann",
  9335. "type": "github"
  9336. }
  9337. ],
  9338. "time": "2023-02-03T06:57:52+00:00"
  9339. },
  9340. {
  9341. "name": "phpunit/phpunit",
  9342. "version": "10.5.38",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9346. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9351. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  9352. "shasum": ""
  9353. },
  9354. "require": {
  9355. "ext-dom": "*",
  9356. "ext-json": "*",
  9357. "ext-libxml": "*",
  9358. "ext-mbstring": "*",
  9359. "ext-xml": "*",
  9360. "ext-xmlwriter": "*",
  9361. "myclabs/deep-copy": "^1.12.0",
  9362. "phar-io/manifest": "^2.0.4",
  9363. "phar-io/version": "^3.2.1",
  9364. "php": ">=8.1",
  9365. "phpunit/php-code-coverage": "^10.1.16",
  9366. "phpunit/php-file-iterator": "^4.1.0",
  9367. "phpunit/php-invoker": "^4.0.0",
  9368. "phpunit/php-text-template": "^3.0.1",
  9369. "phpunit/php-timer": "^6.0.0",
  9370. "sebastian/cli-parser": "^2.0.1",
  9371. "sebastian/code-unit": "^2.0.0",
  9372. "sebastian/comparator": "^5.0.3",
  9373. "sebastian/diff": "^5.1.1",
  9374. "sebastian/environment": "^6.1.0",
  9375. "sebastian/exporter": "^5.1.2",
  9376. "sebastian/global-state": "^6.0.2",
  9377. "sebastian/object-enumerator": "^5.0.0",
  9378. "sebastian/recursion-context": "^5.0.0",
  9379. "sebastian/type": "^4.0.0",
  9380. "sebastian/version": "^4.0.1"
  9381. },
  9382. "suggest": {
  9383. "ext-soap": "To be able to generate mocks based on WSDL files"
  9384. },
  9385. "bin": [
  9386. "phpunit"
  9387. ],
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-main": "10.5-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "files": [
  9396. "src/Framework/Assert/Functions.php"
  9397. ],
  9398. "classmap": [
  9399. "src/"
  9400. ]
  9401. },
  9402. "notification-url": "https://packagist.org/downloads/",
  9403. "license": [
  9404. "BSD-3-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Sebastian Bergmann",
  9409. "email": "sebastian@phpunit.de",
  9410. "role": "lead"
  9411. }
  9412. ],
  9413. "description": "The PHP Unit Testing framework.",
  9414. "homepage": "https://phpunit.de/",
  9415. "keywords": [
  9416. "phpunit",
  9417. "testing",
  9418. "xunit"
  9419. ],
  9420. "support": {
  9421. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9422. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9423. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  9424. },
  9425. "funding": [
  9426. {
  9427. "url": "https://phpunit.de/sponsors.html",
  9428. "type": "custom"
  9429. },
  9430. {
  9431. "url": "https://github.com/sebastianbergmann",
  9432. "type": "github"
  9433. },
  9434. {
  9435. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9436. "type": "tidelift"
  9437. }
  9438. ],
  9439. "time": "2024-10-28T13:06:21+00:00"
  9440. },
  9441. {
  9442. "name": "react/cache",
  9443. "version": "v1.2.0",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/reactphp/cache.git",
  9447. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  9452. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  9453. "shasum": ""
  9454. },
  9455. "require": {
  9456. "php": ">=5.3.0",
  9457. "react/promise": "^3.0 || ^2.0 || ^1.1"
  9458. },
  9459. "require-dev": {
  9460. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  9461. },
  9462. "type": "library",
  9463. "autoload": {
  9464. "psr-4": {
  9465. "React\\Cache\\": "src/"
  9466. }
  9467. },
  9468. "notification-url": "https://packagist.org/downloads/",
  9469. "license": [
  9470. "MIT"
  9471. ],
  9472. "authors": [
  9473. {
  9474. "name": "Christian Lück",
  9475. "email": "christian@clue.engineering",
  9476. "homepage": "https://clue.engineering/"
  9477. },
  9478. {
  9479. "name": "Cees-Jan Kiewiet",
  9480. "email": "reactphp@ceesjankiewiet.nl",
  9481. "homepage": "https://wyrihaximus.net/"
  9482. },
  9483. {
  9484. "name": "Jan Sorgalla",
  9485. "email": "jsorgalla@gmail.com",
  9486. "homepage": "https://sorgalla.com/"
  9487. },
  9488. {
  9489. "name": "Chris Boden",
  9490. "email": "cboden@gmail.com",
  9491. "homepage": "https://cboden.dev/"
  9492. }
  9493. ],
  9494. "description": "Async, Promise-based cache interface for ReactPHP",
  9495. "keywords": [
  9496. "cache",
  9497. "caching",
  9498. "promise",
  9499. "reactphp"
  9500. ],
  9501. "support": {
  9502. "issues": "https://github.com/reactphp/cache/issues",
  9503. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://opencollective.com/reactphp",
  9508. "type": "open_collective"
  9509. }
  9510. ],
  9511. "time": "2022-11-30T15:59:55+00:00"
  9512. },
  9513. {
  9514. "name": "react/child-process",
  9515. "version": "v0.6.5",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/reactphp/child-process.git",
  9519. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9524. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9529. "php": ">=5.3.0",
  9530. "react/event-loop": "^1.2",
  9531. "react/stream": "^1.2"
  9532. },
  9533. "require-dev": {
  9534. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  9535. "react/socket": "^1.8",
  9536. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  9537. },
  9538. "type": "library",
  9539. "autoload": {
  9540. "psr-4": {
  9541. "React\\ChildProcess\\": "src"
  9542. }
  9543. },
  9544. "notification-url": "https://packagist.org/downloads/",
  9545. "license": [
  9546. "MIT"
  9547. ],
  9548. "authors": [
  9549. {
  9550. "name": "Christian Lück",
  9551. "email": "christian@clue.engineering",
  9552. "homepage": "https://clue.engineering/"
  9553. },
  9554. {
  9555. "name": "Cees-Jan Kiewiet",
  9556. "email": "reactphp@ceesjankiewiet.nl",
  9557. "homepage": "https://wyrihaximus.net/"
  9558. },
  9559. {
  9560. "name": "Jan Sorgalla",
  9561. "email": "jsorgalla@gmail.com",
  9562. "homepage": "https://sorgalla.com/"
  9563. },
  9564. {
  9565. "name": "Chris Boden",
  9566. "email": "cboden@gmail.com",
  9567. "homepage": "https://cboden.dev/"
  9568. }
  9569. ],
  9570. "description": "Event-driven library for executing child processes with ReactPHP.",
  9571. "keywords": [
  9572. "event-driven",
  9573. "process",
  9574. "reactphp"
  9575. ],
  9576. "support": {
  9577. "issues": "https://github.com/reactphp/child-process/issues",
  9578. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  9579. },
  9580. "funding": [
  9581. {
  9582. "url": "https://github.com/WyriHaximus",
  9583. "type": "github"
  9584. },
  9585. {
  9586. "url": "https://github.com/clue",
  9587. "type": "github"
  9588. }
  9589. ],
  9590. "time": "2022-09-16T13:41:56+00:00"
  9591. },
  9592. {
  9593. "name": "react/dns",
  9594. "version": "v1.13.0",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/reactphp/dns.git",
  9598. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9603. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  9604. "shasum": ""
  9605. },
  9606. "require": {
  9607. "php": ">=5.3.0",
  9608. "react/cache": "^1.0 || ^0.6 || ^0.5",
  9609. "react/event-loop": "^1.2",
  9610. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  9611. },
  9612. "require-dev": {
  9613. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9614. "react/async": "^4.3 || ^3 || ^2",
  9615. "react/promise-timer": "^1.11"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "psr-4": {
  9620. "React\\Dns\\": "src/"
  9621. }
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "MIT"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Christian Lück",
  9630. "email": "christian@clue.engineering",
  9631. "homepage": "https://clue.engineering/"
  9632. },
  9633. {
  9634. "name": "Cees-Jan Kiewiet",
  9635. "email": "reactphp@ceesjankiewiet.nl",
  9636. "homepage": "https://wyrihaximus.net/"
  9637. },
  9638. {
  9639. "name": "Jan Sorgalla",
  9640. "email": "jsorgalla@gmail.com",
  9641. "homepage": "https://sorgalla.com/"
  9642. },
  9643. {
  9644. "name": "Chris Boden",
  9645. "email": "cboden@gmail.com",
  9646. "homepage": "https://cboden.dev/"
  9647. }
  9648. ],
  9649. "description": "Async DNS resolver for ReactPHP",
  9650. "keywords": [
  9651. "async",
  9652. "dns",
  9653. "dns-resolver",
  9654. "reactphp"
  9655. ],
  9656. "support": {
  9657. "issues": "https://github.com/reactphp/dns/issues",
  9658. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  9659. },
  9660. "funding": [
  9661. {
  9662. "url": "https://opencollective.com/reactphp",
  9663. "type": "open_collective"
  9664. }
  9665. ],
  9666. "time": "2024-06-13T14:18:03+00:00"
  9667. },
  9668. {
  9669. "name": "react/event-loop",
  9670. "version": "v1.5.0",
  9671. "source": {
  9672. "type": "git",
  9673. "url": "https://github.com/reactphp/event-loop.git",
  9674. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  9675. },
  9676. "dist": {
  9677. "type": "zip",
  9678. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9679. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  9680. "shasum": ""
  9681. },
  9682. "require": {
  9683. "php": ">=5.3.0"
  9684. },
  9685. "require-dev": {
  9686. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9687. },
  9688. "suggest": {
  9689. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  9690. },
  9691. "type": "library",
  9692. "autoload": {
  9693. "psr-4": {
  9694. "React\\EventLoop\\": "src/"
  9695. }
  9696. },
  9697. "notification-url": "https://packagist.org/downloads/",
  9698. "license": [
  9699. "MIT"
  9700. ],
  9701. "authors": [
  9702. {
  9703. "name": "Christian Lück",
  9704. "email": "christian@clue.engineering",
  9705. "homepage": "https://clue.engineering/"
  9706. },
  9707. {
  9708. "name": "Cees-Jan Kiewiet",
  9709. "email": "reactphp@ceesjankiewiet.nl",
  9710. "homepage": "https://wyrihaximus.net/"
  9711. },
  9712. {
  9713. "name": "Jan Sorgalla",
  9714. "email": "jsorgalla@gmail.com",
  9715. "homepage": "https://sorgalla.com/"
  9716. },
  9717. {
  9718. "name": "Chris Boden",
  9719. "email": "cboden@gmail.com",
  9720. "homepage": "https://cboden.dev/"
  9721. }
  9722. ],
  9723. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  9724. "keywords": [
  9725. "asynchronous",
  9726. "event-loop"
  9727. ],
  9728. "support": {
  9729. "issues": "https://github.com/reactphp/event-loop/issues",
  9730. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  9731. },
  9732. "funding": [
  9733. {
  9734. "url": "https://opencollective.com/reactphp",
  9735. "type": "open_collective"
  9736. }
  9737. ],
  9738. "time": "2023-11-13T13:48:05+00:00"
  9739. },
  9740. {
  9741. "name": "react/promise",
  9742. "version": "v3.2.0",
  9743. "source": {
  9744. "type": "git",
  9745. "url": "https://github.com/reactphp/promise.git",
  9746. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  9747. },
  9748. "dist": {
  9749. "type": "zip",
  9750. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  9751. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  9752. "shasum": ""
  9753. },
  9754. "require": {
  9755. "php": ">=7.1.0"
  9756. },
  9757. "require-dev": {
  9758. "phpstan/phpstan": "1.10.39 || 1.4.10",
  9759. "phpunit/phpunit": "^9.6 || ^7.5"
  9760. },
  9761. "type": "library",
  9762. "autoload": {
  9763. "files": [
  9764. "src/functions_include.php"
  9765. ],
  9766. "psr-4": {
  9767. "React\\Promise\\": "src/"
  9768. }
  9769. },
  9770. "notification-url": "https://packagist.org/downloads/",
  9771. "license": [
  9772. "MIT"
  9773. ],
  9774. "authors": [
  9775. {
  9776. "name": "Jan Sorgalla",
  9777. "email": "jsorgalla@gmail.com",
  9778. "homepage": "https://sorgalla.com/"
  9779. },
  9780. {
  9781. "name": "Christian Lück",
  9782. "email": "christian@clue.engineering",
  9783. "homepage": "https://clue.engineering/"
  9784. },
  9785. {
  9786. "name": "Cees-Jan Kiewiet",
  9787. "email": "reactphp@ceesjankiewiet.nl",
  9788. "homepage": "https://wyrihaximus.net/"
  9789. },
  9790. {
  9791. "name": "Chris Boden",
  9792. "email": "cboden@gmail.com",
  9793. "homepage": "https://cboden.dev/"
  9794. }
  9795. ],
  9796. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  9797. "keywords": [
  9798. "promise",
  9799. "promises"
  9800. ],
  9801. "support": {
  9802. "issues": "https://github.com/reactphp/promise/issues",
  9803. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  9804. },
  9805. "funding": [
  9806. {
  9807. "url": "https://opencollective.com/reactphp",
  9808. "type": "open_collective"
  9809. }
  9810. ],
  9811. "time": "2024-05-24T10:39:05+00:00"
  9812. },
  9813. {
  9814. "name": "react/socket",
  9815. "version": "v1.16.0",
  9816. "source": {
  9817. "type": "git",
  9818. "url": "https://github.com/reactphp/socket.git",
  9819. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  9820. },
  9821. "dist": {
  9822. "type": "zip",
  9823. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9824. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  9825. "shasum": ""
  9826. },
  9827. "require": {
  9828. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9829. "php": ">=5.3.0",
  9830. "react/dns": "^1.13",
  9831. "react/event-loop": "^1.2",
  9832. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  9833. "react/stream": "^1.4"
  9834. },
  9835. "require-dev": {
  9836. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  9837. "react/async": "^4.3 || ^3.3 || ^2",
  9838. "react/promise-stream": "^1.4",
  9839. "react/promise-timer": "^1.11"
  9840. },
  9841. "type": "library",
  9842. "autoload": {
  9843. "psr-4": {
  9844. "React\\Socket\\": "src/"
  9845. }
  9846. },
  9847. "notification-url": "https://packagist.org/downloads/",
  9848. "license": [
  9849. "MIT"
  9850. ],
  9851. "authors": [
  9852. {
  9853. "name": "Christian Lück",
  9854. "email": "christian@clue.engineering",
  9855. "homepage": "https://clue.engineering/"
  9856. },
  9857. {
  9858. "name": "Cees-Jan Kiewiet",
  9859. "email": "reactphp@ceesjankiewiet.nl",
  9860. "homepage": "https://wyrihaximus.net/"
  9861. },
  9862. {
  9863. "name": "Jan Sorgalla",
  9864. "email": "jsorgalla@gmail.com",
  9865. "homepage": "https://sorgalla.com/"
  9866. },
  9867. {
  9868. "name": "Chris Boden",
  9869. "email": "cboden@gmail.com",
  9870. "homepage": "https://cboden.dev/"
  9871. }
  9872. ],
  9873. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  9874. "keywords": [
  9875. "Connection",
  9876. "Socket",
  9877. "async",
  9878. "reactphp",
  9879. "stream"
  9880. ],
  9881. "support": {
  9882. "issues": "https://github.com/reactphp/socket/issues",
  9883. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  9884. },
  9885. "funding": [
  9886. {
  9887. "url": "https://opencollective.com/reactphp",
  9888. "type": "open_collective"
  9889. }
  9890. ],
  9891. "time": "2024-07-26T10:38:09+00:00"
  9892. },
  9893. {
  9894. "name": "react/stream",
  9895. "version": "v1.4.0",
  9896. "source": {
  9897. "type": "git",
  9898. "url": "https://github.com/reactphp/stream.git",
  9899. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  9900. },
  9901. "dist": {
  9902. "type": "zip",
  9903. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9904. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  9905. "shasum": ""
  9906. },
  9907. "require": {
  9908. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  9909. "php": ">=5.3.8",
  9910. "react/event-loop": "^1.2"
  9911. },
  9912. "require-dev": {
  9913. "clue/stream-filter": "~1.2",
  9914. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  9915. },
  9916. "type": "library",
  9917. "autoload": {
  9918. "psr-4": {
  9919. "React\\Stream\\": "src/"
  9920. }
  9921. },
  9922. "notification-url": "https://packagist.org/downloads/",
  9923. "license": [
  9924. "MIT"
  9925. ],
  9926. "authors": [
  9927. {
  9928. "name": "Christian Lück",
  9929. "email": "christian@clue.engineering",
  9930. "homepage": "https://clue.engineering/"
  9931. },
  9932. {
  9933. "name": "Cees-Jan Kiewiet",
  9934. "email": "reactphp@ceesjankiewiet.nl",
  9935. "homepage": "https://wyrihaximus.net/"
  9936. },
  9937. {
  9938. "name": "Jan Sorgalla",
  9939. "email": "jsorgalla@gmail.com",
  9940. "homepage": "https://sorgalla.com/"
  9941. },
  9942. {
  9943. "name": "Chris Boden",
  9944. "email": "cboden@gmail.com",
  9945. "homepage": "https://cboden.dev/"
  9946. }
  9947. ],
  9948. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  9949. "keywords": [
  9950. "event-driven",
  9951. "io",
  9952. "non-blocking",
  9953. "pipe",
  9954. "reactphp",
  9955. "readable",
  9956. "stream",
  9957. "writable"
  9958. ],
  9959. "support": {
  9960. "issues": "https://github.com/reactphp/stream/issues",
  9961. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  9962. },
  9963. "funding": [
  9964. {
  9965. "url": "https://opencollective.com/reactphp",
  9966. "type": "open_collective"
  9967. }
  9968. ],
  9969. "time": "2024-06-11T12:45:25+00:00"
  9970. },
  9971. {
  9972. "name": "sebastian/cli-parser",
  9973. "version": "2.0.1",
  9974. "source": {
  9975. "type": "git",
  9976. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9977. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  9978. },
  9979. "dist": {
  9980. "type": "zip",
  9981. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9982. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  9983. "shasum": ""
  9984. },
  9985. "require": {
  9986. "php": ">=8.1"
  9987. },
  9988. "require-dev": {
  9989. "phpunit/phpunit": "^10.0"
  9990. },
  9991. "type": "library",
  9992. "extra": {
  9993. "branch-alias": {
  9994. "dev-main": "2.0-dev"
  9995. }
  9996. },
  9997. "autoload": {
  9998. "classmap": [
  9999. "src/"
  10000. ]
  10001. },
  10002. "notification-url": "https://packagist.org/downloads/",
  10003. "license": [
  10004. "BSD-3-Clause"
  10005. ],
  10006. "authors": [
  10007. {
  10008. "name": "Sebastian Bergmann",
  10009. "email": "sebastian@phpunit.de",
  10010. "role": "lead"
  10011. }
  10012. ],
  10013. "description": "Library for parsing CLI options",
  10014. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10015. "support": {
  10016. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10017. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10018. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10019. },
  10020. "funding": [
  10021. {
  10022. "url": "https://github.com/sebastianbergmann",
  10023. "type": "github"
  10024. }
  10025. ],
  10026. "time": "2024-03-02T07:12:49+00:00"
  10027. },
  10028. {
  10029. "name": "sebastian/code-unit",
  10030. "version": "2.0.0",
  10031. "source": {
  10032. "type": "git",
  10033. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10034. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10035. },
  10036. "dist": {
  10037. "type": "zip",
  10038. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10039. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10040. "shasum": ""
  10041. },
  10042. "require": {
  10043. "php": ">=8.1"
  10044. },
  10045. "require-dev": {
  10046. "phpunit/phpunit": "^10.0"
  10047. },
  10048. "type": "library",
  10049. "extra": {
  10050. "branch-alias": {
  10051. "dev-main": "2.0-dev"
  10052. }
  10053. },
  10054. "autoload": {
  10055. "classmap": [
  10056. "src/"
  10057. ]
  10058. },
  10059. "notification-url": "https://packagist.org/downloads/",
  10060. "license": [
  10061. "BSD-3-Clause"
  10062. ],
  10063. "authors": [
  10064. {
  10065. "name": "Sebastian Bergmann",
  10066. "email": "sebastian@phpunit.de",
  10067. "role": "lead"
  10068. }
  10069. ],
  10070. "description": "Collection of value objects that represent the PHP code units",
  10071. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10072. "support": {
  10073. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10074. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10075. },
  10076. "funding": [
  10077. {
  10078. "url": "https://github.com/sebastianbergmann",
  10079. "type": "github"
  10080. }
  10081. ],
  10082. "time": "2023-02-03T06:58:43+00:00"
  10083. },
  10084. {
  10085. "name": "sebastian/code-unit-reverse-lookup",
  10086. "version": "3.0.0",
  10087. "source": {
  10088. "type": "git",
  10089. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10090. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10091. },
  10092. "dist": {
  10093. "type": "zip",
  10094. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10095. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10096. "shasum": ""
  10097. },
  10098. "require": {
  10099. "php": ">=8.1"
  10100. },
  10101. "require-dev": {
  10102. "phpunit/phpunit": "^10.0"
  10103. },
  10104. "type": "library",
  10105. "extra": {
  10106. "branch-alias": {
  10107. "dev-main": "3.0-dev"
  10108. }
  10109. },
  10110. "autoload": {
  10111. "classmap": [
  10112. "src/"
  10113. ]
  10114. },
  10115. "notification-url": "https://packagist.org/downloads/",
  10116. "license": [
  10117. "BSD-3-Clause"
  10118. ],
  10119. "authors": [
  10120. {
  10121. "name": "Sebastian Bergmann",
  10122. "email": "sebastian@phpunit.de"
  10123. }
  10124. ],
  10125. "description": "Looks up which function or method a line of code belongs to",
  10126. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10127. "support": {
  10128. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10129. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10130. },
  10131. "funding": [
  10132. {
  10133. "url": "https://github.com/sebastianbergmann",
  10134. "type": "github"
  10135. }
  10136. ],
  10137. "time": "2023-02-03T06:59:15+00:00"
  10138. },
  10139. {
  10140. "name": "sebastian/comparator",
  10141. "version": "5.0.3",
  10142. "source": {
  10143. "type": "git",
  10144. "url": "https://github.com/sebastianbergmann/comparator.git",
  10145. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  10146. },
  10147. "dist": {
  10148. "type": "zip",
  10149. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10150. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  10151. "shasum": ""
  10152. },
  10153. "require": {
  10154. "ext-dom": "*",
  10155. "ext-mbstring": "*",
  10156. "php": ">=8.1",
  10157. "sebastian/diff": "^5.0",
  10158. "sebastian/exporter": "^5.0"
  10159. },
  10160. "require-dev": {
  10161. "phpunit/phpunit": "^10.5"
  10162. },
  10163. "type": "library",
  10164. "extra": {
  10165. "branch-alias": {
  10166. "dev-main": "5.0-dev"
  10167. }
  10168. },
  10169. "autoload": {
  10170. "classmap": [
  10171. "src/"
  10172. ]
  10173. },
  10174. "notification-url": "https://packagist.org/downloads/",
  10175. "license": [
  10176. "BSD-3-Clause"
  10177. ],
  10178. "authors": [
  10179. {
  10180. "name": "Sebastian Bergmann",
  10181. "email": "sebastian@phpunit.de"
  10182. },
  10183. {
  10184. "name": "Jeff Welch",
  10185. "email": "whatthejeff@gmail.com"
  10186. },
  10187. {
  10188. "name": "Volker Dusch",
  10189. "email": "github@wallbash.com"
  10190. },
  10191. {
  10192. "name": "Bernhard Schussek",
  10193. "email": "bschussek@2bepublished.at"
  10194. }
  10195. ],
  10196. "description": "Provides the functionality to compare PHP values for equality",
  10197. "homepage": "https://github.com/sebastianbergmann/comparator",
  10198. "keywords": [
  10199. "comparator",
  10200. "compare",
  10201. "equality"
  10202. ],
  10203. "support": {
  10204. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  10205. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  10206. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  10207. },
  10208. "funding": [
  10209. {
  10210. "url": "https://github.com/sebastianbergmann",
  10211. "type": "github"
  10212. }
  10213. ],
  10214. "time": "2024-10-18T14:56:07+00:00"
  10215. },
  10216. {
  10217. "name": "sebastian/complexity",
  10218. "version": "3.2.0",
  10219. "source": {
  10220. "type": "git",
  10221. "url": "https://github.com/sebastianbergmann/complexity.git",
  10222. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  10223. },
  10224. "dist": {
  10225. "type": "zip",
  10226. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  10227. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  10228. "shasum": ""
  10229. },
  10230. "require": {
  10231. "nikic/php-parser": "^4.18 || ^5.0",
  10232. "php": ">=8.1"
  10233. },
  10234. "require-dev": {
  10235. "phpunit/phpunit": "^10.0"
  10236. },
  10237. "type": "library",
  10238. "extra": {
  10239. "branch-alias": {
  10240. "dev-main": "3.2-dev"
  10241. }
  10242. },
  10243. "autoload": {
  10244. "classmap": [
  10245. "src/"
  10246. ]
  10247. },
  10248. "notification-url": "https://packagist.org/downloads/",
  10249. "license": [
  10250. "BSD-3-Clause"
  10251. ],
  10252. "authors": [
  10253. {
  10254. "name": "Sebastian Bergmann",
  10255. "email": "sebastian@phpunit.de",
  10256. "role": "lead"
  10257. }
  10258. ],
  10259. "description": "Library for calculating the complexity of PHP code units",
  10260. "homepage": "https://github.com/sebastianbergmann/complexity",
  10261. "support": {
  10262. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  10263. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  10264. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  10265. },
  10266. "funding": [
  10267. {
  10268. "url": "https://github.com/sebastianbergmann",
  10269. "type": "github"
  10270. }
  10271. ],
  10272. "time": "2023-12-21T08:37:17+00:00"
  10273. },
  10274. {
  10275. "name": "sebastian/diff",
  10276. "version": "5.1.1",
  10277. "source": {
  10278. "type": "git",
  10279. "url": "https://github.com/sebastianbergmann/diff.git",
  10280. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  10281. },
  10282. "dist": {
  10283. "type": "zip",
  10284. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10285. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  10286. "shasum": ""
  10287. },
  10288. "require": {
  10289. "php": ">=8.1"
  10290. },
  10291. "require-dev": {
  10292. "phpunit/phpunit": "^10.0",
  10293. "symfony/process": "^6.4"
  10294. },
  10295. "type": "library",
  10296. "extra": {
  10297. "branch-alias": {
  10298. "dev-main": "5.1-dev"
  10299. }
  10300. },
  10301. "autoload": {
  10302. "classmap": [
  10303. "src/"
  10304. ]
  10305. },
  10306. "notification-url": "https://packagist.org/downloads/",
  10307. "license": [
  10308. "BSD-3-Clause"
  10309. ],
  10310. "authors": [
  10311. {
  10312. "name": "Sebastian Bergmann",
  10313. "email": "sebastian@phpunit.de"
  10314. },
  10315. {
  10316. "name": "Kore Nordmann",
  10317. "email": "mail@kore-nordmann.de"
  10318. }
  10319. ],
  10320. "description": "Diff implementation",
  10321. "homepage": "https://github.com/sebastianbergmann/diff",
  10322. "keywords": [
  10323. "diff",
  10324. "udiff",
  10325. "unidiff",
  10326. "unified diff"
  10327. ],
  10328. "support": {
  10329. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10330. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  10331. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  10332. },
  10333. "funding": [
  10334. {
  10335. "url": "https://github.com/sebastianbergmann",
  10336. "type": "github"
  10337. }
  10338. ],
  10339. "time": "2024-03-02T07:15:17+00:00"
  10340. },
  10341. {
  10342. "name": "sebastian/environment",
  10343. "version": "6.1.0",
  10344. "source": {
  10345. "type": "git",
  10346. "url": "https://github.com/sebastianbergmann/environment.git",
  10347. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  10348. },
  10349. "dist": {
  10350. "type": "zip",
  10351. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  10352. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  10353. "shasum": ""
  10354. },
  10355. "require": {
  10356. "php": ">=8.1"
  10357. },
  10358. "require-dev": {
  10359. "phpunit/phpunit": "^10.0"
  10360. },
  10361. "suggest": {
  10362. "ext-posix": "*"
  10363. },
  10364. "type": "library",
  10365. "extra": {
  10366. "branch-alias": {
  10367. "dev-main": "6.1-dev"
  10368. }
  10369. },
  10370. "autoload": {
  10371. "classmap": [
  10372. "src/"
  10373. ]
  10374. },
  10375. "notification-url": "https://packagist.org/downloads/",
  10376. "license": [
  10377. "BSD-3-Clause"
  10378. ],
  10379. "authors": [
  10380. {
  10381. "name": "Sebastian Bergmann",
  10382. "email": "sebastian@phpunit.de"
  10383. }
  10384. ],
  10385. "description": "Provides functionality to handle HHVM/PHP environments",
  10386. "homepage": "https://github.com/sebastianbergmann/environment",
  10387. "keywords": [
  10388. "Xdebug",
  10389. "environment",
  10390. "hhvm"
  10391. ],
  10392. "support": {
  10393. "issues": "https://github.com/sebastianbergmann/environment/issues",
  10394. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  10395. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  10396. },
  10397. "funding": [
  10398. {
  10399. "url": "https://github.com/sebastianbergmann",
  10400. "type": "github"
  10401. }
  10402. ],
  10403. "time": "2024-03-23T08:47:14+00:00"
  10404. },
  10405. {
  10406. "name": "sebastian/exporter",
  10407. "version": "5.1.2",
  10408. "source": {
  10409. "type": "git",
  10410. "url": "https://github.com/sebastianbergmann/exporter.git",
  10411. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  10412. },
  10413. "dist": {
  10414. "type": "zip",
  10415. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  10416. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  10417. "shasum": ""
  10418. },
  10419. "require": {
  10420. "ext-mbstring": "*",
  10421. "php": ">=8.1",
  10422. "sebastian/recursion-context": "^5.0"
  10423. },
  10424. "require-dev": {
  10425. "phpunit/phpunit": "^10.0"
  10426. },
  10427. "type": "library",
  10428. "extra": {
  10429. "branch-alias": {
  10430. "dev-main": "5.1-dev"
  10431. }
  10432. },
  10433. "autoload": {
  10434. "classmap": [
  10435. "src/"
  10436. ]
  10437. },
  10438. "notification-url": "https://packagist.org/downloads/",
  10439. "license": [
  10440. "BSD-3-Clause"
  10441. ],
  10442. "authors": [
  10443. {
  10444. "name": "Sebastian Bergmann",
  10445. "email": "sebastian@phpunit.de"
  10446. },
  10447. {
  10448. "name": "Jeff Welch",
  10449. "email": "whatthejeff@gmail.com"
  10450. },
  10451. {
  10452. "name": "Volker Dusch",
  10453. "email": "github@wallbash.com"
  10454. },
  10455. {
  10456. "name": "Adam Harvey",
  10457. "email": "aharvey@php.net"
  10458. },
  10459. {
  10460. "name": "Bernhard Schussek",
  10461. "email": "bschussek@gmail.com"
  10462. }
  10463. ],
  10464. "description": "Provides the functionality to export PHP variables for visualization",
  10465. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  10466. "keywords": [
  10467. "export",
  10468. "exporter"
  10469. ],
  10470. "support": {
  10471. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  10472. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  10473. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  10474. },
  10475. "funding": [
  10476. {
  10477. "url": "https://github.com/sebastianbergmann",
  10478. "type": "github"
  10479. }
  10480. ],
  10481. "time": "2024-03-02T07:17:12+00:00"
  10482. },
  10483. {
  10484. "name": "sebastian/global-state",
  10485. "version": "6.0.2",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/sebastianbergmann/global-state.git",
  10489. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10494. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "php": ">=8.1",
  10499. "sebastian/object-reflector": "^3.0",
  10500. "sebastian/recursion-context": "^5.0"
  10501. },
  10502. "require-dev": {
  10503. "ext-dom": "*",
  10504. "phpunit/phpunit": "^10.0"
  10505. },
  10506. "type": "library",
  10507. "extra": {
  10508. "branch-alias": {
  10509. "dev-main": "6.0-dev"
  10510. }
  10511. },
  10512. "autoload": {
  10513. "classmap": [
  10514. "src/"
  10515. ]
  10516. },
  10517. "notification-url": "https://packagist.org/downloads/",
  10518. "license": [
  10519. "BSD-3-Clause"
  10520. ],
  10521. "authors": [
  10522. {
  10523. "name": "Sebastian Bergmann",
  10524. "email": "sebastian@phpunit.de"
  10525. }
  10526. ],
  10527. "description": "Snapshotting of global state",
  10528. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  10529. "keywords": [
  10530. "global state"
  10531. ],
  10532. "support": {
  10533. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10534. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  10535. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  10536. },
  10537. "funding": [
  10538. {
  10539. "url": "https://github.com/sebastianbergmann",
  10540. "type": "github"
  10541. }
  10542. ],
  10543. "time": "2024-03-02T07:19:19+00:00"
  10544. },
  10545. {
  10546. "name": "sebastian/lines-of-code",
  10547. "version": "2.0.2",
  10548. "source": {
  10549. "type": "git",
  10550. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10551. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  10552. },
  10553. "dist": {
  10554. "type": "zip",
  10555. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10556. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  10557. "shasum": ""
  10558. },
  10559. "require": {
  10560. "nikic/php-parser": "^4.18 || ^5.0",
  10561. "php": ">=8.1"
  10562. },
  10563. "require-dev": {
  10564. "phpunit/phpunit": "^10.0"
  10565. },
  10566. "type": "library",
  10567. "extra": {
  10568. "branch-alias": {
  10569. "dev-main": "2.0-dev"
  10570. }
  10571. },
  10572. "autoload": {
  10573. "classmap": [
  10574. "src/"
  10575. ]
  10576. },
  10577. "notification-url": "https://packagist.org/downloads/",
  10578. "license": [
  10579. "BSD-3-Clause"
  10580. ],
  10581. "authors": [
  10582. {
  10583. "name": "Sebastian Bergmann",
  10584. "email": "sebastian@phpunit.de",
  10585. "role": "lead"
  10586. }
  10587. ],
  10588. "description": "Library for counting the lines of code in PHP source code",
  10589. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10590. "support": {
  10591. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10592. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  10593. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  10594. },
  10595. "funding": [
  10596. {
  10597. "url": "https://github.com/sebastianbergmann",
  10598. "type": "github"
  10599. }
  10600. ],
  10601. "time": "2023-12-21T08:38:20+00:00"
  10602. },
  10603. {
  10604. "name": "sebastian/object-enumerator",
  10605. "version": "5.0.0",
  10606. "source": {
  10607. "type": "git",
  10608. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10609. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  10610. },
  10611. "dist": {
  10612. "type": "zip",
  10613. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  10614. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  10615. "shasum": ""
  10616. },
  10617. "require": {
  10618. "php": ">=8.1",
  10619. "sebastian/object-reflector": "^3.0",
  10620. "sebastian/recursion-context": "^5.0"
  10621. },
  10622. "require-dev": {
  10623. "phpunit/phpunit": "^10.0"
  10624. },
  10625. "type": "library",
  10626. "extra": {
  10627. "branch-alias": {
  10628. "dev-main": "5.0-dev"
  10629. }
  10630. },
  10631. "autoload": {
  10632. "classmap": [
  10633. "src/"
  10634. ]
  10635. },
  10636. "notification-url": "https://packagist.org/downloads/",
  10637. "license": [
  10638. "BSD-3-Clause"
  10639. ],
  10640. "authors": [
  10641. {
  10642. "name": "Sebastian Bergmann",
  10643. "email": "sebastian@phpunit.de"
  10644. }
  10645. ],
  10646. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10647. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10648. "support": {
  10649. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10650. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  10651. },
  10652. "funding": [
  10653. {
  10654. "url": "https://github.com/sebastianbergmann",
  10655. "type": "github"
  10656. }
  10657. ],
  10658. "time": "2023-02-03T07:08:32+00:00"
  10659. },
  10660. {
  10661. "name": "sebastian/object-reflector",
  10662. "version": "3.0.0",
  10663. "source": {
  10664. "type": "git",
  10665. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10666. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  10667. },
  10668. "dist": {
  10669. "type": "zip",
  10670. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  10671. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  10672. "shasum": ""
  10673. },
  10674. "require": {
  10675. "php": ">=8.1"
  10676. },
  10677. "require-dev": {
  10678. "phpunit/phpunit": "^10.0"
  10679. },
  10680. "type": "library",
  10681. "extra": {
  10682. "branch-alias": {
  10683. "dev-main": "3.0-dev"
  10684. }
  10685. },
  10686. "autoload": {
  10687. "classmap": [
  10688. "src/"
  10689. ]
  10690. },
  10691. "notification-url": "https://packagist.org/downloads/",
  10692. "license": [
  10693. "BSD-3-Clause"
  10694. ],
  10695. "authors": [
  10696. {
  10697. "name": "Sebastian Bergmann",
  10698. "email": "sebastian@phpunit.de"
  10699. }
  10700. ],
  10701. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10702. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10703. "support": {
  10704. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10705. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  10706. },
  10707. "funding": [
  10708. {
  10709. "url": "https://github.com/sebastianbergmann",
  10710. "type": "github"
  10711. }
  10712. ],
  10713. "time": "2023-02-03T07:06:18+00:00"
  10714. },
  10715. {
  10716. "name": "sebastian/recursion-context",
  10717. "version": "5.0.0",
  10718. "source": {
  10719. "type": "git",
  10720. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10721. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  10722. },
  10723. "dist": {
  10724. "type": "zip",
  10725. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  10726. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  10727. "shasum": ""
  10728. },
  10729. "require": {
  10730. "php": ">=8.1"
  10731. },
  10732. "require-dev": {
  10733. "phpunit/phpunit": "^10.0"
  10734. },
  10735. "type": "library",
  10736. "extra": {
  10737. "branch-alias": {
  10738. "dev-main": "5.0-dev"
  10739. }
  10740. },
  10741. "autoload": {
  10742. "classmap": [
  10743. "src/"
  10744. ]
  10745. },
  10746. "notification-url": "https://packagist.org/downloads/",
  10747. "license": [
  10748. "BSD-3-Clause"
  10749. ],
  10750. "authors": [
  10751. {
  10752. "name": "Sebastian Bergmann",
  10753. "email": "sebastian@phpunit.de"
  10754. },
  10755. {
  10756. "name": "Jeff Welch",
  10757. "email": "whatthejeff@gmail.com"
  10758. },
  10759. {
  10760. "name": "Adam Harvey",
  10761. "email": "aharvey@php.net"
  10762. }
  10763. ],
  10764. "description": "Provides functionality to recursively process PHP variables",
  10765. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  10766. "support": {
  10767. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10768. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  10769. },
  10770. "funding": [
  10771. {
  10772. "url": "https://github.com/sebastianbergmann",
  10773. "type": "github"
  10774. }
  10775. ],
  10776. "time": "2023-02-03T07:05:40+00:00"
  10777. },
  10778. {
  10779. "name": "sebastian/type",
  10780. "version": "4.0.0",
  10781. "source": {
  10782. "type": "git",
  10783. "url": "https://github.com/sebastianbergmann/type.git",
  10784. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  10785. },
  10786. "dist": {
  10787. "type": "zip",
  10788. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  10789. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  10790. "shasum": ""
  10791. },
  10792. "require": {
  10793. "php": ">=8.1"
  10794. },
  10795. "require-dev": {
  10796. "phpunit/phpunit": "^10.0"
  10797. },
  10798. "type": "library",
  10799. "extra": {
  10800. "branch-alias": {
  10801. "dev-main": "4.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. "role": "lead"
  10818. }
  10819. ],
  10820. "description": "Collection of value objects that represent the types of the PHP type system",
  10821. "homepage": "https://github.com/sebastianbergmann/type",
  10822. "support": {
  10823. "issues": "https://github.com/sebastianbergmann/type/issues",
  10824. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  10825. },
  10826. "funding": [
  10827. {
  10828. "url": "https://github.com/sebastianbergmann",
  10829. "type": "github"
  10830. }
  10831. ],
  10832. "time": "2023-02-03T07:10:45+00:00"
  10833. },
  10834. {
  10835. "name": "sebastian/version",
  10836. "version": "4.0.1",
  10837. "source": {
  10838. "type": "git",
  10839. "url": "https://github.com/sebastianbergmann/version.git",
  10840. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  10841. },
  10842. "dist": {
  10843. "type": "zip",
  10844. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10845. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  10846. "shasum": ""
  10847. },
  10848. "require": {
  10849. "php": ">=8.1"
  10850. },
  10851. "type": "library",
  10852. "extra": {
  10853. "branch-alias": {
  10854. "dev-main": "4.0-dev"
  10855. }
  10856. },
  10857. "autoload": {
  10858. "classmap": [
  10859. "src/"
  10860. ]
  10861. },
  10862. "notification-url": "https://packagist.org/downloads/",
  10863. "license": [
  10864. "BSD-3-Clause"
  10865. ],
  10866. "authors": [
  10867. {
  10868. "name": "Sebastian Bergmann",
  10869. "email": "sebastian@phpunit.de",
  10870. "role": "lead"
  10871. }
  10872. ],
  10873. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10874. "homepage": "https://github.com/sebastianbergmann/version",
  10875. "support": {
  10876. "issues": "https://github.com/sebastianbergmann/version/issues",
  10877. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  10878. },
  10879. "funding": [
  10880. {
  10881. "url": "https://github.com/sebastianbergmann",
  10882. "type": "github"
  10883. }
  10884. ],
  10885. "time": "2023-02-07T11:34:05+00:00"
  10886. },
  10887. {
  10888. "name": "swoole/ide-helper",
  10889. "version": "5.1.5",
  10890. "source": {
  10891. "type": "git",
  10892. "url": "https://github.com/swoole/ide-helper.git",
  10893. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  10894. },
  10895. "dist": {
  10896. "type": "zip",
  10897. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10898. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  10899. "shasum": ""
  10900. },
  10901. "type": "library",
  10902. "notification-url": "https://packagist.org/downloads/",
  10903. "license": [
  10904. "Apache-2.0"
  10905. ],
  10906. "authors": [
  10907. {
  10908. "name": "Team Swoole",
  10909. "email": "team@swoole.com"
  10910. }
  10911. ],
  10912. "description": "IDE help files for Swoole.",
  10913. "support": {
  10914. "issues": "https://github.com/swoole/ide-helper/issues",
  10915. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  10916. },
  10917. "time": "2024-11-05T07:35:30+00:00"
  10918. },
  10919. {
  10920. "name": "symfony/event-dispatcher",
  10921. "version": "v6.4.13",
  10922. "source": {
  10923. "type": "git",
  10924. "url": "https://github.com/symfony/event-dispatcher.git",
  10925. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  10926. },
  10927. "dist": {
  10928. "type": "zip",
  10929. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10930. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  10931. "shasum": ""
  10932. },
  10933. "require": {
  10934. "php": ">=8.1",
  10935. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10936. },
  10937. "conflict": {
  10938. "symfony/dependency-injection": "<5.4",
  10939. "symfony/service-contracts": "<2.5"
  10940. },
  10941. "provide": {
  10942. "psr/event-dispatcher-implementation": "1.0",
  10943. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10944. },
  10945. "require-dev": {
  10946. "psr/log": "^1|^2|^3",
  10947. "symfony/config": "^5.4|^6.0|^7.0",
  10948. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10949. "symfony/error-handler": "^5.4|^6.0|^7.0",
  10950. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10951. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  10952. "symfony/service-contracts": "^2.5|^3",
  10953. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  10954. },
  10955. "type": "library",
  10956. "autoload": {
  10957. "psr-4": {
  10958. "Symfony\\Component\\EventDispatcher\\": ""
  10959. },
  10960. "exclude-from-classmap": [
  10961. "/Tests/"
  10962. ]
  10963. },
  10964. "notification-url": "https://packagist.org/downloads/",
  10965. "license": [
  10966. "MIT"
  10967. ],
  10968. "authors": [
  10969. {
  10970. "name": "Fabien Potencier",
  10971. "email": "fabien@symfony.com"
  10972. },
  10973. {
  10974. "name": "Symfony Community",
  10975. "homepage": "https://symfony.com/contributors"
  10976. }
  10977. ],
  10978. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10979. "homepage": "https://symfony.com",
  10980. "support": {
  10981. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  10982. },
  10983. "funding": [
  10984. {
  10985. "url": "https://symfony.com/sponsor",
  10986. "type": "custom"
  10987. },
  10988. {
  10989. "url": "https://github.com/fabpot",
  10990. "type": "github"
  10991. },
  10992. {
  10993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10994. "type": "tidelift"
  10995. }
  10996. ],
  10997. "time": "2024-09-25T14:18:03+00:00"
  10998. },
  10999. {
  11000. "name": "symfony/event-dispatcher-contracts",
  11001. "version": "v3.5.0",
  11002. "source": {
  11003. "type": "git",
  11004. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11005. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  11006. },
  11007. "dist": {
  11008. "type": "zip",
  11009. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  11010. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  11011. "shasum": ""
  11012. },
  11013. "require": {
  11014. "php": ">=8.1",
  11015. "psr/event-dispatcher": "^1"
  11016. },
  11017. "type": "library",
  11018. "extra": {
  11019. "branch-alias": {
  11020. "dev-main": "3.5-dev"
  11021. },
  11022. "thanks": {
  11023. "name": "symfony/contracts",
  11024. "url": "https://github.com/symfony/contracts"
  11025. }
  11026. },
  11027. "autoload": {
  11028. "psr-4": {
  11029. "Symfony\\Contracts\\EventDispatcher\\": ""
  11030. }
  11031. },
  11032. "notification-url": "https://packagist.org/downloads/",
  11033. "license": [
  11034. "MIT"
  11035. ],
  11036. "authors": [
  11037. {
  11038. "name": "Nicolas Grekas",
  11039. "email": "p@tchwork.com"
  11040. },
  11041. {
  11042. "name": "Symfony Community",
  11043. "homepage": "https://symfony.com/contributors"
  11044. }
  11045. ],
  11046. "description": "Generic abstractions related to dispatching event",
  11047. "homepage": "https://symfony.com",
  11048. "keywords": [
  11049. "abstractions",
  11050. "contracts",
  11051. "decoupling",
  11052. "interfaces",
  11053. "interoperability",
  11054. "standards"
  11055. ],
  11056. "support": {
  11057. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  11058. },
  11059. "funding": [
  11060. {
  11061. "url": "https://symfony.com/sponsor",
  11062. "type": "custom"
  11063. },
  11064. {
  11065. "url": "https://github.com/fabpot",
  11066. "type": "github"
  11067. },
  11068. {
  11069. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11070. "type": "tidelift"
  11071. }
  11072. ],
  11073. "time": "2024-04-18T09:32:20+00:00"
  11074. },
  11075. {
  11076. "name": "symfony/filesystem",
  11077. "version": "v6.4.13",
  11078. "source": {
  11079. "type": "git",
  11080. "url": "https://github.com/symfony/filesystem.git",
  11081. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11082. },
  11083. "dist": {
  11084. "type": "zip",
  11085. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11086. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11087. "shasum": ""
  11088. },
  11089. "require": {
  11090. "php": ">=8.1",
  11091. "symfony/polyfill-ctype": "~1.8",
  11092. "symfony/polyfill-mbstring": "~1.8"
  11093. },
  11094. "require-dev": {
  11095. "symfony/process": "^5.4|^6.4|^7.0"
  11096. },
  11097. "type": "library",
  11098. "autoload": {
  11099. "psr-4": {
  11100. "Symfony\\Component\\Filesystem\\": ""
  11101. },
  11102. "exclude-from-classmap": [
  11103. "/Tests/"
  11104. ]
  11105. },
  11106. "notification-url": "https://packagist.org/downloads/",
  11107. "license": [
  11108. "MIT"
  11109. ],
  11110. "authors": [
  11111. {
  11112. "name": "Fabien Potencier",
  11113. "email": "fabien@symfony.com"
  11114. },
  11115. {
  11116. "name": "Symfony Community",
  11117. "homepage": "https://symfony.com/contributors"
  11118. }
  11119. ],
  11120. "description": "Provides basic utilities for the filesystem",
  11121. "homepage": "https://symfony.com",
  11122. "support": {
  11123. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11124. },
  11125. "funding": [
  11126. {
  11127. "url": "https://symfony.com/sponsor",
  11128. "type": "custom"
  11129. },
  11130. {
  11131. "url": "https://github.com/fabpot",
  11132. "type": "github"
  11133. },
  11134. {
  11135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11136. "type": "tidelift"
  11137. }
  11138. ],
  11139. "time": "2024-10-25T15:07:50+00:00"
  11140. },
  11141. {
  11142. "name": "symfony/http-foundation",
  11143. "version": "v6.4.14",
  11144. "source": {
  11145. "type": "git",
  11146. "url": "https://github.com/symfony/http-foundation.git",
  11147. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  11148. },
  11149. "dist": {
  11150. "type": "zip",
  11151. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  11152. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  11153. "shasum": ""
  11154. },
  11155. "require": {
  11156. "php": ">=8.1",
  11157. "symfony/deprecation-contracts": "^2.5|^3",
  11158. "symfony/polyfill-mbstring": "~1.1",
  11159. "symfony/polyfill-php83": "^1.27"
  11160. },
  11161. "conflict": {
  11162. "symfony/cache": "<6.3"
  11163. },
  11164. "require-dev": {
  11165. "doctrine/dbal": "^2.13.1|^3|^4",
  11166. "predis/predis": "^1.1|^2.0",
  11167. "symfony/cache": "^6.3|^7.0",
  11168. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11169. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11170. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11171. "symfony/mime": "^5.4|^6.0|^7.0",
  11172. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11173. },
  11174. "type": "library",
  11175. "autoload": {
  11176. "psr-4": {
  11177. "Symfony\\Component\\HttpFoundation\\": ""
  11178. },
  11179. "exclude-from-classmap": [
  11180. "/Tests/"
  11181. ]
  11182. },
  11183. "notification-url": "https://packagist.org/downloads/",
  11184. "license": [
  11185. "MIT"
  11186. ],
  11187. "authors": [
  11188. {
  11189. "name": "Fabien Potencier",
  11190. "email": "fabien@symfony.com"
  11191. },
  11192. {
  11193. "name": "Symfony Community",
  11194. "homepage": "https://symfony.com/contributors"
  11195. }
  11196. ],
  11197. "description": "Defines an object-oriented layer for the HTTP specification",
  11198. "homepage": "https://symfony.com",
  11199. "support": {
  11200. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  11201. },
  11202. "funding": [
  11203. {
  11204. "url": "https://symfony.com/sponsor",
  11205. "type": "custom"
  11206. },
  11207. {
  11208. "url": "https://github.com/fabpot",
  11209. "type": "github"
  11210. },
  11211. {
  11212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11213. "type": "tidelift"
  11214. }
  11215. ],
  11216. "time": "2024-11-05T16:39:55+00:00"
  11217. },
  11218. {
  11219. "name": "symfony/options-resolver",
  11220. "version": "v6.4.13",
  11221. "source": {
  11222. "type": "git",
  11223. "url": "https://github.com/symfony/options-resolver.git",
  11224. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  11225. },
  11226. "dist": {
  11227. "type": "zip",
  11228. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11229. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  11230. "shasum": ""
  11231. },
  11232. "require": {
  11233. "php": ">=8.1",
  11234. "symfony/deprecation-contracts": "^2.5|^3"
  11235. },
  11236. "type": "library",
  11237. "autoload": {
  11238. "psr-4": {
  11239. "Symfony\\Component\\OptionsResolver\\": ""
  11240. },
  11241. "exclude-from-classmap": [
  11242. "/Tests/"
  11243. ]
  11244. },
  11245. "notification-url": "https://packagist.org/downloads/",
  11246. "license": [
  11247. "MIT"
  11248. ],
  11249. "authors": [
  11250. {
  11251. "name": "Fabien Potencier",
  11252. "email": "fabien@symfony.com"
  11253. },
  11254. {
  11255. "name": "Symfony Community",
  11256. "homepage": "https://symfony.com/contributors"
  11257. }
  11258. ],
  11259. "description": "Provides an improved replacement for the array_replace PHP function",
  11260. "homepage": "https://symfony.com",
  11261. "keywords": [
  11262. "config",
  11263. "configuration",
  11264. "options"
  11265. ],
  11266. "support": {
  11267. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  11268. },
  11269. "funding": [
  11270. {
  11271. "url": "https://symfony.com/sponsor",
  11272. "type": "custom"
  11273. },
  11274. {
  11275. "url": "https://github.com/fabpot",
  11276. "type": "github"
  11277. },
  11278. {
  11279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11280. "type": "tidelift"
  11281. }
  11282. ],
  11283. "time": "2024-09-25T14:18:03+00:00"
  11284. },
  11285. {
  11286. "name": "symfony/polyfill-php81",
  11287. "version": "v1.31.0",
  11288. "source": {
  11289. "type": "git",
  11290. "url": "https://github.com/symfony/polyfill-php81.git",
  11291. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  11292. },
  11293. "dist": {
  11294. "type": "zip",
  11295. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11296. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  11297. "shasum": ""
  11298. },
  11299. "require": {
  11300. "php": ">=7.2"
  11301. },
  11302. "type": "library",
  11303. "extra": {
  11304. "thanks": {
  11305. "name": "symfony/polyfill",
  11306. "url": "https://github.com/symfony/polyfill"
  11307. }
  11308. },
  11309. "autoload": {
  11310. "files": [
  11311. "bootstrap.php"
  11312. ],
  11313. "psr-4": {
  11314. "Symfony\\Polyfill\\Php81\\": ""
  11315. },
  11316. "classmap": [
  11317. "Resources/stubs"
  11318. ]
  11319. },
  11320. "notification-url": "https://packagist.org/downloads/",
  11321. "license": [
  11322. "MIT"
  11323. ],
  11324. "authors": [
  11325. {
  11326. "name": "Nicolas Grekas",
  11327. "email": "p@tchwork.com"
  11328. },
  11329. {
  11330. "name": "Symfony Community",
  11331. "homepage": "https://symfony.com/contributors"
  11332. }
  11333. ],
  11334. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11335. "homepage": "https://symfony.com",
  11336. "keywords": [
  11337. "compatibility",
  11338. "polyfill",
  11339. "portable",
  11340. "shim"
  11341. ],
  11342. "support": {
  11343. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  11344. },
  11345. "funding": [
  11346. {
  11347. "url": "https://symfony.com/sponsor",
  11348. "type": "custom"
  11349. },
  11350. {
  11351. "url": "https://github.com/fabpot",
  11352. "type": "github"
  11353. },
  11354. {
  11355. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11356. "type": "tidelift"
  11357. }
  11358. ],
  11359. "time": "2024-09-09T11:45:10+00:00"
  11360. },
  11361. {
  11362. "name": "symfony/polyfill-php83",
  11363. "version": "v1.31.0",
  11364. "source": {
  11365. "type": "git",
  11366. "url": "https://github.com/symfony/polyfill-php83.git",
  11367. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  11368. },
  11369. "dist": {
  11370. "type": "zip",
  11371. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  11372. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  11373. "shasum": ""
  11374. },
  11375. "require": {
  11376. "php": ">=7.2"
  11377. },
  11378. "type": "library",
  11379. "extra": {
  11380. "thanks": {
  11381. "name": "symfony/polyfill",
  11382. "url": "https://github.com/symfony/polyfill"
  11383. }
  11384. },
  11385. "autoload": {
  11386. "files": [
  11387. "bootstrap.php"
  11388. ],
  11389. "psr-4": {
  11390. "Symfony\\Polyfill\\Php83\\": ""
  11391. },
  11392. "classmap": [
  11393. "Resources/stubs"
  11394. ]
  11395. },
  11396. "notification-url": "https://packagist.org/downloads/",
  11397. "license": [
  11398. "MIT"
  11399. ],
  11400. "authors": [
  11401. {
  11402. "name": "Nicolas Grekas",
  11403. "email": "p@tchwork.com"
  11404. },
  11405. {
  11406. "name": "Symfony Community",
  11407. "homepage": "https://symfony.com/contributors"
  11408. }
  11409. ],
  11410. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11411. "homepage": "https://symfony.com",
  11412. "keywords": [
  11413. "compatibility",
  11414. "polyfill",
  11415. "portable",
  11416. "shim"
  11417. ],
  11418. "support": {
  11419. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  11420. },
  11421. "funding": [
  11422. {
  11423. "url": "https://symfony.com/sponsor",
  11424. "type": "custom"
  11425. },
  11426. {
  11427. "url": "https://github.com/fabpot",
  11428. "type": "github"
  11429. },
  11430. {
  11431. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11432. "type": "tidelift"
  11433. }
  11434. ],
  11435. "time": "2024-09-09T11:45:10+00:00"
  11436. },
  11437. {
  11438. "name": "symfony/process",
  11439. "version": "v6.4.14",
  11440. "source": {
  11441. "type": "git",
  11442. "url": "https://github.com/symfony/process.git",
  11443. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  11444. },
  11445. "dist": {
  11446. "type": "zip",
  11447. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  11448. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  11449. "shasum": ""
  11450. },
  11451. "require": {
  11452. "php": ">=8.1"
  11453. },
  11454. "type": "library",
  11455. "autoload": {
  11456. "psr-4": {
  11457. "Symfony\\Component\\Process\\": ""
  11458. },
  11459. "exclude-from-classmap": [
  11460. "/Tests/"
  11461. ]
  11462. },
  11463. "notification-url": "https://packagist.org/downloads/",
  11464. "license": [
  11465. "MIT"
  11466. ],
  11467. "authors": [
  11468. {
  11469. "name": "Fabien Potencier",
  11470. "email": "fabien@symfony.com"
  11471. },
  11472. {
  11473. "name": "Symfony Community",
  11474. "homepage": "https://symfony.com/contributors"
  11475. }
  11476. ],
  11477. "description": "Executes commands in sub-processes",
  11478. "homepage": "https://symfony.com",
  11479. "support": {
  11480. "source": "https://github.com/symfony/process/tree/v6.4.14"
  11481. },
  11482. "funding": [
  11483. {
  11484. "url": "https://symfony.com/sponsor",
  11485. "type": "custom"
  11486. },
  11487. {
  11488. "url": "https://github.com/fabpot",
  11489. "type": "github"
  11490. },
  11491. {
  11492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11493. "type": "tidelift"
  11494. }
  11495. ],
  11496. "time": "2024-11-06T09:25:01+00:00"
  11497. },
  11498. {
  11499. "name": "symfony/stopwatch",
  11500. "version": "v6.4.13",
  11501. "source": {
  11502. "type": "git",
  11503. "url": "https://github.com/symfony/stopwatch.git",
  11504. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  11505. },
  11506. "dist": {
  11507. "type": "zip",
  11508. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11509. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  11510. "shasum": ""
  11511. },
  11512. "require": {
  11513. "php": ">=8.1",
  11514. "symfony/service-contracts": "^2.5|^3"
  11515. },
  11516. "type": "library",
  11517. "autoload": {
  11518. "psr-4": {
  11519. "Symfony\\Component\\Stopwatch\\": ""
  11520. },
  11521. "exclude-from-classmap": [
  11522. "/Tests/"
  11523. ]
  11524. },
  11525. "notification-url": "https://packagist.org/downloads/",
  11526. "license": [
  11527. "MIT"
  11528. ],
  11529. "authors": [
  11530. {
  11531. "name": "Fabien Potencier",
  11532. "email": "fabien@symfony.com"
  11533. },
  11534. {
  11535. "name": "Symfony Community",
  11536. "homepage": "https://symfony.com/contributors"
  11537. }
  11538. ],
  11539. "description": "Provides a way to profile code",
  11540. "homepage": "https://symfony.com",
  11541. "support": {
  11542. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  11543. },
  11544. "funding": [
  11545. {
  11546. "url": "https://symfony.com/sponsor",
  11547. "type": "custom"
  11548. },
  11549. {
  11550. "url": "https://github.com/fabpot",
  11551. "type": "github"
  11552. },
  11553. {
  11554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11555. "type": "tidelift"
  11556. }
  11557. ],
  11558. "time": "2024-09-25T14:18:03+00:00"
  11559. },
  11560. {
  11561. "name": "theseer/tokenizer",
  11562. "version": "1.2.3",
  11563. "source": {
  11564. "type": "git",
  11565. "url": "https://github.com/theseer/tokenizer.git",
  11566. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  11567. },
  11568. "dist": {
  11569. "type": "zip",
  11570. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11571. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  11572. "shasum": ""
  11573. },
  11574. "require": {
  11575. "ext-dom": "*",
  11576. "ext-tokenizer": "*",
  11577. "ext-xmlwriter": "*",
  11578. "php": "^7.2 || ^8.0"
  11579. },
  11580. "type": "library",
  11581. "autoload": {
  11582. "classmap": [
  11583. "src/"
  11584. ]
  11585. },
  11586. "notification-url": "https://packagist.org/downloads/",
  11587. "license": [
  11588. "BSD-3-Clause"
  11589. ],
  11590. "authors": [
  11591. {
  11592. "name": "Arne Blankerts",
  11593. "email": "arne@blankerts.de",
  11594. "role": "Developer"
  11595. }
  11596. ],
  11597. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  11598. "support": {
  11599. "issues": "https://github.com/theseer/tokenizer/issues",
  11600. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  11601. },
  11602. "funding": [
  11603. {
  11604. "url": "https://github.com/theseer",
  11605. "type": "github"
  11606. }
  11607. ],
  11608. "time": "2024-03-03T12:36:25+00:00"
  11609. },
  11610. {
  11611. "name": "zx/php-tools",
  11612. "version": "v0.0.1",
  11613. "source": {
  11614. "type": "git",
  11615. "url": "https://gitee.com/open-php/php-tools.git",
  11616. "reference": "df3e3e7a213c5fde3eab4d14f132aba9b32fe615"
  11617. },
  11618. "require": {
  11619. "php": ">=7.0"
  11620. },
  11621. "type": "library",
  11622. "autoload": {
  11623. "psr-4": {
  11624. "ZX\\": "src/"
  11625. }
  11626. },
  11627. "notification-url": "https://packagist.org/downloads/",
  11628. "license": [
  11629. "mit"
  11630. ],
  11631. "authors": [
  11632. {
  11633. "name": "zx",
  11634. "email": "903464207@qq.com"
  11635. }
  11636. ],
  11637. "description": "php-tools",
  11638. "time": "2023-06-25T06:24:10+00:00"
  11639. }
  11640. ],
  11641. "aliases": [],
  11642. "minimum-stability": "dev",
  11643. "stability-flags": {},
  11644. "prefer-stable": true,
  11645. "prefer-lowest": false,
  11646. "platform": {
  11647. "php": ">=8.1"
  11648. },
  11649. "platform-dev": {},
  11650. "plugin-api-version": "2.6.0"
  11651. }