composer.lock 364 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283
  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": "1935bfafe4523350f25d98a64e75d710",
  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": "doctrine/annotations",
  80. "version": "2.0.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/doctrine/annotations.git",
  84. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/doctrine/annotations/zipball/901c2ee5d26eb64ff43c47976e114bf00843acf7",
  89. "reference": "901c2ee5d26eb64ff43c47976e114bf00843acf7",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "doctrine/lexer": "^2 || ^3",
  94. "ext-tokenizer": "*",
  95. "php": "^7.2 || ^8.0",
  96. "psr/cache": "^1 || ^2 || ^3"
  97. },
  98. "require-dev": {
  99. "doctrine/cache": "^2.0",
  100. "doctrine/coding-standard": "^10",
  101. "phpstan/phpstan": "^1.10.28",
  102. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  103. "symfony/cache": "^5.4 || ^6.4 || ^7",
  104. "vimeo/psalm": "^4.30 || ^5.14"
  105. },
  106. "suggest": {
  107. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  108. },
  109. "type": "library",
  110. "autoload": {
  111. "psr-4": {
  112. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "MIT"
  118. ],
  119. "authors": [
  120. {
  121. "name": "Guilherme Blanco",
  122. "email": "guilhermeblanco@gmail.com"
  123. },
  124. {
  125. "name": "Roman Borschel",
  126. "email": "roman@code-factory.org"
  127. },
  128. {
  129. "name": "Benjamin Eberlei",
  130. "email": "kontakt@beberlei.de"
  131. },
  132. {
  133. "name": "Jonathan Wage",
  134. "email": "jonwage@gmail.com"
  135. },
  136. {
  137. "name": "Johannes Schmitt",
  138. "email": "schmittjoh@gmail.com"
  139. }
  140. ],
  141. "description": "Docblock Annotations Parser",
  142. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  143. "keywords": [
  144. "annotations",
  145. "docblock",
  146. "parser"
  147. ],
  148. "support": {
  149. "issues": "https://github.com/doctrine/annotations/issues",
  150. "source": "https://github.com/doctrine/annotations/tree/2.0.2"
  151. },
  152. "time": "2024-09-05T10:17:24+00:00"
  153. },
  154. {
  155. "name": "doctrine/inflector",
  156. "version": "2.0.10",
  157. "source": {
  158. "type": "git",
  159. "url": "https://github.com/doctrine/inflector.git",
  160. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  161. },
  162. "dist": {
  163. "type": "zip",
  164. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  165. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  166. "shasum": ""
  167. },
  168. "require": {
  169. "php": "^7.2 || ^8.0"
  170. },
  171. "require-dev": {
  172. "doctrine/coding-standard": "^11.0",
  173. "phpstan/phpstan": "^1.8",
  174. "phpstan/phpstan-phpunit": "^1.1",
  175. "phpstan/phpstan-strict-rules": "^1.3",
  176. "phpunit/phpunit": "^8.5 || ^9.5",
  177. "vimeo/psalm": "^4.25 || ^5.4"
  178. },
  179. "type": "library",
  180. "autoload": {
  181. "psr-4": {
  182. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  183. }
  184. },
  185. "notification-url": "https://packagist.org/downloads/",
  186. "license": [
  187. "MIT"
  188. ],
  189. "authors": [
  190. {
  191. "name": "Guilherme Blanco",
  192. "email": "guilhermeblanco@gmail.com"
  193. },
  194. {
  195. "name": "Roman Borschel",
  196. "email": "roman@code-factory.org"
  197. },
  198. {
  199. "name": "Benjamin Eberlei",
  200. "email": "kontakt@beberlei.de"
  201. },
  202. {
  203. "name": "Jonathan Wage",
  204. "email": "jonwage@gmail.com"
  205. },
  206. {
  207. "name": "Johannes Schmitt",
  208. "email": "schmittjoh@gmail.com"
  209. }
  210. ],
  211. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  212. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  213. "keywords": [
  214. "inflection",
  215. "inflector",
  216. "lowercase",
  217. "manipulation",
  218. "php",
  219. "plural",
  220. "singular",
  221. "strings",
  222. "uppercase",
  223. "words"
  224. ],
  225. "support": {
  226. "issues": "https://github.com/doctrine/inflector/issues",
  227. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  228. },
  229. "funding": [
  230. {
  231. "url": "https://www.doctrine-project.org/sponsorship.html",
  232. "type": "custom"
  233. },
  234. {
  235. "url": "https://www.patreon.com/phpdoctrine",
  236. "type": "patreon"
  237. },
  238. {
  239. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  240. "type": "tidelift"
  241. }
  242. ],
  243. "time": "2024-02-18T20:23:39+00:00"
  244. },
  245. {
  246. "name": "doctrine/instantiator",
  247. "version": "1.5.0",
  248. "source": {
  249. "type": "git",
  250. "url": "https://github.com/doctrine/instantiator.git",
  251. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  252. },
  253. "dist": {
  254. "type": "zip",
  255. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  256. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  257. "shasum": ""
  258. },
  259. "require": {
  260. "php": "^7.1 || ^8.0"
  261. },
  262. "require-dev": {
  263. "doctrine/coding-standard": "^9 || ^11",
  264. "ext-pdo": "*",
  265. "ext-phar": "*",
  266. "phpbench/phpbench": "^0.16 || ^1",
  267. "phpstan/phpstan": "^1.4",
  268. "phpstan/phpstan-phpunit": "^1",
  269. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  270. "vimeo/psalm": "^4.30 || ^5.4"
  271. },
  272. "type": "library",
  273. "autoload": {
  274. "psr-4": {
  275. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  276. }
  277. },
  278. "notification-url": "https://packagist.org/downloads/",
  279. "license": [
  280. "MIT"
  281. ],
  282. "authors": [
  283. {
  284. "name": "Marco Pivetta",
  285. "email": "ocramius@gmail.com",
  286. "homepage": "https://ocramius.github.io/"
  287. }
  288. ],
  289. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  290. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  291. "keywords": [
  292. "constructor",
  293. "instantiate"
  294. ],
  295. "support": {
  296. "issues": "https://github.com/doctrine/instantiator/issues",
  297. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  298. },
  299. "funding": [
  300. {
  301. "url": "https://www.doctrine-project.org/sponsorship.html",
  302. "type": "custom"
  303. },
  304. {
  305. "url": "https://www.patreon.com/phpdoctrine",
  306. "type": "patreon"
  307. },
  308. {
  309. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  310. "type": "tidelift"
  311. }
  312. ],
  313. "time": "2022-12-30T00:15:36+00:00"
  314. },
  315. {
  316. "name": "doctrine/lexer",
  317. "version": "3.0.1",
  318. "source": {
  319. "type": "git",
  320. "url": "https://github.com/doctrine/lexer.git",
  321. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  322. },
  323. "dist": {
  324. "type": "zip",
  325. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  326. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  327. "shasum": ""
  328. },
  329. "require": {
  330. "php": "^8.1"
  331. },
  332. "require-dev": {
  333. "doctrine/coding-standard": "^12",
  334. "phpstan/phpstan": "^1.10",
  335. "phpunit/phpunit": "^10.5",
  336. "psalm/plugin-phpunit": "^0.18.3",
  337. "vimeo/psalm": "^5.21"
  338. },
  339. "type": "library",
  340. "autoload": {
  341. "psr-4": {
  342. "Doctrine\\Common\\Lexer\\": "src"
  343. }
  344. },
  345. "notification-url": "https://packagist.org/downloads/",
  346. "license": [
  347. "MIT"
  348. ],
  349. "authors": [
  350. {
  351. "name": "Guilherme Blanco",
  352. "email": "guilhermeblanco@gmail.com"
  353. },
  354. {
  355. "name": "Roman Borschel",
  356. "email": "roman@code-factory.org"
  357. },
  358. {
  359. "name": "Johannes Schmitt",
  360. "email": "schmittjoh@gmail.com"
  361. }
  362. ],
  363. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  364. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  365. "keywords": [
  366. "annotations",
  367. "docblock",
  368. "lexer",
  369. "parser",
  370. "php"
  371. ],
  372. "support": {
  373. "issues": "https://github.com/doctrine/lexer/issues",
  374. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  375. },
  376. "funding": [
  377. {
  378. "url": "https://www.doctrine-project.org/sponsorship.html",
  379. "type": "custom"
  380. },
  381. {
  382. "url": "https://www.patreon.com/phpdoctrine",
  383. "type": "patreon"
  384. },
  385. {
  386. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  387. "type": "tidelift"
  388. }
  389. ],
  390. "time": "2024-02-05T11:56:58+00:00"
  391. },
  392. {
  393. "name": "fig/http-message-util",
  394. "version": "1.1.5",
  395. "source": {
  396. "type": "git",
  397. "url": "https://github.com/php-fig/http-message-util.git",
  398. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  399. },
  400. "dist": {
  401. "type": "zip",
  402. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  403. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  404. "shasum": ""
  405. },
  406. "require": {
  407. "php": "^5.3 || ^7.0 || ^8.0"
  408. },
  409. "suggest": {
  410. "psr/http-message": "The package containing the PSR-7 interfaces"
  411. },
  412. "type": "library",
  413. "extra": {
  414. "branch-alias": {
  415. "dev-master": "1.1.x-dev"
  416. }
  417. },
  418. "autoload": {
  419. "psr-4": {
  420. "Fig\\Http\\Message\\": "src/"
  421. }
  422. },
  423. "notification-url": "https://packagist.org/downloads/",
  424. "license": [
  425. "MIT"
  426. ],
  427. "authors": [
  428. {
  429. "name": "PHP-FIG",
  430. "homepage": "https://www.php-fig.org/"
  431. }
  432. ],
  433. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  434. "keywords": [
  435. "http",
  436. "http-message",
  437. "psr",
  438. "psr-7",
  439. "request",
  440. "response"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/php-fig/http-message-util/issues",
  444. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  445. },
  446. "time": "2020-11-24T22:02:12+00:00"
  447. },
  448. {
  449. "name": "graham-campbell/result-type",
  450. "version": "v1.1.3",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  454. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  459. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "php": "^7.2.5 || ^8.0",
  464. "phpoption/phpoption": "^1.9.3"
  465. },
  466. "require-dev": {
  467. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  468. },
  469. "type": "library",
  470. "autoload": {
  471. "psr-4": {
  472. "GrahamCampbell\\ResultType\\": "src/"
  473. }
  474. },
  475. "notification-url": "https://packagist.org/downloads/",
  476. "license": [
  477. "MIT"
  478. ],
  479. "authors": [
  480. {
  481. "name": "Graham Campbell",
  482. "email": "hello@gjcampbell.co.uk",
  483. "homepage": "https://github.com/GrahamCampbell"
  484. }
  485. ],
  486. "description": "An Implementation Of The Result Type",
  487. "keywords": [
  488. "Graham Campbell",
  489. "GrahamCampbell",
  490. "Result Type",
  491. "Result-Type",
  492. "result"
  493. ],
  494. "support": {
  495. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  496. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  497. },
  498. "funding": [
  499. {
  500. "url": "https://github.com/GrahamCampbell",
  501. "type": "github"
  502. },
  503. {
  504. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  505. "type": "tidelift"
  506. }
  507. ],
  508. "time": "2024-07-20T21:45:45+00:00"
  509. },
  510. {
  511. "name": "guzzlehttp/guzzle",
  512. "version": "7.9.2",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/guzzle/guzzle.git",
  516. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  521. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  522. "shasum": ""
  523. },
  524. "require": {
  525. "ext-json": "*",
  526. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  527. "guzzlehttp/psr7": "^2.7.0",
  528. "php": "^7.2.5 || ^8.0",
  529. "psr/http-client": "^1.0",
  530. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  531. },
  532. "provide": {
  533. "psr/http-client-implementation": "1.0"
  534. },
  535. "require-dev": {
  536. "bamarni/composer-bin-plugin": "^1.8.2",
  537. "ext-curl": "*",
  538. "guzzle/client-integration-tests": "3.0.2",
  539. "php-http/message-factory": "^1.1",
  540. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  541. "psr/log": "^1.1 || ^2.0 || ^3.0"
  542. },
  543. "suggest": {
  544. "ext-curl": "Required for CURL handler support",
  545. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  546. "psr/log": "Required for using the Log middleware"
  547. },
  548. "type": "library",
  549. "extra": {
  550. "bamarni-bin": {
  551. "bin-links": true,
  552. "forward-command": false
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions_include.php"
  558. ],
  559. "psr-4": {
  560. "GuzzleHttp\\": "src/"
  561. }
  562. },
  563. "notification-url": "https://packagist.org/downloads/",
  564. "license": [
  565. "MIT"
  566. ],
  567. "authors": [
  568. {
  569. "name": "Graham Campbell",
  570. "email": "hello@gjcampbell.co.uk",
  571. "homepage": "https://github.com/GrahamCampbell"
  572. },
  573. {
  574. "name": "Michael Dowling",
  575. "email": "mtdowling@gmail.com",
  576. "homepage": "https://github.com/mtdowling"
  577. },
  578. {
  579. "name": "Jeremy Lindblom",
  580. "email": "jeremeamia@gmail.com",
  581. "homepage": "https://github.com/jeremeamia"
  582. },
  583. {
  584. "name": "George Mponos",
  585. "email": "gmponos@gmail.com",
  586. "homepage": "https://github.com/gmponos"
  587. },
  588. {
  589. "name": "Tobias Nyholm",
  590. "email": "tobias.nyholm@gmail.com",
  591. "homepage": "https://github.com/Nyholm"
  592. },
  593. {
  594. "name": "Márk Sági-Kazár",
  595. "email": "mark.sagikazar@gmail.com",
  596. "homepage": "https://github.com/sagikazarmark"
  597. },
  598. {
  599. "name": "Tobias Schultze",
  600. "email": "webmaster@tubo-world.de",
  601. "homepage": "https://github.com/Tobion"
  602. }
  603. ],
  604. "description": "Guzzle is a PHP HTTP client library",
  605. "keywords": [
  606. "client",
  607. "curl",
  608. "framework",
  609. "http",
  610. "http client",
  611. "psr-18",
  612. "psr-7",
  613. "rest",
  614. "web service"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/guzzle/guzzle/issues",
  618. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://github.com/GrahamCampbell",
  623. "type": "github"
  624. },
  625. {
  626. "url": "https://github.com/Nyholm",
  627. "type": "github"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-07-24T11:22:20+00:00"
  635. },
  636. {
  637. "name": "guzzlehttp/promises",
  638. "version": "2.0.4",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/guzzle/promises.git",
  642. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  647. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2.5 || ^8.0"
  652. },
  653. "require-dev": {
  654. "bamarni/composer-bin-plugin": "^1.8.2",
  655. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  656. },
  657. "type": "library",
  658. "extra": {
  659. "bamarni-bin": {
  660. "bin-links": true,
  661. "forward-command": false
  662. }
  663. },
  664. "autoload": {
  665. "psr-4": {
  666. "GuzzleHttp\\Promise\\": "src/"
  667. }
  668. },
  669. "notification-url": "https://packagist.org/downloads/",
  670. "license": [
  671. "MIT"
  672. ],
  673. "authors": [
  674. {
  675. "name": "Graham Campbell",
  676. "email": "hello@gjcampbell.co.uk",
  677. "homepage": "https://github.com/GrahamCampbell"
  678. },
  679. {
  680. "name": "Michael Dowling",
  681. "email": "mtdowling@gmail.com",
  682. "homepage": "https://github.com/mtdowling"
  683. },
  684. {
  685. "name": "Tobias Nyholm",
  686. "email": "tobias.nyholm@gmail.com",
  687. "homepage": "https://github.com/Nyholm"
  688. },
  689. {
  690. "name": "Tobias Schultze",
  691. "email": "webmaster@tubo-world.de",
  692. "homepage": "https://github.com/Tobion"
  693. }
  694. ],
  695. "description": "Guzzle promises library",
  696. "keywords": [
  697. "promise"
  698. ],
  699. "support": {
  700. "issues": "https://github.com/guzzle/promises/issues",
  701. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  702. },
  703. "funding": [
  704. {
  705. "url": "https://github.com/GrahamCampbell",
  706. "type": "github"
  707. },
  708. {
  709. "url": "https://github.com/Nyholm",
  710. "type": "github"
  711. },
  712. {
  713. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  714. "type": "tidelift"
  715. }
  716. ],
  717. "time": "2024-10-17T10:06:22+00:00"
  718. },
  719. {
  720. "name": "guzzlehttp/psr7",
  721. "version": "2.7.0",
  722. "source": {
  723. "type": "git",
  724. "url": "https://github.com/guzzle/psr7.git",
  725. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  726. },
  727. "dist": {
  728. "type": "zip",
  729. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  730. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  731. "shasum": ""
  732. },
  733. "require": {
  734. "php": "^7.2.5 || ^8.0",
  735. "psr/http-factory": "^1.0",
  736. "psr/http-message": "^1.1 || ^2.0",
  737. "ralouphie/getallheaders": "^3.0"
  738. },
  739. "provide": {
  740. "psr/http-factory-implementation": "1.0",
  741. "psr/http-message-implementation": "1.0"
  742. },
  743. "require-dev": {
  744. "bamarni/composer-bin-plugin": "^1.8.2",
  745. "http-interop/http-factory-tests": "0.9.0",
  746. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  747. },
  748. "suggest": {
  749. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "bamarni-bin": {
  754. "bin-links": true,
  755. "forward-command": false
  756. }
  757. },
  758. "autoload": {
  759. "psr-4": {
  760. "GuzzleHttp\\Psr7\\": "src/"
  761. }
  762. },
  763. "notification-url": "https://packagist.org/downloads/",
  764. "license": [
  765. "MIT"
  766. ],
  767. "authors": [
  768. {
  769. "name": "Graham Campbell",
  770. "email": "hello@gjcampbell.co.uk",
  771. "homepage": "https://github.com/GrahamCampbell"
  772. },
  773. {
  774. "name": "Michael Dowling",
  775. "email": "mtdowling@gmail.com",
  776. "homepage": "https://github.com/mtdowling"
  777. },
  778. {
  779. "name": "George Mponos",
  780. "email": "gmponos@gmail.com",
  781. "homepage": "https://github.com/gmponos"
  782. },
  783. {
  784. "name": "Tobias Nyholm",
  785. "email": "tobias.nyholm@gmail.com",
  786. "homepage": "https://github.com/Nyholm"
  787. },
  788. {
  789. "name": "Márk Sági-Kazár",
  790. "email": "mark.sagikazar@gmail.com",
  791. "homepage": "https://github.com/sagikazarmark"
  792. },
  793. {
  794. "name": "Tobias Schultze",
  795. "email": "webmaster@tubo-world.de",
  796. "homepage": "https://github.com/Tobion"
  797. },
  798. {
  799. "name": "Márk Sági-Kazár",
  800. "email": "mark.sagikazar@gmail.com",
  801. "homepage": "https://sagikazarmark.hu"
  802. }
  803. ],
  804. "description": "PSR-7 message implementation that also provides common utility methods",
  805. "keywords": [
  806. "http",
  807. "message",
  808. "psr-7",
  809. "request",
  810. "response",
  811. "stream",
  812. "uri",
  813. "url"
  814. ],
  815. "support": {
  816. "issues": "https://github.com/guzzle/psr7/issues",
  817. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  818. },
  819. "funding": [
  820. {
  821. "url": "https://github.com/GrahamCampbell",
  822. "type": "github"
  823. },
  824. {
  825. "url": "https://github.com/Nyholm",
  826. "type": "github"
  827. },
  828. {
  829. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  830. "type": "tidelift"
  831. }
  832. ],
  833. "time": "2024-07-18T11:15:46+00:00"
  834. },
  835. {
  836. "name": "hyperf/cache",
  837. "version": "v3.1.43",
  838. "source": {
  839. "type": "git",
  840. "url": "https://github.com/hyperf/cache.git",
  841. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33"
  842. },
  843. "dist": {
  844. "type": "zip",
  845. "url": "https://api.github.com/repos/hyperf/cache/zipball/1e3cc54cee776c8d32cf40912dee5d366383bc33",
  846. "reference": "1e3cc54cee776c8d32cf40912dee5d366383bc33",
  847. "shasum": ""
  848. },
  849. "require": {
  850. "hyperf/codec": "~3.1.0",
  851. "hyperf/collection": "~3.1.0",
  852. "hyperf/contract": "~3.1.0",
  853. "hyperf/support": "~3.1.0",
  854. "hyperf/utils": "~3.1.0",
  855. "php": ">=8.1",
  856. "psr/container": "^1.0 || ^2.0",
  857. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  858. },
  859. "suggest": {
  860. "hyperf/di": "Use cache annotations.",
  861. "hyperf/event": "Use listener to delete annotation cache."
  862. },
  863. "type": "library",
  864. "extra": {
  865. "branch-alias": {
  866. "dev-master": "3.1-dev"
  867. },
  868. "hyperf": {
  869. "config": "Hyperf\\Cache\\ConfigProvider"
  870. }
  871. },
  872. "autoload": {
  873. "psr-4": {
  874. "Hyperf\\Cache\\": "src/"
  875. }
  876. },
  877. "notification-url": "https://packagist.org/downloads/",
  878. "license": [
  879. "MIT"
  880. ],
  881. "description": "A cache component for hyperf.",
  882. "homepage": "https://hyperf.io",
  883. "keywords": [
  884. "cache",
  885. "hyperf",
  886. "php"
  887. ],
  888. "support": {
  889. "docs": "https://hyperf.wiki",
  890. "issues": "https://github.com/hyperf/hyperf/issues",
  891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  892. "source": "https://github.com/hyperf/hyperf"
  893. },
  894. "funding": [
  895. {
  896. "url": "https://hyperf.wiki/#/zh-cn/donate",
  897. "type": "custom"
  898. },
  899. {
  900. "url": "https://opencollective.com/hyperf",
  901. "type": "open_collective"
  902. }
  903. ],
  904. "time": "2024-10-09T10:22:39+00:00"
  905. },
  906. {
  907. "name": "hyperf/code-parser",
  908. "version": "v3.1.42",
  909. "source": {
  910. "type": "git",
  911. "url": "https://github.com/hyperf/code-parser.git",
  912. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2"
  913. },
  914. "dist": {
  915. "type": "zip",
  916. "url": "https://api.github.com/repos/hyperf/code-parser/zipball/81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  917. "reference": "81953c4ea9035ac5f0a4740ae157310ca4e18ff2",
  918. "shasum": ""
  919. },
  920. "require": {
  921. "hyperf/collection": "~3.1.0",
  922. "hyperf/stringable": "~3.1.0",
  923. "hyperf/support": "~3.1.0",
  924. "php": ">=8.1"
  925. },
  926. "suggest": {
  927. "jean85/pretty-package-versions": "Required to use PrettyVersions. (^1.2|^2.0)",
  928. "nikic/php-parser": "Required to use PhpParser. (^4.0)"
  929. },
  930. "type": "library",
  931. "extra": {
  932. "branch-alias": {
  933. "dev-master": "3.1-dev"
  934. }
  935. },
  936. "autoload": {
  937. "psr-4": {
  938. "Hyperf\\CodeParser\\": "src/"
  939. }
  940. },
  941. "notification-url": "https://packagist.org/downloads/",
  942. "license": [
  943. "MIT"
  944. ],
  945. "description": "A code parser component for Hyperf.",
  946. "homepage": "https://hyperf.io",
  947. "keywords": [
  948. "code-parser",
  949. "hyperf",
  950. "php",
  951. "swoole"
  952. ],
  953. "support": {
  954. "docs": "https://hyperf.wiki",
  955. "issues": "https://github.com/hyperf/hyperf/issues",
  956. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  957. "source": "https://github.com/hyperf/hyperf"
  958. },
  959. "funding": [
  960. {
  961. "url": "https://hyperf.wiki/#/zh-cn/donate",
  962. "type": "custom"
  963. },
  964. {
  965. "url": "https://opencollective.com/hyperf",
  966. "type": "open_collective"
  967. }
  968. ],
  969. "time": "2024-09-25T02:54:12+00:00"
  970. },
  971. {
  972. "name": "hyperf/codec",
  973. "version": "v3.1.42",
  974. "source": {
  975. "type": "git",
  976. "url": "https://github.com/hyperf/codec.git",
  977. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e"
  978. },
  979. "dist": {
  980. "type": "zip",
  981. "url": "https://api.github.com/repos/hyperf/codec/zipball/effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  982. "reference": "effc71c25e2d53c00fcf41da8bca083ac8a0db0e",
  983. "shasum": ""
  984. },
  985. "require": {
  986. "ext-json": "*",
  987. "ext-xml": "*",
  988. "hyperf/contract": "~3.1.0",
  989. "php": ">=8.1"
  990. },
  991. "suggest": {
  992. "ext-igbinary": "Required to use IgbinarySerializerPacker."
  993. },
  994. "type": "library",
  995. "extra": {
  996. "branch-alias": {
  997. "dev-master": "3.1-dev"
  998. }
  999. },
  1000. "autoload": {
  1001. "psr-4": {
  1002. "Hyperf\\Codec\\": "src/"
  1003. }
  1004. },
  1005. "notification-url": "https://packagist.org/downloads/",
  1006. "license": [
  1007. "MIT"
  1008. ],
  1009. "description": "A codec component for Hyperf.",
  1010. "homepage": "https://hyperf.io",
  1011. "keywords": [
  1012. "codec",
  1013. "hyperf",
  1014. "php",
  1015. "swoole"
  1016. ],
  1017. "support": {
  1018. "docs": "https://hyperf.wiki",
  1019. "issues": "https://github.com/hyperf/hyperf/issues",
  1020. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1021. "source": "https://github.com/hyperf/hyperf"
  1022. },
  1023. "funding": [
  1024. {
  1025. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1026. "type": "custom"
  1027. },
  1028. {
  1029. "url": "https://opencollective.com/hyperf",
  1030. "type": "open_collective"
  1031. }
  1032. ],
  1033. "time": "2024-09-25T02:54:12+00:00"
  1034. },
  1035. {
  1036. "name": "hyperf/collection",
  1037. "version": "v3.1.44",
  1038. "source": {
  1039. "type": "git",
  1040. "url": "https://github.com/hyperf/collection.git",
  1041. "reference": "7098171d93653aaa4c52183f39437dbf1219986f"
  1042. },
  1043. "dist": {
  1044. "type": "zip",
  1045. "url": "https://api.github.com/repos/hyperf/collection/zipball/7098171d93653aaa4c52183f39437dbf1219986f",
  1046. "reference": "7098171d93653aaa4c52183f39437dbf1219986f",
  1047. "shasum": ""
  1048. },
  1049. "require": {
  1050. "hyperf/conditionable": "~3.1.0",
  1051. "hyperf/contract": "~3.1.0",
  1052. "hyperf/macroable": "~3.1.0",
  1053. "hyperf/stringable": "~3.1.0",
  1054. "php": ">=8.1"
  1055. },
  1056. "type": "library",
  1057. "extra": {
  1058. "branch-alias": {
  1059. "dev-master": "3.1-dev"
  1060. }
  1061. },
  1062. "autoload": {
  1063. "files": [
  1064. "src/Functions.php"
  1065. ],
  1066. "psr-4": {
  1067. "Hyperf\\Collection\\": "src/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "description": "Hyperf Collection package which come from illuminate/collections",
  1075. "homepage": "https://hyperf.io",
  1076. "keywords": [
  1077. "collection",
  1078. "hyperf",
  1079. "php",
  1080. "swoole"
  1081. ],
  1082. "support": {
  1083. "docs": "https://hyperf.wiki",
  1084. "issues": "https://github.com/hyperf/hyperf/issues",
  1085. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1086. "source": "https://github.com/hyperf/hyperf"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1091. "type": "custom"
  1092. },
  1093. {
  1094. "url": "https://opencollective.com/hyperf",
  1095. "type": "open_collective"
  1096. }
  1097. ],
  1098. "time": "2024-10-23T10:12:23+00:00"
  1099. },
  1100. {
  1101. "name": "hyperf/command",
  1102. "version": "v3.1.42",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/hyperf/command.git",
  1106. "reference": "43047270c15bce06e19d217dc5ba02b284830e25"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/hyperf/command/zipball/43047270c15bce06e19d217dc5ba02b284830e25",
  1111. "reference": "43047270c15bce06e19d217dc5ba02b284830e25",
  1112. "shasum": ""
  1113. },
  1114. "require": {
  1115. "hyperf/collection": "~3.1.0",
  1116. "hyperf/context": "~3.1.0",
  1117. "hyperf/contract": "~3.1.0",
  1118. "hyperf/coroutine": "~3.1.0",
  1119. "hyperf/di": "~3.1.0",
  1120. "hyperf/stringable": "~3.1.0",
  1121. "hyperf/support": "~3.1.0",
  1122. "hyperf/tappable": "~3.1.0",
  1123. "php": ">=8.1",
  1124. "psr/event-dispatcher": "^1.0",
  1125. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  1126. },
  1127. "suggest": {
  1128. "hyperf/di": "Required to use annotations.",
  1129. "hyperf/event": "Required to use listeners."
  1130. },
  1131. "type": "library",
  1132. "extra": {
  1133. "branch-alias": {
  1134. "dev-master": "3.1-dev"
  1135. },
  1136. "hyperf": {
  1137. "config": "Hyperf\\Command\\ConfigProvider"
  1138. }
  1139. },
  1140. "autoload": {
  1141. "psr-4": {
  1142. "Hyperf\\Command\\": "src/"
  1143. }
  1144. },
  1145. "notification-url": "https://packagist.org/downloads/",
  1146. "license": [
  1147. "MIT"
  1148. ],
  1149. "description": "Command for hyperf",
  1150. "keywords": [
  1151. "command",
  1152. "php",
  1153. "swoole"
  1154. ],
  1155. "support": {
  1156. "issues": "https://github.com/hyperf/command/issues",
  1157. "source": "https://github.com/hyperf/command/tree/v3.1.42"
  1158. },
  1159. "funding": [
  1160. {
  1161. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1162. "type": "custom"
  1163. },
  1164. {
  1165. "url": "https://opencollective.com/hyperf",
  1166. "type": "open_collective"
  1167. }
  1168. ],
  1169. "time": "2024-09-25T02:54:12+00:00"
  1170. },
  1171. {
  1172. "name": "hyperf/conditionable",
  1173. "version": "v3.1.42",
  1174. "source": {
  1175. "type": "git",
  1176. "url": "https://github.com/hyperf/conditionable.git",
  1177. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1"
  1178. },
  1179. "dist": {
  1180. "type": "zip",
  1181. "url": "https://api.github.com/repos/hyperf/conditionable/zipball/dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1182. "reference": "dec9dec9dbde14e20f3d7ba000c3302381019de1",
  1183. "shasum": ""
  1184. },
  1185. "require": {
  1186. "php": ">=8.1"
  1187. },
  1188. "type": "library",
  1189. "extra": {
  1190. "branch-alias": {
  1191. "dev-master": "3.1-dev"
  1192. }
  1193. },
  1194. "autoload": {
  1195. "psr-4": {
  1196. "Hyperf\\Conditionable\\": "src/"
  1197. }
  1198. },
  1199. "notification-url": "https://packagist.org/downloads/",
  1200. "license": [
  1201. "MIT"
  1202. ],
  1203. "description": "Hyperf Macroable package which come from illuminate/conditionable",
  1204. "homepage": "https://hyperf.io",
  1205. "keywords": [
  1206. "conditionable",
  1207. "hyperf",
  1208. "php",
  1209. "swoole"
  1210. ],
  1211. "support": {
  1212. "docs": "https://hyperf.wiki",
  1213. "issues": "https://github.com/hyperf/hyperf/issues",
  1214. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1215. "source": "https://github.com/hyperf/hyperf"
  1216. },
  1217. "funding": [
  1218. {
  1219. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1220. "type": "custom"
  1221. },
  1222. {
  1223. "url": "https://opencollective.com/hyperf",
  1224. "type": "open_collective"
  1225. }
  1226. ],
  1227. "time": "2024-09-25T02:54:12+00:00"
  1228. },
  1229. {
  1230. "name": "hyperf/config",
  1231. "version": "v3.1.42",
  1232. "source": {
  1233. "type": "git",
  1234. "url": "https://github.com/hyperf/config.git",
  1235. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e"
  1236. },
  1237. "dist": {
  1238. "type": "zip",
  1239. "url": "https://api.github.com/repos/hyperf/config/zipball/1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1240. "reference": "1df5e310aab752d6195f89f5cc98daf3cdc4bb6e",
  1241. "shasum": ""
  1242. },
  1243. "require": {
  1244. "hyperf/collection": "~3.1.0",
  1245. "hyperf/contract": "~3.1.0",
  1246. "hyperf/support": "~3.1.0",
  1247. "php": ">=8.1",
  1248. "psr/container": "^1.0 || ^2.0",
  1249. "symfony/finder": "^5.0 || ^6.0 || ^7.0"
  1250. },
  1251. "suggest": {
  1252. "hyperf/context": "Required to use config()",
  1253. "hyperf/di": "Allows using @Value annotation",
  1254. "hyperf/event": "Allows using @Value annotation",
  1255. "hyperf/framework": "Allows using @Value annotation",
  1256. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "3.1-dev"
  1262. },
  1263. "hyperf": {
  1264. "config": "Hyperf\\Config\\ConfigProvider"
  1265. }
  1266. },
  1267. "autoload": {
  1268. "files": [
  1269. "./src/Functions.php"
  1270. ],
  1271. "psr-4": {
  1272. "Hyperf\\Config\\": "src/"
  1273. }
  1274. },
  1275. "notification-url": "https://packagist.org/downloads/",
  1276. "license": [
  1277. "MIT"
  1278. ],
  1279. "description": "An independent component that provides configuration container.",
  1280. "homepage": "https://hyperf.io",
  1281. "keywords": [
  1282. "config",
  1283. "configuration",
  1284. "hyperf",
  1285. "php",
  1286. "swoole"
  1287. ],
  1288. "support": {
  1289. "docs": "https://hyperf.wiki",
  1290. "issues": "https://github.com/hyperf/hyperf/issues",
  1291. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1292. "source": "https://github.com/hyperf/hyperf"
  1293. },
  1294. "funding": [
  1295. {
  1296. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1297. "type": "custom"
  1298. },
  1299. {
  1300. "url": "https://opencollective.com/hyperf",
  1301. "type": "open_collective"
  1302. }
  1303. ],
  1304. "time": "2024-09-25T02:54:12+00:00"
  1305. },
  1306. {
  1307. "name": "hyperf/config-center",
  1308. "version": "v3.1.42",
  1309. "source": {
  1310. "type": "git",
  1311. "url": "https://github.com/hyperf/config-center.git",
  1312. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3"
  1313. },
  1314. "dist": {
  1315. "type": "zip",
  1316. "url": "https://api.github.com/repos/hyperf/config-center/zipball/c96837394c842a0b1ece13b29ff972241021d4f3",
  1317. "reference": "c96837394c842a0b1ece13b29ff972241021d4f3",
  1318. "shasum": ""
  1319. },
  1320. "require": {
  1321. "hyperf/support": "~3.1.0",
  1322. "php": ">=8.1"
  1323. },
  1324. "suggest": {
  1325. "hyperf/process": "^2.1"
  1326. },
  1327. "type": "library",
  1328. "extra": {
  1329. "branch-alias": {
  1330. "dev-master": "3.1-dev"
  1331. },
  1332. "hyperf": {
  1333. "config": "Hyperf\\ConfigCenter\\ConfigProvider"
  1334. }
  1335. },
  1336. "autoload": {
  1337. "psr-4": {
  1338. "Hyperf\\ConfigCenter\\": "src/"
  1339. }
  1340. },
  1341. "notification-url": "https://packagist.org/downloads/",
  1342. "license": [
  1343. "MIT"
  1344. ],
  1345. "description": "The abstraction component of config center",
  1346. "homepage": "https://hyperf.io",
  1347. "keywords": [
  1348. "config-center",
  1349. "hyperf",
  1350. "php"
  1351. ],
  1352. "support": {
  1353. "docs": "https://hyperf.wiki",
  1354. "issues": "https://github.com/hyperf/hyperf/issues",
  1355. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1356. "source": "https://github.com/hyperf/hyperf"
  1357. },
  1358. "funding": [
  1359. {
  1360. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1361. "type": "custom"
  1362. },
  1363. {
  1364. "url": "https://opencollective.com/hyperf",
  1365. "type": "open_collective"
  1366. }
  1367. ],
  1368. "time": "2024-09-25T02:54:12+00:00"
  1369. },
  1370. {
  1371. "name": "hyperf/config-nacos",
  1372. "version": "v3.1.42",
  1373. "source": {
  1374. "type": "git",
  1375. "url": "https://github.com/hyperf/config-nacos.git",
  1376. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98"
  1377. },
  1378. "dist": {
  1379. "type": "zip",
  1380. "url": "https://api.github.com/repos/hyperf/config-nacos/zipball/f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1381. "reference": "f980296a1e8cdd1916433a99dcb98e6a1c49eb98",
  1382. "shasum": ""
  1383. },
  1384. "require": {
  1385. "hyperf/codec": "~3.1.0",
  1386. "hyperf/config-center": "~3.1.0",
  1387. "hyperf/contract": "~3.1.0",
  1388. "hyperf/guzzle": "~3.1.0",
  1389. "hyperf/nacos": "~3.1.0",
  1390. "hyperf/support": "~3.1.0",
  1391. "hyperf/utils": "~3.1.0",
  1392. "jetbrains/phpstorm-attributes": "^1.0",
  1393. "php": ">=8.1"
  1394. },
  1395. "suggest": {
  1396. "ext-json": "*",
  1397. "ext-simplexml": "*",
  1398. "ext-yaml": "*",
  1399. "hyperf/event": "Required to use listeners. (~2.2.0)",
  1400. "hyperf/framework": "Required to use listeners. (~2.2.0)",
  1401. "hyperf/process": "Required to use processes. (~2.2.0)"
  1402. },
  1403. "type": "library",
  1404. "extra": {
  1405. "branch-alias": {
  1406. "dev-master": "3.1-dev"
  1407. },
  1408. "hyperf": {
  1409. "config": "Hyperf\\ConfigNacos\\ConfigProvider"
  1410. }
  1411. },
  1412. "autoload": {
  1413. "psr-4": {
  1414. "Hyperf\\ConfigNacos\\": "src/"
  1415. }
  1416. },
  1417. "notification-url": "https://packagist.org/downloads/",
  1418. "license": [
  1419. "MIT"
  1420. ],
  1421. "description": "A nacos adapter for config center component.",
  1422. "homepage": "https://hyperf.io",
  1423. "keywords": [
  1424. "hyperf",
  1425. "nacos",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "funding": [
  1436. {
  1437. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1438. "type": "custom"
  1439. },
  1440. {
  1441. "url": "https://opencollective.com/hyperf",
  1442. "type": "open_collective"
  1443. }
  1444. ],
  1445. "time": "2024-09-25T02:54:12+00:00"
  1446. },
  1447. {
  1448. "name": "hyperf/constants",
  1449. "version": "v3.1.42",
  1450. "source": {
  1451. "type": "git",
  1452. "url": "https://github.com/hyperf/constants.git",
  1453. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae"
  1454. },
  1455. "dist": {
  1456. "type": "zip",
  1457. "url": "https://api.github.com/repos/hyperf/constants/zipball/e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1458. "reference": "e1e1184779cd163f9603ce234e1ecccb6fe382ae",
  1459. "shasum": ""
  1460. },
  1461. "require": {
  1462. "hyperf/di": "~3.1.0",
  1463. "hyperf/support": "~3.1.0",
  1464. "hyperf/utils": "~3.1.0",
  1465. "php": ">=8.1"
  1466. },
  1467. "suggest": {
  1468. "hyperf/translation": "Required to use translation."
  1469. },
  1470. "type": "library",
  1471. "extra": {
  1472. "branch-alias": {
  1473. "dev-master": "3.1-dev"
  1474. },
  1475. "hyperf": {
  1476. "config": "Hyperf\\Constants\\ConfigProvider"
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Hyperf\\Constants\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "description": "A constants component for hyperf.",
  1489. "homepage": "https://hyperf.io",
  1490. "keywords": [
  1491. "constants",
  1492. "hyperf",
  1493. "php"
  1494. ],
  1495. "support": {
  1496. "docs": "https://hyperf.wiki",
  1497. "issues": "https://github.com/hyperf/hyperf/issues",
  1498. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1499. "source": "https://github.com/hyperf/hyperf"
  1500. },
  1501. "funding": [
  1502. {
  1503. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1504. "type": "custom"
  1505. },
  1506. {
  1507. "url": "https://opencollective.com/hyperf",
  1508. "type": "open_collective"
  1509. }
  1510. ],
  1511. "time": "2024-09-25T02:54:12+00:00"
  1512. },
  1513. {
  1514. "name": "hyperf/consul",
  1515. "version": "v3.1.42",
  1516. "source": {
  1517. "type": "git",
  1518. "url": "https://github.com/hyperf/consul.git",
  1519. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef"
  1520. },
  1521. "dist": {
  1522. "type": "zip",
  1523. "url": "https://api.github.com/repos/hyperf/consul/zipball/12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1524. "reference": "12888dddd5bd4acebb6e4ca9729b3401dafa64ef",
  1525. "shasum": ""
  1526. },
  1527. "require": {
  1528. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  1529. "php": ">=8.1"
  1530. },
  1531. "type": "library",
  1532. "extra": {
  1533. "branch-alias": {
  1534. "dev-master": "3.1-dev"
  1535. },
  1536. "hyperf": {
  1537. "config": "Hyperf\\Consul\\ConfigProvider"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "Hyperf\\Consul\\": "src/"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "description": "A Consul Client for Hyperf.",
  1550. "homepage": "https://hyperf.io",
  1551. "keywords": [
  1552. "consul",
  1553. "consul-client",
  1554. "hyperf",
  1555. "php",
  1556. "swoole"
  1557. ],
  1558. "support": {
  1559. "docs": "https://hyperf.wiki",
  1560. "issues": "https://github.com/hyperf/hyperf/issues",
  1561. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1562. "source": "https://github.com/hyperf/hyperf"
  1563. },
  1564. "funding": [
  1565. {
  1566. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1567. "type": "custom"
  1568. },
  1569. {
  1570. "url": "https://opencollective.com/hyperf",
  1571. "type": "open_collective"
  1572. }
  1573. ],
  1574. "time": "2024-09-25T02:54:12+00:00"
  1575. },
  1576. {
  1577. "name": "hyperf/context",
  1578. "version": "v3.1.42",
  1579. "source": {
  1580. "type": "git",
  1581. "url": "https://github.com/hyperf/context.git",
  1582. "reference": "ac666862d644db7d813342c880826a1fda599bdf"
  1583. },
  1584. "dist": {
  1585. "type": "zip",
  1586. "url": "https://api.github.com/repos/hyperf/context/zipball/ac666862d644db7d813342c880826a1fda599bdf",
  1587. "reference": "ac666862d644db7d813342c880826a1fda599bdf",
  1588. "shasum": ""
  1589. },
  1590. "require": {
  1591. "hyperf/engine": "^2.0",
  1592. "php": ">=8.1"
  1593. },
  1594. "suggest": {
  1595. "swow/psr7-plus": "Required to use RequestContext and ResponseContext"
  1596. },
  1597. "type": "library",
  1598. "extra": {
  1599. "branch-alias": {
  1600. "dev-master": "3.1-dev"
  1601. }
  1602. },
  1603. "autoload": {
  1604. "psr-4": {
  1605. "Hyperf\\Context\\": "src/"
  1606. }
  1607. },
  1608. "notification-url": "https://packagist.org/downloads/",
  1609. "license": [
  1610. "MIT"
  1611. ],
  1612. "description": "A coroutine/application context library.",
  1613. "homepage": "https://hyperf.io",
  1614. "keywords": [
  1615. "Context",
  1616. "hyperf",
  1617. "php",
  1618. "swoole"
  1619. ],
  1620. "support": {
  1621. "docs": "https://hyperf.wiki",
  1622. "issues": "https://github.com/hyperf/hyperf/issues",
  1623. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1624. "source": "https://github.com/hyperf/hyperf"
  1625. },
  1626. "funding": [
  1627. {
  1628. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1629. "type": "custom"
  1630. },
  1631. {
  1632. "url": "https://opencollective.com/hyperf",
  1633. "type": "open_collective"
  1634. }
  1635. ],
  1636. "time": "2024-09-25T02:54:12+00:00"
  1637. },
  1638. {
  1639. "name": "hyperf/contract",
  1640. "version": "v3.1.42",
  1641. "source": {
  1642. "type": "git",
  1643. "url": "https://github.com/hyperf/contract.git",
  1644. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4"
  1645. },
  1646. "dist": {
  1647. "type": "zip",
  1648. "url": "https://api.github.com/repos/hyperf/contract/zipball/6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1649. "reference": "6ef2c7f98917c52ccda3a37ae65b190848dde6c4",
  1650. "shasum": ""
  1651. },
  1652. "require": {
  1653. "php": ">=8.1"
  1654. },
  1655. "type": "library",
  1656. "extra": {
  1657. "branch-alias": {
  1658. "dev-master": "3.1-dev"
  1659. }
  1660. },
  1661. "autoload": {
  1662. "psr-4": {
  1663. "Hyperf\\Contract\\": "src/"
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "description": "The contracts of Hyperf.",
  1671. "homepage": "https://hyperf.io",
  1672. "keywords": [
  1673. "hyperf",
  1674. "php",
  1675. "swoole"
  1676. ],
  1677. "support": {
  1678. "docs": "https://hyperf.wiki",
  1679. "issues": "https://github.com/hyperf/hyperf/issues",
  1680. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1681. "source": "https://github.com/hyperf/hyperf"
  1682. },
  1683. "funding": [
  1684. {
  1685. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1686. "type": "custom"
  1687. },
  1688. {
  1689. "url": "https://opencollective.com/hyperf",
  1690. "type": "open_collective"
  1691. }
  1692. ],
  1693. "time": "2024-09-25T02:54:12+00:00"
  1694. },
  1695. {
  1696. "name": "hyperf/coordinator",
  1697. "version": "v3.1.42",
  1698. "source": {
  1699. "type": "git",
  1700. "url": "https://github.com/hyperf/coordinator.git",
  1701. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56"
  1702. },
  1703. "dist": {
  1704. "type": "zip",
  1705. "url": "https://api.github.com/repos/hyperf/coordinator/zipball/a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1706. "reference": "a0497d2a260f166ab53fed2eca6bb4e48b49ef56",
  1707. "shasum": ""
  1708. },
  1709. "require": {
  1710. "hyperf/engine": "^2.0",
  1711. "php": ">=8.1"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "3.1-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "files": [
  1721. "src/Functions.php"
  1722. ],
  1723. "psr-4": {
  1724. "Hyperf\\Coordinator\\": "src/"
  1725. }
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "description": "Hyperf Coordinator",
  1732. "homepage": "https://hyperf.io",
  1733. "keywords": [
  1734. "Coordinator",
  1735. "hyperf",
  1736. "php",
  1737. "swoole"
  1738. ],
  1739. "support": {
  1740. "docs": "https://hyperf.wiki",
  1741. "issues": "https://github.com/hyperf/hyperf/issues",
  1742. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1743. "source": "https://github.com/hyperf/hyperf"
  1744. },
  1745. "funding": [
  1746. {
  1747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1748. "type": "custom"
  1749. },
  1750. {
  1751. "url": "https://opencollective.com/hyperf",
  1752. "type": "open_collective"
  1753. }
  1754. ],
  1755. "time": "2024-09-25T02:54:12+00:00"
  1756. },
  1757. {
  1758. "name": "hyperf/coroutine",
  1759. "version": "v3.1.42",
  1760. "source": {
  1761. "type": "git",
  1762. "url": "https://github.com/hyperf/coroutine.git",
  1763. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08"
  1764. },
  1765. "dist": {
  1766. "type": "zip",
  1767. "url": "https://api.github.com/repos/hyperf/coroutine/zipball/1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1768. "reference": "1dd56202a97bce60df644ea1a8c87ea7a0888a08",
  1769. "shasum": ""
  1770. },
  1771. "require": {
  1772. "hyperf/context": "~3.1.0",
  1773. "hyperf/contract": "~3.1.0",
  1774. "hyperf/engine": "^2.0",
  1775. "php": ">=8.1"
  1776. },
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "3.1-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "files": [
  1785. "src/Functions.php"
  1786. ],
  1787. "psr-4": {
  1788. "Hyperf\\Coroutine\\": "src/"
  1789. }
  1790. },
  1791. "notification-url": "https://packagist.org/downloads/",
  1792. "license": [
  1793. "MIT"
  1794. ],
  1795. "description": "Hyperf Coroutine",
  1796. "homepage": "https://hyperf.io",
  1797. "keywords": [
  1798. "coroutine",
  1799. "hyperf",
  1800. "php",
  1801. "swoole"
  1802. ],
  1803. "support": {
  1804. "docs": "https://hyperf.wiki",
  1805. "issues": "https://github.com/hyperf/hyperf/issues",
  1806. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1807. "source": "https://github.com/hyperf/hyperf"
  1808. },
  1809. "funding": [
  1810. {
  1811. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1812. "type": "custom"
  1813. },
  1814. {
  1815. "url": "https://opencollective.com/hyperf",
  1816. "type": "open_collective"
  1817. }
  1818. ],
  1819. "time": "2024-09-25T02:54:12+00:00"
  1820. },
  1821. {
  1822. "name": "hyperf/database",
  1823. "version": "v3.1.44",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://github.com/hyperf/database.git",
  1827. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1"
  1828. },
  1829. "dist": {
  1830. "type": "zip",
  1831. "url": "https://api.github.com/repos/hyperf/database/zipball/c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1832. "reference": "c0a9eb335c8f7c0b58fd1b300631d4aa593037a1",
  1833. "shasum": ""
  1834. },
  1835. "require": {
  1836. "hyperf/code-parser": "~3.1.0",
  1837. "hyperf/collection": "~3.1.23",
  1838. "hyperf/conditionable": "~3.1.0",
  1839. "hyperf/macroable": "~3.1.0",
  1840. "hyperf/support": "~3.1.0",
  1841. "hyperf/tappable": "~3.1.0",
  1842. "hyperf/utils": "~3.1.0",
  1843. "nesbot/carbon": "^2.0",
  1844. "php": ">=8.1",
  1845. "psr/container": "^1.0 || ^2.0",
  1846. "psr/event-dispatcher": "^1.0"
  1847. },
  1848. "suggest": {
  1849. "doctrine/dbal": "Required to rename columns (^3.0).",
  1850. "hyperf/paginator": "Required to paginate the result set (~3.1.0).",
  1851. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1852. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1853. },
  1854. "type": "library",
  1855. "extra": {
  1856. "branch-alias": {
  1857. "dev-master": "3.1-dev"
  1858. }
  1859. },
  1860. "autoload": {
  1861. "psr-4": {
  1862. "Hyperf\\Database\\": "src/"
  1863. }
  1864. },
  1865. "notification-url": "https://packagist.org/downloads/",
  1866. "license": [
  1867. "MIT"
  1868. ],
  1869. "description": "A flexible database library.",
  1870. "homepage": "https://hyperf.io",
  1871. "keywords": [
  1872. "database",
  1873. "hyperf",
  1874. "php"
  1875. ],
  1876. "support": {
  1877. "docs": "https://hyperf.wiki",
  1878. "issues": "https://github.com/hyperf/hyperf/issues",
  1879. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1880. "source": "https://github.com/hyperf/hyperf"
  1881. },
  1882. "funding": [
  1883. {
  1884. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1885. "type": "custom"
  1886. },
  1887. {
  1888. "url": "https://opencollective.com/hyperf",
  1889. "type": "open_collective"
  1890. }
  1891. ],
  1892. "time": "2024-10-11T10:25:57+00:00"
  1893. },
  1894. {
  1895. "name": "hyperf/db-connection",
  1896. "version": "v3.1.44",
  1897. "source": {
  1898. "type": "git",
  1899. "url": "https://github.com/hyperf/db-connection.git",
  1900. "reference": "95dbb713fda5556106b803d0201e1631645985b5"
  1901. },
  1902. "dist": {
  1903. "type": "zip",
  1904. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/95dbb713fda5556106b803d0201e1631645985b5",
  1905. "reference": "95dbb713fda5556106b803d0201e1631645985b5",
  1906. "shasum": ""
  1907. },
  1908. "require": {
  1909. "hyperf/database": "~3.1.0",
  1910. "hyperf/di": "~3.1.0",
  1911. "hyperf/framework": "~3.1.0",
  1912. "hyperf/model-listener": "~3.1.0",
  1913. "hyperf/pool": "~3.1.0",
  1914. "hyperf/support": "~3.1.0",
  1915. "hyperf/utils": "~3.1.0",
  1916. "php": ">=8.1",
  1917. "psr/container": "^1.0 || ^2.0"
  1918. },
  1919. "type": "library",
  1920. "extra": {
  1921. "branch-alias": {
  1922. "dev-master": "3.1-dev"
  1923. },
  1924. "hyperf": {
  1925. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1926. }
  1927. },
  1928. "autoload": {
  1929. "psr-4": {
  1930. "Hyperf\\DbConnection\\": "src/"
  1931. }
  1932. },
  1933. "notification-url": "https://packagist.org/downloads/",
  1934. "license": [
  1935. "MIT"
  1936. ],
  1937. "description": "A hyperf db connection handler for hyperf/database.",
  1938. "homepage": "https://hyperf.io",
  1939. "keywords": [
  1940. "Connection",
  1941. "database",
  1942. "hyperf",
  1943. "php"
  1944. ],
  1945. "support": {
  1946. "docs": "https://hyperf.wiki",
  1947. "issues": "https://github.com/hyperf/hyperf/issues",
  1948. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1949. "source": "https://github.com/hyperf/hyperf"
  1950. },
  1951. "funding": [
  1952. {
  1953. "url": "https://hyperf.wiki/#/zh-cn/donate",
  1954. "type": "custom"
  1955. },
  1956. {
  1957. "url": "https://opencollective.com/hyperf",
  1958. "type": "open_collective"
  1959. }
  1960. ],
  1961. "time": "2024-10-11T08:58:16+00:00"
  1962. },
  1963. {
  1964. "name": "hyperf/di",
  1965. "version": "v3.1.42",
  1966. "source": {
  1967. "type": "git",
  1968. "url": "https://github.com/hyperf/di.git",
  1969. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72"
  1970. },
  1971. "dist": {
  1972. "type": "zip",
  1973. "url": "https://api.github.com/repos/hyperf/di/zipball/72b65de5022e3dca79ae1902c058048b9519aa72",
  1974. "reference": "72b65de5022e3dca79ae1902c058048b9519aa72",
  1975. "shasum": ""
  1976. },
  1977. "require": {
  1978. "doctrine/instantiator": "^1.0",
  1979. "hyperf/code-parser": "~3.1.0",
  1980. "hyperf/pipeline": "~3.1.0",
  1981. "hyperf/stdlib": "~3.1.0",
  1982. "hyperf/support": "~3.1.0",
  1983. "nikic/php-parser": "^4.1",
  1984. "php": ">=8.1",
  1985. "php-di/phpdoc-reader": "^2.2",
  1986. "psr/container": "^1.0 || ^2.0",
  1987. "symfony/finder": "^5.0 || ^6.0 || ^7.0",
  1988. "vlucas/phpdotenv": "^5.0"
  1989. },
  1990. "suggest": {
  1991. "ext-pcntl": "Required to scan annotations.",
  1992. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1993. },
  1994. "type": "library",
  1995. "extra": {
  1996. "branch-alias": {
  1997. "dev-master": "3.1-dev"
  1998. },
  1999. "hyperf": {
  2000. "config": "Hyperf\\Di\\ConfigProvider"
  2001. }
  2002. },
  2003. "autoload": {
  2004. "psr-4": {
  2005. "Hyperf\\Di\\": "src/"
  2006. }
  2007. },
  2008. "notification-url": "https://packagist.org/downloads/",
  2009. "license": [
  2010. "MIT"
  2011. ],
  2012. "description": "A DI for Hyperf.",
  2013. "homepage": "https://hyperf.io",
  2014. "keywords": [
  2015. "annotation",
  2016. "di",
  2017. "hyperf",
  2018. "php",
  2019. "swoole"
  2020. ],
  2021. "support": {
  2022. "docs": "https://hyperf.wiki",
  2023. "issues": "https://github.com/hyperf/hyperf/issues",
  2024. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2025. "source": "https://github.com/hyperf/hyperf"
  2026. },
  2027. "funding": [
  2028. {
  2029. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2030. "type": "custom"
  2031. },
  2032. {
  2033. "url": "https://opencollective.com/hyperf",
  2034. "type": "open_collective"
  2035. }
  2036. ],
  2037. "time": "2024-09-25T02:54:12+00:00"
  2038. },
  2039. {
  2040. "name": "hyperf/dispatcher",
  2041. "version": "v3.1.42",
  2042. "source": {
  2043. "type": "git",
  2044. "url": "https://github.com/hyperf/dispatcher.git",
  2045. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0"
  2046. },
  2047. "dist": {
  2048. "type": "zip",
  2049. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2050. "reference": "5cbdfd586bb8c3bbbabed5a23cec7faf52b744b0",
  2051. "shasum": ""
  2052. },
  2053. "require": {
  2054. "hyperf/contract": "~3.1.0",
  2055. "php": ">=8.1",
  2056. "psr/container": "^1.0 || ^2.0",
  2057. "psr/http-message": "^1.0 || ^2.0",
  2058. "psr/http-server-middleware": "^1.0"
  2059. },
  2060. "type": "library",
  2061. "extra": {
  2062. "branch-alias": {
  2063. "dev-master": "3.1-dev"
  2064. },
  2065. "hyperf": {
  2066. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  2067. }
  2068. },
  2069. "autoload": {
  2070. "psr-4": {
  2071. "Hyperf\\Dispatcher\\": "src/"
  2072. }
  2073. },
  2074. "notification-url": "https://packagist.org/downloads/",
  2075. "license": [
  2076. "MIT"
  2077. ],
  2078. "description": "A HTTP Server for Hyperf.",
  2079. "homepage": "https://hyperf.io",
  2080. "keywords": [
  2081. "dispatcher",
  2082. "filter",
  2083. "hyperf",
  2084. "middleware",
  2085. "php",
  2086. "swoole"
  2087. ],
  2088. "support": {
  2089. "docs": "https://hyperf.wiki",
  2090. "issues": "https://github.com/hyperf/hyperf/issues",
  2091. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2092. "source": "https://github.com/hyperf/hyperf"
  2093. },
  2094. "funding": [
  2095. {
  2096. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2097. "type": "custom"
  2098. },
  2099. {
  2100. "url": "https://opencollective.com/hyperf",
  2101. "type": "open_collective"
  2102. }
  2103. ],
  2104. "time": "2024-09-25T02:54:12+00:00"
  2105. },
  2106. {
  2107. "name": "hyperf/engine",
  2108. "version": "v2.11.0",
  2109. "source": {
  2110. "type": "git",
  2111. "url": "https://github.com/hyperf/engine.git",
  2112. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95"
  2113. },
  2114. "dist": {
  2115. "type": "zip",
  2116. "url": "https://api.github.com/repos/hyperf/engine/zipball/26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2117. "reference": "26e0b65fc2a63a00266e7124e221c6f3fb2c8e95",
  2118. "shasum": ""
  2119. },
  2120. "require": {
  2121. "hyperf/engine-contract": "~1.10.0",
  2122. "php": ">=8.0"
  2123. },
  2124. "conflict": {
  2125. "ext-swoole": "<5.0"
  2126. },
  2127. "require-dev": {
  2128. "friendsofphp/php-cs-fixer": "^3.0",
  2129. "hyperf/guzzle": "^3.0",
  2130. "hyperf/http-message": "^3.0",
  2131. "mockery/mockery": "^1.5",
  2132. "phpstan/phpstan": "^1.0",
  2133. "phpunit/phpunit": "^9.4",
  2134. "swoole/ide-helper": "5.*"
  2135. },
  2136. "suggest": {
  2137. "ext-sockets": "*",
  2138. "ext-swoole": ">=5.0",
  2139. "hyperf/http-message": "Required to use ResponseEmitter.",
  2140. "psr/http-message": "Required to use WebSocket Frame."
  2141. },
  2142. "type": "library",
  2143. "extra": {
  2144. "branch-alias": {
  2145. "dev-master": "2.11-dev"
  2146. },
  2147. "hyperf": {
  2148. "config": "Hyperf\\Engine\\ConfigProvider"
  2149. }
  2150. },
  2151. "autoload": {
  2152. "files": [
  2153. "src/Functions.php"
  2154. ],
  2155. "psr-4": {
  2156. "Hyperf\\Engine\\": "src/"
  2157. }
  2158. },
  2159. "notification-url": "https://packagist.org/downloads/",
  2160. "license": [
  2161. "MIT"
  2162. ],
  2163. "description": "Coroutine engine provided by swoole.",
  2164. "keywords": [
  2165. "engine",
  2166. "hyperf",
  2167. "php",
  2168. "swoole"
  2169. ],
  2170. "support": {
  2171. "issues": "https://github.com/hyperf/engine/issues",
  2172. "source": "https://github.com/hyperf/engine/tree/v2.11.0"
  2173. },
  2174. "funding": [
  2175. {
  2176. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2177. "type": "custom"
  2178. },
  2179. {
  2180. "url": "https://opencollective.com/hyperf",
  2181. "type": "open_collective"
  2182. }
  2183. ],
  2184. "time": "2024-04-17T13:36:28+00:00"
  2185. },
  2186. {
  2187. "name": "hyperf/engine-contract",
  2188. "version": "v1.10.1",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/hyperf/engine-contract.git",
  2192. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/hyperf/engine-contract/zipball/2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2197. "reference": "2714a8ba6d6b916e5bd373ff680df9569a4c9eef",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "php": ">=8.0"
  2202. },
  2203. "require-dev": {
  2204. "friendsofphp/php-cs-fixer": "^3.0",
  2205. "mockery/mockery": "^1.0",
  2206. "phpstan/phpstan": "^1.0",
  2207. "phpunit/phpunit": ">=7.0",
  2208. "psr/http-message": "^1.0",
  2209. "swoole/ide-helper": "^4.5"
  2210. },
  2211. "suggest": {
  2212. "psr/http-message": "Required to use WebSocket Frame."
  2213. },
  2214. "type": "library",
  2215. "extra": {
  2216. "branch-alias": {
  2217. "dev-master": "1.9-dev"
  2218. }
  2219. },
  2220. "autoload": {
  2221. "psr-4": {
  2222. "Hyperf\\Engine\\Contract\\": "src/"
  2223. }
  2224. },
  2225. "notification-url": "https://packagist.org/downloads/",
  2226. "license": [
  2227. "MIT"
  2228. ],
  2229. "description": "Contract for Coroutine Engine",
  2230. "keywords": [
  2231. "contract",
  2232. "coroutine",
  2233. "engine",
  2234. "hyperf",
  2235. "php"
  2236. ],
  2237. "support": {
  2238. "issues": "https://github.com/hyperf/engine-contract/issues",
  2239. "source": "https://github.com/hyperf/engine-contract/tree/v1.10.1"
  2240. },
  2241. "funding": [
  2242. {
  2243. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2244. "type": "custom"
  2245. },
  2246. {
  2247. "url": "https://opencollective.com/hyperf",
  2248. "type": "open_collective"
  2249. }
  2250. ],
  2251. "time": "2024-04-17T13:34:51+00:00"
  2252. },
  2253. {
  2254. "name": "hyperf/event",
  2255. "version": "v3.1.42",
  2256. "source": {
  2257. "type": "git",
  2258. "url": "https://github.com/hyperf/event.git",
  2259. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4"
  2260. },
  2261. "dist": {
  2262. "type": "zip",
  2263. "url": "https://api.github.com/repos/hyperf/event/zipball/2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2264. "reference": "2b5fbbc94674a1a5e1622896eb3f7ecc80aa38c4",
  2265. "shasum": ""
  2266. },
  2267. "require": {
  2268. "hyperf/contract": "~3.1.0",
  2269. "hyperf/stdlib": "~3.1.0",
  2270. "php": ">=8.1",
  2271. "psr/event-dispatcher": "^1.0"
  2272. },
  2273. "suggest": {
  2274. "hyperf/di": "Required to use annotatioins."
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "3.1-dev"
  2280. },
  2281. "hyperf": {
  2282. "config": "Hyperf\\Event\\ConfigProvider"
  2283. }
  2284. },
  2285. "autoload": {
  2286. "psr-4": {
  2287. "Hyperf\\Event\\": "src/"
  2288. }
  2289. },
  2290. "notification-url": "https://packagist.org/downloads/",
  2291. "license": [
  2292. "MIT"
  2293. ],
  2294. "description": "an event manager that implements PSR-14.",
  2295. "homepage": "https://hyperf.io",
  2296. "keywords": [
  2297. "event",
  2298. "hyperf",
  2299. "php",
  2300. "swoole"
  2301. ],
  2302. "support": {
  2303. "docs": "https://hyperf.wiki",
  2304. "issues": "https://github.com/hyperf/hyperf/issues",
  2305. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2306. "source": "https://github.com/hyperf/hyperf"
  2307. },
  2308. "funding": [
  2309. {
  2310. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2311. "type": "custom"
  2312. },
  2313. {
  2314. "url": "https://opencollective.com/hyperf",
  2315. "type": "open_collective"
  2316. }
  2317. ],
  2318. "time": "2024-09-25T02:54:12+00:00"
  2319. },
  2320. {
  2321. "name": "hyperf/exception-handler",
  2322. "version": "v3.1.42",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/hyperf/exception-handler.git",
  2326. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/df2135fb0ffe0bb61032911038aea6488077cdef",
  2331. "reference": "df2135fb0ffe0bb61032911038aea6488077cdef",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "hyperf/context": "~3.1.0",
  2336. "hyperf/contract": "~3.1.0",
  2337. "hyperf/dispatcher": "~3.1.0",
  2338. "hyperf/http-message": "~3.1.0",
  2339. "hyperf/stdlib": "~3.1.0",
  2340. "hyperf/support": "~3.1.0",
  2341. "php": ">=8.1",
  2342. "psr/container": "^1.0 || ^2.0",
  2343. "psr/http-message": "^1.0 || ^2.0",
  2344. "swow/psr7-plus": "^1.0"
  2345. },
  2346. "suggest": {
  2347. "hyperf/di": "Required to use #[ExceptionHandler]",
  2348. "hyperf/event": "Required to use listeners",
  2349. "hyperf/framework": "Required to use listeners",
  2350. "hyperf/stringable": "Required to use WhoopsExceptionHandler"
  2351. },
  2352. "type": "library",
  2353. "extra": {
  2354. "branch-alias": {
  2355. "dev-master": "3.1-dev"
  2356. },
  2357. "hyperf": {
  2358. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  2359. }
  2360. },
  2361. "autoload": {
  2362. "psr-4": {
  2363. "Hyperf\\ExceptionHandler\\": "src/"
  2364. }
  2365. },
  2366. "notification-url": "https://packagist.org/downloads/",
  2367. "license": [
  2368. "MIT"
  2369. ],
  2370. "description": "Exception handler for hyperf",
  2371. "homepage": "https://hyperf.io",
  2372. "keywords": [
  2373. "exception-handler",
  2374. "php",
  2375. "swoole"
  2376. ],
  2377. "support": {
  2378. "docs": "https://hyperf.wiki",
  2379. "issues": "https://github.com/hyperf/hyperf/issues",
  2380. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2381. "source": "https://github.com/hyperf/hyperf"
  2382. },
  2383. "funding": [
  2384. {
  2385. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2386. "type": "custom"
  2387. },
  2388. {
  2389. "url": "https://opencollective.com/hyperf",
  2390. "type": "open_collective"
  2391. }
  2392. ],
  2393. "time": "2024-09-25T02:54:12+00:00"
  2394. },
  2395. {
  2396. "name": "hyperf/framework",
  2397. "version": "v3.1.42",
  2398. "source": {
  2399. "type": "git",
  2400. "url": "https://github.com/hyperf/framework.git",
  2401. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4"
  2402. },
  2403. "dist": {
  2404. "type": "zip",
  2405. "url": "https://api.github.com/repos/hyperf/framework/zipball/7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2406. "reference": "7b317d3891698a1eb0308e7306730d2ada1d6ff4",
  2407. "shasum": ""
  2408. },
  2409. "require": {
  2410. "fig/http-message-util": "^1.1.2",
  2411. "hyperf/contract": "~3.1.0",
  2412. "hyperf/coordinator": "~3.1.0",
  2413. "hyperf/coroutine": "~3.1.0",
  2414. "php": ">=8.1",
  2415. "psr/container": "^1.0 || ^2.0",
  2416. "psr/event-dispatcher": "^1.0",
  2417. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2418. },
  2419. "suggest": {
  2420. "ext-swoole": "Required to use swoole engine.",
  2421. "hyperf/command": "Required to use Command annotation.",
  2422. "hyperf/di": "Required to use Command annotation.",
  2423. "hyperf/dispatcher": "Required to use BootApplication event.",
  2424. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0|^6.0)."
  2425. },
  2426. "type": "library",
  2427. "extra": {
  2428. "branch-alias": {
  2429. "dev-master": "3.1-dev"
  2430. },
  2431. "hyperf": {
  2432. "config": "Hyperf\\Framework\\ConfigProvider"
  2433. }
  2434. },
  2435. "autoload": {
  2436. "psr-4": {
  2437. "Hyperf\\Framework\\": "src/"
  2438. }
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  2445. "homepage": "https://hyperf.io",
  2446. "keywords": [
  2447. "Microservice",
  2448. "framework",
  2449. "hyperf",
  2450. "middleware",
  2451. "php",
  2452. "swoole"
  2453. ],
  2454. "support": {
  2455. "docs": "https://hyperf.wiki",
  2456. "issues": "https://github.com/hyperf/hyperf/issues",
  2457. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2458. "source": "https://github.com/hyperf/hyperf"
  2459. },
  2460. "funding": [
  2461. {
  2462. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2463. "type": "custom"
  2464. },
  2465. {
  2466. "url": "https://opencollective.com/hyperf",
  2467. "type": "open_collective"
  2468. }
  2469. ],
  2470. "time": "2024-09-25T02:54:12+00:00"
  2471. },
  2472. {
  2473. "name": "hyperf/guzzle",
  2474. "version": "v3.1.42",
  2475. "source": {
  2476. "type": "git",
  2477. "url": "https://github.com/hyperf/guzzle.git",
  2478. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f"
  2479. },
  2480. "dist": {
  2481. "type": "zip",
  2482. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2483. "reference": "fe838557530bf7b2d39dc604563c3a3ff8d5618f",
  2484. "shasum": ""
  2485. },
  2486. "require": {
  2487. "guzzlehttp/guzzle": "^6.3 || ^7.0",
  2488. "php": ">=8.1",
  2489. "psr/container": "^1.0 || ^2.0",
  2490. "psr/http-message": "^1.0 || ^2.0"
  2491. },
  2492. "suggest": {
  2493. "ext-curl": "Required for CURL handler support",
  2494. "hyperf/pool": "Required to use pool handler."
  2495. },
  2496. "type": "library",
  2497. "extra": {
  2498. "branch-alias": {
  2499. "dev-master": "3.1-dev"
  2500. },
  2501. "hyperf": {
  2502. "config": "Hyperf\\Guzzle\\ConfigProvider"
  2503. }
  2504. },
  2505. "autoload": {
  2506. "psr-4": {
  2507. "Hyperf\\Guzzle\\": "src/"
  2508. }
  2509. },
  2510. "notification-url": "https://packagist.org/downloads/",
  2511. "license": [
  2512. "MIT"
  2513. ],
  2514. "description": "Swoole coroutine handler for guzzle",
  2515. "keywords": [
  2516. "Guzzle",
  2517. "handler",
  2518. "php",
  2519. "swoole"
  2520. ],
  2521. "support": {
  2522. "issues": "https://github.com/hyperf/guzzle/issues",
  2523. "source": "https://github.com/hyperf/guzzle/tree/v3.1.42"
  2524. },
  2525. "funding": [
  2526. {
  2527. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2528. "type": "custom"
  2529. },
  2530. {
  2531. "url": "https://opencollective.com/hyperf",
  2532. "type": "open_collective"
  2533. }
  2534. ],
  2535. "time": "2024-09-25T02:54:12+00:00"
  2536. },
  2537. {
  2538. "name": "hyperf/http-message",
  2539. "version": "v3.1.42",
  2540. "source": {
  2541. "type": "git",
  2542. "url": "https://github.com/hyperf/http-message.git",
  2543. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf"
  2544. },
  2545. "dist": {
  2546. "type": "zip",
  2547. "url": "https://api.github.com/repos/hyperf/http-message/zipball/831c257db7bd9bbe0624da79e58980d66950bccf",
  2548. "reference": "831c257db7bd9bbe0624da79e58980d66950bccf",
  2549. "shasum": ""
  2550. },
  2551. "require": {
  2552. "hyperf/codec": "~3.1.0",
  2553. "hyperf/engine": "^2.11",
  2554. "hyperf/support": "~3.1.0",
  2555. "laminas/laminas-mime": "^2.7",
  2556. "php": ">=8.1",
  2557. "psr/http-message": "^1.0 || ^2.0",
  2558. "swow/psr7-plus": "^1.0"
  2559. },
  2560. "suggest": {
  2561. "psr/container": "Required to replace RequestParserInterface."
  2562. },
  2563. "type": "library",
  2564. "extra": {
  2565. "branch-alias": {
  2566. "dev-master": "3.1-dev"
  2567. },
  2568. "hyperf": {
  2569. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "psr-4": {
  2574. "Hyperf\\HttpMessage\\": "src/"
  2575. }
  2576. },
  2577. "notification-url": "https://packagist.org/downloads/",
  2578. "license": [
  2579. "MIT"
  2580. ],
  2581. "description": "microservice framework base on swoole",
  2582. "keywords": [
  2583. "http-message",
  2584. "hyperf",
  2585. "php",
  2586. "swoole"
  2587. ],
  2588. "support": {
  2589. "issues": "https://github.com/hyperf/http-message/issues",
  2590. "source": "https://github.com/hyperf/http-message/tree/v3.1.42"
  2591. },
  2592. "funding": [
  2593. {
  2594. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2595. "type": "custom"
  2596. },
  2597. {
  2598. "url": "https://opencollective.com/hyperf",
  2599. "type": "open_collective"
  2600. }
  2601. ],
  2602. "time": "2024-09-25T02:54:12+00:00"
  2603. },
  2604. {
  2605. "name": "hyperf/http-server",
  2606. "version": "v3.1.42",
  2607. "source": {
  2608. "type": "git",
  2609. "url": "https://github.com/hyperf/http-server.git",
  2610. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a"
  2611. },
  2612. "dist": {
  2613. "type": "zip",
  2614. "url": "https://api.github.com/repos/hyperf/http-server/zipball/4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2615. "reference": "4727f15a743c6e9ca0a6b3c8494c5c62bae82f5a",
  2616. "shasum": ""
  2617. },
  2618. "require": {
  2619. "hyperf/codec": "~3.1.0",
  2620. "hyperf/collection": "~3.1.0",
  2621. "hyperf/context": "~3.1.0",
  2622. "hyperf/contract": "~3.1.0",
  2623. "hyperf/coroutine": "~3.1.0",
  2624. "hyperf/dispatcher": "~3.1.0",
  2625. "hyperf/event": "~3.1.0",
  2626. "hyperf/exception-handler": "~3.1.0",
  2627. "hyperf/http-message": "~3.1.0",
  2628. "hyperf/macroable": "~3.1.0",
  2629. "hyperf/serializer": "~3.1.0",
  2630. "hyperf/server": "~3.1.0",
  2631. "hyperf/stdlib": "~3.1.0",
  2632. "hyperf/support": "~3.1.0",
  2633. "nikic/fast-route": "^1.3",
  2634. "php": ">=8.1",
  2635. "psr/container": "^1.0 || ^2.0",
  2636. "swow/psr7-plus": "^1.0"
  2637. },
  2638. "suggest": {
  2639. "hyperf/di": "Required to use annotations."
  2640. },
  2641. "type": "library",
  2642. "extra": {
  2643. "branch-alias": {
  2644. "dev-master": "3.1-dev"
  2645. },
  2646. "hyperf": {
  2647. "config": "Hyperf\\HttpServer\\ConfigProvider"
  2648. }
  2649. },
  2650. "autoload": {
  2651. "psr-4": {
  2652. "Hyperf\\HttpServer\\": "src/"
  2653. }
  2654. },
  2655. "notification-url": "https://packagist.org/downloads/",
  2656. "license": [
  2657. "MIT"
  2658. ],
  2659. "description": "A HTTP Server for Hyperf.",
  2660. "homepage": "https://hyperf.io",
  2661. "keywords": [
  2662. "http",
  2663. "http-server",
  2664. "hyperf",
  2665. "php",
  2666. "swoole"
  2667. ],
  2668. "support": {
  2669. "docs": "https://hyperf.wiki",
  2670. "issues": "https://github.com/hyperf/hyperf/issues",
  2671. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2672. "source": "https://github.com/hyperf/hyperf"
  2673. },
  2674. "funding": [
  2675. {
  2676. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2677. "type": "custom"
  2678. },
  2679. {
  2680. "url": "https://opencollective.com/hyperf",
  2681. "type": "open_collective"
  2682. }
  2683. ],
  2684. "time": "2024-09-25T02:54:12+00:00"
  2685. },
  2686. {
  2687. "name": "hyperf/json-rpc",
  2688. "version": "v3.1.42",
  2689. "source": {
  2690. "type": "git",
  2691. "url": "https://github.com/hyperf/json-rpc.git",
  2692. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b"
  2693. },
  2694. "dist": {
  2695. "type": "zip",
  2696. "url": "https://api.github.com/repos/hyperf/json-rpc/zipball/e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2697. "reference": "e4b6d48c3ee1c452c6b6702b19f55f1cd72cc11b",
  2698. "shasum": ""
  2699. },
  2700. "require": {
  2701. "hyperf/codec": "~3.1.0",
  2702. "hyperf/context": "~3.1.0",
  2703. "hyperf/contract": "~3.1.0",
  2704. "hyperf/engine": "^2.0",
  2705. "hyperf/http-message": "~3.1.0",
  2706. "hyperf/load-balancer": "~3.1.0",
  2707. "hyperf/rpc": "~3.1.0",
  2708. "hyperf/serializer": "~3.1.0",
  2709. "hyperf/support": "~3.1.0",
  2710. "hyperf/utils": "~3.1.0",
  2711. "php": ">=8.1",
  2712. "psr/container": "^1.0 || ^2.0",
  2713. "swow/psr7-plus": "^1.0"
  2714. },
  2715. "suggest": {
  2716. "hyperf/event": "Register the objects to ProtocolManager automatically.",
  2717. "hyperf/framework": "Register the objects to ProtocolManager automatically.",
  2718. "hyperf/guzzle": "Required to use JSON RPC with HTTP protocol.",
  2719. "hyperf/rpc-client": "Reqiured to use JSON RPC in hyperf rpc client.",
  2720. "hyperf/rpc-server": "Reqiured to use JSON RPC in hyperf rpc server."
  2721. },
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-master": "3.1-dev"
  2726. },
  2727. "hyperf": {
  2728. "config": "Hyperf\\JsonRpc\\ConfigProvider"
  2729. }
  2730. },
  2731. "autoload": {
  2732. "psr-4": {
  2733. "Hyperf\\JsonRpc\\": "src/"
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "MIT"
  2739. ],
  2740. "description": "A JSON RPC component for Hyperf RPC Server or Client.",
  2741. "homepage": "https://hyperf.io",
  2742. "keywords": [
  2743. "hyperf",
  2744. "json-rpc",
  2745. "php",
  2746. "swoole"
  2747. ],
  2748. "support": {
  2749. "docs": "https://hyperf.wiki",
  2750. "issues": "https://github.com/hyperf/hyperf/issues",
  2751. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2752. "source": "https://github.com/hyperf/hyperf"
  2753. },
  2754. "funding": [
  2755. {
  2756. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2757. "type": "custom"
  2758. },
  2759. {
  2760. "url": "https://opencollective.com/hyperf",
  2761. "type": "open_collective"
  2762. }
  2763. ],
  2764. "time": "2024-09-25T02:54:12+00:00"
  2765. },
  2766. {
  2767. "name": "hyperf/load-balancer",
  2768. "version": "v3.1.42",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://github.com/hyperf/load-balancer.git",
  2772. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://api.github.com/repos/hyperf/load-balancer/zipball/13d23eae71f917df4df54f7439076360dc5f9cc0",
  2777. "reference": "13d23eae71f917df4df54f7439076360dc5f9cc0",
  2778. "shasum": ""
  2779. },
  2780. "require": {
  2781. "hyperf/coordinator": "~3.1.0",
  2782. "hyperf/coroutine": "~3.1.0",
  2783. "markrogoyski/math-php": "^2.0",
  2784. "php": ">=8.1",
  2785. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2786. },
  2787. "type": "library",
  2788. "extra": {
  2789. "branch-alias": {
  2790. "dev-master": "3.1-dev"
  2791. },
  2792. "hyperf": {
  2793. "config": "Hyperf\\LoadBalancer\\ConfigProvider"
  2794. }
  2795. },
  2796. "autoload": {
  2797. "psr-4": {
  2798. "Hyperf\\LoadBalancer\\": "src/"
  2799. }
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "description": "A load balancer library for Hyperf.",
  2806. "homepage": "https://hyperf.io",
  2807. "keywords": [
  2808. "hyperf",
  2809. "load-balancer",
  2810. "php",
  2811. "swoole"
  2812. ],
  2813. "support": {
  2814. "docs": "https://hyperf.wiki",
  2815. "issues": "https://github.com/hyperf/hyperf/issues",
  2816. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2817. "source": "https://github.com/hyperf/hyperf"
  2818. },
  2819. "funding": [
  2820. {
  2821. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2822. "type": "custom"
  2823. },
  2824. {
  2825. "url": "https://opencollective.com/hyperf",
  2826. "type": "open_collective"
  2827. }
  2828. ],
  2829. "time": "2024-09-25T02:54:12+00:00"
  2830. },
  2831. {
  2832. "name": "hyperf/logger",
  2833. "version": "v3.1.42",
  2834. "source": {
  2835. "type": "git",
  2836. "url": "https://github.com/hyperf/logger.git",
  2837. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72"
  2838. },
  2839. "dist": {
  2840. "type": "zip",
  2841. "url": "https://api.github.com/repos/hyperf/logger/zipball/c96d32fae44bf350ef903ebca19c91a315458d72",
  2842. "reference": "c96d32fae44bf350ef903ebca19c91a315458d72",
  2843. "shasum": ""
  2844. },
  2845. "require": {
  2846. "hyperf/contract": "~3.1.0",
  2847. "hyperf/support": "~3.1.0",
  2848. "hyperf/utils": "~3.1.0",
  2849. "monolog/monolog": "^2.7 || ^3.1",
  2850. "php": ">=8.1",
  2851. "psr/container": "^1.0 || ^2.0",
  2852. "psr/log": "^1.0 || ^2.0 || ^3.0"
  2853. },
  2854. "type": "library",
  2855. "extra": {
  2856. "branch-alias": {
  2857. "dev-master": "3.1-dev"
  2858. },
  2859. "hyperf": {
  2860. "config": "Hyperf\\Logger\\ConfigProvider"
  2861. }
  2862. },
  2863. "autoload": {
  2864. "psr-4": {
  2865. "Hyperf\\Logger\\": "src/"
  2866. }
  2867. },
  2868. "notification-url": "https://packagist.org/downloads/",
  2869. "license": [
  2870. "MIT"
  2871. ],
  2872. "description": "A logger component for hyperf.",
  2873. "homepage": "https://hyperf.io",
  2874. "keywords": [
  2875. "hyperf",
  2876. "logger",
  2877. "php"
  2878. ],
  2879. "support": {
  2880. "docs": "https://hyperf.wiki",
  2881. "issues": "https://github.com/hyperf/hyperf/issues",
  2882. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2883. "source": "https://github.com/hyperf/hyperf"
  2884. },
  2885. "funding": [
  2886. {
  2887. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2888. "type": "custom"
  2889. },
  2890. {
  2891. "url": "https://opencollective.com/hyperf",
  2892. "type": "open_collective"
  2893. }
  2894. ],
  2895. "time": "2024-09-25T02:54:12+00:00"
  2896. },
  2897. {
  2898. "name": "hyperf/macroable",
  2899. "version": "v3.1.42",
  2900. "source": {
  2901. "type": "git",
  2902. "url": "https://github.com/hyperf/macroable.git",
  2903. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4"
  2904. },
  2905. "dist": {
  2906. "type": "zip",
  2907. "url": "https://api.github.com/repos/hyperf/macroable/zipball/0be650165b9e8ea073e199fac788ece70f16b6a4",
  2908. "reference": "0be650165b9e8ea073e199fac788ece70f16b6a4",
  2909. "shasum": ""
  2910. },
  2911. "require": {
  2912. "php": ">=8.1"
  2913. },
  2914. "type": "library",
  2915. "extra": {
  2916. "branch-alias": {
  2917. "dev-master": "3.1-dev"
  2918. }
  2919. },
  2920. "autoload": {
  2921. "psr-4": {
  2922. "Hyperf\\Macroable\\": "src/"
  2923. }
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "MIT"
  2928. ],
  2929. "description": "Hyperf Macroable package which come from illuminate/macroable",
  2930. "homepage": "https://hyperf.io",
  2931. "keywords": [
  2932. "hyperf",
  2933. "macroable",
  2934. "php",
  2935. "swoole"
  2936. ],
  2937. "support": {
  2938. "docs": "https://hyperf.wiki",
  2939. "issues": "https://github.com/hyperf/hyperf/issues",
  2940. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2941. "source": "https://github.com/hyperf/hyperf"
  2942. },
  2943. "funding": [
  2944. {
  2945. "url": "https://hyperf.wiki/#/zh-cn/donate",
  2946. "type": "custom"
  2947. },
  2948. {
  2949. "url": "https://opencollective.com/hyperf",
  2950. "type": "open_collective"
  2951. }
  2952. ],
  2953. "time": "2024-09-25T02:54:12+00:00"
  2954. },
  2955. {
  2956. "name": "hyperf/memory",
  2957. "version": "v3.1.42",
  2958. "source": {
  2959. "type": "git",
  2960. "url": "https://github.com/hyperf/memory.git",
  2961. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2"
  2962. },
  2963. "dist": {
  2964. "type": "zip",
  2965. "url": "https://api.github.com/repos/hyperf/memory/zipball/ccf25783d63a2610a4d797ec34c1e0093b755da2",
  2966. "reference": "ccf25783d63a2610a4d797ec34c1e0093b755da2",
  2967. "shasum": ""
  2968. },
  2969. "require": {
  2970. "php": ">=8.1"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-master": "3.1-dev"
  2976. },
  2977. "hyperf": {
  2978. "config": "Hyperf\\Memory\\ConfigProvider"
  2979. }
  2980. },
  2981. "autoload": {
  2982. "psr-4": {
  2983. "Hyperf\\Memory\\": "src/"
  2984. }
  2985. },
  2986. "notification-url": "https://packagist.org/downloads/",
  2987. "license": [
  2988. "MIT"
  2989. ],
  2990. "description": "An independent component that use to operate and manage memory.",
  2991. "homepage": "https://hyperf.io",
  2992. "keywords": [
  2993. "hyperf",
  2994. "memory",
  2995. "php",
  2996. "swoole"
  2997. ],
  2998. "support": {
  2999. "docs": "https://hyperf.wiki",
  3000. "issues": "https://github.com/hyperf/hyperf/issues",
  3001. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3002. "source": "https://github.com/hyperf/hyperf"
  3003. },
  3004. "funding": [
  3005. {
  3006. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3007. "type": "custom"
  3008. },
  3009. {
  3010. "url": "https://opencollective.com/hyperf",
  3011. "type": "open_collective"
  3012. }
  3013. ],
  3014. "time": "2024-09-25T02:54:12+00:00"
  3015. },
  3016. {
  3017. "name": "hyperf/model-listener",
  3018. "version": "v3.1.42",
  3019. "source": {
  3020. "type": "git",
  3021. "url": "https://github.com/hyperf/model-listener.git",
  3022. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4"
  3023. },
  3024. "dist": {
  3025. "type": "zip",
  3026. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3027. "reference": "0181882fb6034cf2eac81b84b5c65c187af9f3a4",
  3028. "shasum": ""
  3029. },
  3030. "require": {
  3031. "hyperf/contract": "~3.1.0",
  3032. "hyperf/database": "~3.1.0",
  3033. "hyperf/di": "~3.1.0",
  3034. "hyperf/event": "~3.1.0",
  3035. "hyperf/support": "~3.1.0",
  3036. "hyperf/utils": "~3.1.0",
  3037. "php": ">=8.1",
  3038. "psr/container": "^1.0 || ^2.0"
  3039. },
  3040. "type": "library",
  3041. "extra": {
  3042. "branch-alias": {
  3043. "dev-master": "3.1-dev"
  3044. },
  3045. "hyperf": {
  3046. "config": "Hyperf\\ModelListener\\ConfigProvider"
  3047. }
  3048. },
  3049. "autoload": {
  3050. "psr-4": {
  3051. "Hyperf\\ModelListener\\": "src/"
  3052. }
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "description": "A model listener for Hyperf.",
  3059. "homepage": "https://hyperf.io",
  3060. "keywords": [
  3061. "hyperf",
  3062. "model-listener",
  3063. "php",
  3064. "swoole"
  3065. ],
  3066. "support": {
  3067. "docs": "https://hyperf.wiki",
  3068. "issues": "https://github.com/hyperf/hyperf/issues",
  3069. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3070. "source": "https://github.com/hyperf/hyperf"
  3071. },
  3072. "funding": [
  3073. {
  3074. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3075. "type": "custom"
  3076. },
  3077. {
  3078. "url": "https://opencollective.com/hyperf",
  3079. "type": "open_collective"
  3080. }
  3081. ],
  3082. "time": "2024-09-25T02:54:12+00:00"
  3083. },
  3084. {
  3085. "name": "hyperf/nacos",
  3086. "version": "v3.1.42",
  3087. "source": {
  3088. "type": "git",
  3089. "url": "https://github.com/hyperf/nacos.git",
  3090. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3"
  3091. },
  3092. "dist": {
  3093. "type": "zip",
  3094. "url": "https://api.github.com/repos/hyperf/nacos/zipball/ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3095. "reference": "ba6e2c11b7cab35fbd215e375c0edef039230bc3",
  3096. "shasum": ""
  3097. },
  3098. "require": {
  3099. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  3100. "hyperf/codec": "~3.1.0",
  3101. "hyperf/contract": "~3.1.0",
  3102. "hyperf/support": "~3.1.0",
  3103. "hyperf/utils": "~3.1.0",
  3104. "jetbrains/phpstorm-attributes": "^1.0",
  3105. "php": ">=8.1"
  3106. },
  3107. "type": "library",
  3108. "extra": {
  3109. "branch-alias": {
  3110. "dev-master": "3.1-dev"
  3111. },
  3112. "hyperf": {
  3113. "config": "Hyperf\\Nacos\\ConfigProvider"
  3114. }
  3115. },
  3116. "autoload": {
  3117. "psr-4": {
  3118. "Hyperf\\Nacos\\": "src/"
  3119. }
  3120. },
  3121. "notification-url": "https://packagist.org/downloads/",
  3122. "license": [
  3123. "MIT"
  3124. ],
  3125. "description": "Nacos SDK",
  3126. "keywords": [
  3127. "hyperf",
  3128. "nacos",
  3129. "php"
  3130. ],
  3131. "support": {
  3132. "issues": "https://github.com/hyperf/nacos/issues",
  3133. "source": "https://github.com/hyperf/nacos/tree/v3.1.42"
  3134. },
  3135. "funding": [
  3136. {
  3137. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3138. "type": "custom"
  3139. },
  3140. {
  3141. "url": "https://opencollective.com/hyperf",
  3142. "type": "open_collective"
  3143. }
  3144. ],
  3145. "time": "2024-09-25T02:54:12+00:00"
  3146. },
  3147. {
  3148. "name": "hyperf/pipeline",
  3149. "version": "v3.1.42",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/hyperf/pipeline.git",
  3153. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/hyperf/pipeline/zipball/096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3158. "reference": "096d9a9f87ddea33209f134d30ae8d8867a195c7",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "php": ">=8.1",
  3163. "psr/container": "^1.0 || ^2.0"
  3164. },
  3165. "type": "library",
  3166. "extra": {
  3167. "branch-alias": {
  3168. "dev-master": "3.1-dev"
  3169. }
  3170. },
  3171. "autoload": {
  3172. "psr-4": {
  3173. "Hyperf\\Pipeline\\": "src/"
  3174. }
  3175. },
  3176. "notification-url": "https://packagist.org/downloads/",
  3177. "license": [
  3178. "MIT"
  3179. ],
  3180. "description": "Hyperf Macroable package which come from illuminate/pipeline",
  3181. "homepage": "https://hyperf.io",
  3182. "keywords": [
  3183. "hyperf",
  3184. "php",
  3185. "pipeline",
  3186. "swoole"
  3187. ],
  3188. "support": {
  3189. "docs": "https://hyperf.wiki",
  3190. "issues": "https://github.com/hyperf/hyperf/issues",
  3191. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3192. "source": "https://github.com/hyperf/hyperf"
  3193. },
  3194. "funding": [
  3195. {
  3196. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3197. "type": "custom"
  3198. },
  3199. {
  3200. "url": "https://opencollective.com/hyperf",
  3201. "type": "open_collective"
  3202. }
  3203. ],
  3204. "time": "2024-09-25T02:54:12+00:00"
  3205. },
  3206. {
  3207. "name": "hyperf/pool",
  3208. "version": "v3.1.42",
  3209. "source": {
  3210. "type": "git",
  3211. "url": "https://github.com/hyperf/pool.git",
  3212. "reference": "004dd811bf760ea0032913a31284102742abb737"
  3213. },
  3214. "dist": {
  3215. "type": "zip",
  3216. "url": "https://api.github.com/repos/hyperf/pool/zipball/004dd811bf760ea0032913a31284102742abb737",
  3217. "reference": "004dd811bf760ea0032913a31284102742abb737",
  3218. "shasum": ""
  3219. },
  3220. "require": {
  3221. "hyperf/contract": "~3.1.0",
  3222. "hyperf/support": "~3.1.0",
  3223. "hyperf/utils": "~3.1.0",
  3224. "php": ">=8.1",
  3225. "psr/container": "^1.0 || ^2.0"
  3226. },
  3227. "suggest": {
  3228. "psr/event-dispatcher": "Required to use events."
  3229. },
  3230. "type": "library",
  3231. "extra": {
  3232. "branch-alias": {
  3233. "dev-master": "3.1-dev"
  3234. },
  3235. "hyperf": {
  3236. "config": "Hyperf\\Pool\\ConfigProvider"
  3237. }
  3238. },
  3239. "autoload": {
  3240. "psr-4": {
  3241. "Hyperf\\Pool\\": "src/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "description": "An independent universal connection pool component.",
  3249. "homepage": "https://hyperf.io",
  3250. "keywords": [
  3251. "connection-pool",
  3252. "hyperf",
  3253. "php",
  3254. "swoole"
  3255. ],
  3256. "support": {
  3257. "docs": "https://hyperf.wiki",
  3258. "issues": "https://github.com/hyperf/hyperf/issues",
  3259. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3260. "source": "https://github.com/hyperf/hyperf"
  3261. },
  3262. "funding": [
  3263. {
  3264. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3265. "type": "custom"
  3266. },
  3267. {
  3268. "url": "https://opencollective.com/hyperf",
  3269. "type": "open_collective"
  3270. }
  3271. ],
  3272. "time": "2024-09-25T02:54:12+00:00"
  3273. },
  3274. {
  3275. "name": "hyperf/process",
  3276. "version": "v3.1.42",
  3277. "source": {
  3278. "type": "git",
  3279. "url": "https://github.com/hyperf/process.git",
  3280. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3"
  3281. },
  3282. "dist": {
  3283. "type": "zip",
  3284. "url": "https://api.github.com/repos/hyperf/process/zipball/2b2286cff615989f01cb87691882b61c4c931ea3",
  3285. "reference": "2b2286cff615989f01cb87691882b61c4c931ea3",
  3286. "shasum": ""
  3287. },
  3288. "require": {
  3289. "hyperf/contract": "~3.1.0",
  3290. "hyperf/support": "~3.1.0",
  3291. "hyperf/utils": "~3.1.0",
  3292. "php": ">=8.1",
  3293. "psr/container": "^1.0 || ^2.0",
  3294. "psr/event-dispatcher": "^1.0"
  3295. },
  3296. "suggest": {
  3297. "hyperf/di": "Required to use annotations.",
  3298. "hyperf/event": "Required to dump the message before and after process.",
  3299. "hyperf/framework": "Required to use BootProcessListener."
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-master": "3.1-dev"
  3305. },
  3306. "hyperf": {
  3307. "config": "Hyperf\\Process\\ConfigProvider"
  3308. }
  3309. },
  3310. "autoload": {
  3311. "psr-4": {
  3312. "Hyperf\\Process\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "description": "A process component for hyperf.",
  3320. "homepage": "https://hyperf.io",
  3321. "keywords": [
  3322. "hyperf",
  3323. "php",
  3324. "process"
  3325. ],
  3326. "support": {
  3327. "docs": "https://hyperf.wiki",
  3328. "issues": "https://github.com/hyperf/hyperf/issues",
  3329. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3330. "source": "https://github.com/hyperf/hyperf"
  3331. },
  3332. "funding": [
  3333. {
  3334. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3335. "type": "custom"
  3336. },
  3337. {
  3338. "url": "https://opencollective.com/hyperf",
  3339. "type": "open_collective"
  3340. }
  3341. ],
  3342. "time": "2024-09-25T02:54:12+00:00"
  3343. },
  3344. {
  3345. "name": "hyperf/redis",
  3346. "version": "v3.1.42",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/hyperf/redis.git",
  3350. "reference": "973a92c34be60353e978d85c434e65f366a817dd"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/hyperf/redis/zipball/973a92c34be60353e978d85c434e65f366a817dd",
  3355. "reference": "973a92c34be60353e978d85c434e65f366a817dd",
  3356. "shasum": ""
  3357. },
  3358. "require": {
  3359. "ext-redis": "^5.0 || ^6.0",
  3360. "hyperf/contract": "~3.1.0",
  3361. "hyperf/pool": "~3.1.0",
  3362. "hyperf/support": "~3.1.0",
  3363. "hyperf/tappable": "~3.1.0",
  3364. "hyperf/utils": "~3.1.0",
  3365. "php": ">=8.1",
  3366. "psr/container": "^1.0 || ^2.0"
  3367. },
  3368. "suggest": {
  3369. "ext-redis": "Required to use sentinel mode (>=5.2).",
  3370. "hyperf/di": "Create the RedisPool via dependency injection."
  3371. },
  3372. "type": "library",
  3373. "extra": {
  3374. "branch-alias": {
  3375. "dev-master": "3.1-dev"
  3376. },
  3377. "hyperf": {
  3378. "config": "Hyperf\\Redis\\ConfigProvider"
  3379. }
  3380. },
  3381. "autoload": {
  3382. "psr-4": {
  3383. "Hyperf\\Redis\\": "src/"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "description": "A redis component for hyperf.",
  3391. "homepage": "https://hyperf.io",
  3392. "keywords": [
  3393. "hyperf",
  3394. "php",
  3395. "pool",
  3396. "redis"
  3397. ],
  3398. "support": {
  3399. "docs": "https://hyperf.wiki",
  3400. "issues": "https://github.com/hyperf/hyperf/issues",
  3401. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3402. "source": "https://github.com/hyperf/hyperf"
  3403. },
  3404. "funding": [
  3405. {
  3406. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3407. "type": "custom"
  3408. },
  3409. {
  3410. "url": "https://opencollective.com/hyperf",
  3411. "type": "open_collective"
  3412. }
  3413. ],
  3414. "time": "2024-09-25T02:54:12+00:00"
  3415. },
  3416. {
  3417. "name": "hyperf/rpc",
  3418. "version": "v3.1.42",
  3419. "source": {
  3420. "type": "git",
  3421. "url": "https://github.com/hyperf/rpc.git",
  3422. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f"
  3423. },
  3424. "dist": {
  3425. "type": "zip",
  3426. "url": "https://api.github.com/repos/hyperf/rpc/zipball/90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3427. "reference": "90e97635c0e3c5080e422abdfc1399fd57ee204f",
  3428. "shasum": ""
  3429. },
  3430. "require": {
  3431. "hyperf/codec": "~3.1.0",
  3432. "hyperf/contract": "~3.1.0",
  3433. "hyperf/support": "~3.1.0",
  3434. "jetbrains/phpstorm-attributes": "^1.0",
  3435. "php": ">=8.1"
  3436. },
  3437. "type": "library",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-master": "3.1-dev"
  3441. },
  3442. "hyperf": []
  3443. },
  3444. "autoload": {
  3445. "psr-4": {
  3446. "Hyperf\\Rpc\\": "src/"
  3447. }
  3448. },
  3449. "notification-url": "https://packagist.org/downloads/",
  3450. "license": [
  3451. "MIT"
  3452. ],
  3453. "description": "A rpc basic library for Hyperf.",
  3454. "homepage": "https://hyperf.io",
  3455. "keywords": [
  3456. "hyperf",
  3457. "php",
  3458. "rpc",
  3459. "swoole"
  3460. ],
  3461. "support": {
  3462. "docs": "https://hyperf.wiki",
  3463. "issues": "https://github.com/hyperf/hyperf/issues",
  3464. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3465. "source": "https://github.com/hyperf/hyperf"
  3466. },
  3467. "funding": [
  3468. {
  3469. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3470. "type": "custom"
  3471. },
  3472. {
  3473. "url": "https://opencollective.com/hyperf",
  3474. "type": "open_collective"
  3475. }
  3476. ],
  3477. "time": "2024-09-25T02:54:12+00:00"
  3478. },
  3479. {
  3480. "name": "hyperf/rpc-server",
  3481. "version": "v3.1.42",
  3482. "source": {
  3483. "type": "git",
  3484. "url": "https://github.com/hyperf/rpc-server.git",
  3485. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c"
  3486. },
  3487. "dist": {
  3488. "type": "zip",
  3489. "url": "https://api.github.com/repos/hyperf/rpc-server/zipball/5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3490. "reference": "5647c5fd54342fe96aa2198e7fdeb8ee50cfc30c",
  3491. "shasum": ""
  3492. },
  3493. "require": {
  3494. "hyperf/http-server": "~3.1.0",
  3495. "hyperf/rpc": "~3.1.0",
  3496. "php": ">=8.1"
  3497. },
  3498. "suggest": {
  3499. "hyperf/di": "Required to use annotations."
  3500. },
  3501. "type": "library",
  3502. "extra": {
  3503. "branch-alias": {
  3504. "dev-master": "3.1-dev"
  3505. },
  3506. "hyperf": {
  3507. "config": "Hyperf\\RpcServer\\ConfigProvider"
  3508. }
  3509. },
  3510. "autoload": {
  3511. "psr-4": {
  3512. "Hyperf\\RpcServer\\": "src/"
  3513. }
  3514. },
  3515. "notification-url": "https://packagist.org/downloads/",
  3516. "license": [
  3517. "MIT"
  3518. ],
  3519. "description": "An abstract rpc server component for Hyperf.",
  3520. "homepage": "https://hyperf.io",
  3521. "keywords": [
  3522. "hyperf",
  3523. "php",
  3524. "rpc",
  3525. "rpc-server",
  3526. "swoole"
  3527. ],
  3528. "support": {
  3529. "docs": "https://hyperf.wiki",
  3530. "issues": "https://github.com/hyperf/hyperf/issues",
  3531. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3532. "source": "https://github.com/hyperf/hyperf"
  3533. },
  3534. "funding": [
  3535. {
  3536. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3537. "type": "custom"
  3538. },
  3539. {
  3540. "url": "https://opencollective.com/hyperf",
  3541. "type": "open_collective"
  3542. }
  3543. ],
  3544. "time": "2024-09-25T02:54:12+00:00"
  3545. },
  3546. {
  3547. "name": "hyperf/serializer",
  3548. "version": "v3.1.42",
  3549. "source": {
  3550. "type": "git",
  3551. "url": "https://github.com/hyperf/serializer.git",
  3552. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076"
  3553. },
  3554. "dist": {
  3555. "type": "zip",
  3556. "url": "https://api.github.com/repos/hyperf/serializer/zipball/03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3557. "reference": "03c8a4840e0a7be83670c2fb0f850a2204fad076",
  3558. "shasum": ""
  3559. },
  3560. "require": {
  3561. "hyperf/contract": "~3.1.0",
  3562. "php": ">=8.1"
  3563. },
  3564. "suggest": {
  3565. "hyperf/di": "Required to use ExceptionNormalizer",
  3566. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0|^6.0)",
  3567. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0|^6.0)"
  3568. },
  3569. "type": "library",
  3570. "extra": {
  3571. "branch-alias": {
  3572. "dev-master": "3.1-dev"
  3573. },
  3574. "hyperf": {
  3575. "config": "Hyperf\\Serializer\\ConfigProvider"
  3576. }
  3577. },
  3578. "autoload": {
  3579. "psr-4": {
  3580. "Hyperf\\Serializer\\": "src/"
  3581. }
  3582. },
  3583. "notification-url": "https://packagist.org/downloads/",
  3584. "license": [
  3585. "MIT"
  3586. ],
  3587. "description": "A serializer component for Hyperf.",
  3588. "homepage": "https://hyperf.io",
  3589. "keywords": [
  3590. "hyperf",
  3591. "php",
  3592. "swoole",
  3593. "tappable"
  3594. ],
  3595. "support": {
  3596. "docs": "https://hyperf.wiki",
  3597. "issues": "https://github.com/hyperf/hyperf/issues",
  3598. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3599. "source": "https://github.com/hyperf/hyperf"
  3600. },
  3601. "funding": [
  3602. {
  3603. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3604. "type": "custom"
  3605. },
  3606. {
  3607. "url": "https://opencollective.com/hyperf",
  3608. "type": "open_collective"
  3609. }
  3610. ],
  3611. "time": "2024-09-25T02:54:12+00:00"
  3612. },
  3613. {
  3614. "name": "hyperf/server",
  3615. "version": "v3.1.42",
  3616. "source": {
  3617. "type": "git",
  3618. "url": "https://github.com/hyperf/server.git",
  3619. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460"
  3620. },
  3621. "dist": {
  3622. "type": "zip",
  3623. "url": "https://api.github.com/repos/hyperf/server/zipball/e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3624. "reference": "e10c5ce6d9b72d3ca9ad16d36977e2e64d975460",
  3625. "shasum": ""
  3626. },
  3627. "require": {
  3628. "hyperf/contract": "~3.1.0",
  3629. "hyperf/coordinator": "~3.1.0",
  3630. "hyperf/engine": "^2.8",
  3631. "hyperf/support": "~3.1.0",
  3632. "hyperf/tappable": "~3.1.0",
  3633. "php": ">=8.1",
  3634. "psr/container": "^1.0 || ^2.0",
  3635. "psr/event-dispatcher": "^1.0",
  3636. "psr/log": "^1.0 || ^2.0 || ^3.0",
  3637. "symfony/console": "^5.0 || ^6.0 || ^7.0"
  3638. },
  3639. "suggest": {
  3640. "hyperf/event": "Dump the info after server start.",
  3641. "hyperf/framework": "Dump the info after server start."
  3642. },
  3643. "type": "library",
  3644. "extra": {
  3645. "branch-alias": {
  3646. "dev-master": "3.1-dev"
  3647. },
  3648. "hyperf": {
  3649. "config": "Hyperf\\Server\\ConfigProvider"
  3650. }
  3651. },
  3652. "autoload": {
  3653. "psr-4": {
  3654. "Hyperf\\Server\\": "src/"
  3655. }
  3656. },
  3657. "notification-url": "https://packagist.org/downloads/",
  3658. "license": [
  3659. "MIT"
  3660. ],
  3661. "description": "A base server library for Hyperf.",
  3662. "homepage": "https://hyperf.io",
  3663. "keywords": [
  3664. "hyperf",
  3665. "php",
  3666. "server",
  3667. "swoole"
  3668. ],
  3669. "support": {
  3670. "docs": "https://hyperf.wiki",
  3671. "issues": "https://github.com/hyperf/hyperf/issues",
  3672. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3673. "source": "https://github.com/hyperf/hyperf"
  3674. },
  3675. "funding": [
  3676. {
  3677. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3678. "type": "custom"
  3679. },
  3680. {
  3681. "url": "https://opencollective.com/hyperf",
  3682. "type": "open_collective"
  3683. }
  3684. ],
  3685. "time": "2024-09-25T02:54:12+00:00"
  3686. },
  3687. {
  3688. "name": "hyperf/service-governance",
  3689. "version": "v3.1.42",
  3690. "source": {
  3691. "type": "git",
  3692. "url": "https://github.com/hyperf/service-governance.git",
  3693. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1"
  3694. },
  3695. "dist": {
  3696. "type": "zip",
  3697. "url": "https://api.github.com/repos/hyperf/service-governance/zipball/e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3698. "reference": "e4e606f86d40fd3630e688d23870944d1b7b7db1",
  3699. "shasum": ""
  3700. },
  3701. "require": {
  3702. "hyperf/contract": "~3.1.0",
  3703. "hyperf/support": "~3.1.0",
  3704. "jetbrains/phpstorm-attributes": "^1.0",
  3705. "php": ">=8.1"
  3706. },
  3707. "suggest": {
  3708. "hyperf/event": "Required to use RegisterServiceListener.",
  3709. "hyperf/framework": "Required to use RegisterServiceListener.",
  3710. "hyperf/service-governance-consul": "Required to use consul adapter.",
  3711. "hyperf/service-governance-nacos": "Required to use nacos adapter."
  3712. },
  3713. "type": "library",
  3714. "extra": {
  3715. "branch-alias": {
  3716. "dev-master": "3.1-dev"
  3717. },
  3718. "hyperf": {
  3719. "config": "Hyperf\\ServiceGovernance\\ConfigProvider"
  3720. }
  3721. },
  3722. "autoload": {
  3723. "psr-4": {
  3724. "Hyperf\\ServiceGovernance\\": "src/"
  3725. }
  3726. },
  3727. "notification-url": "https://packagist.org/downloads/",
  3728. "license": [
  3729. "MIT"
  3730. ],
  3731. "description": "A service governance component for Hyperf.",
  3732. "homepage": "https://hyperf.io",
  3733. "keywords": [
  3734. "hyperf",
  3735. "php",
  3736. "service-governance",
  3737. "swoole"
  3738. ],
  3739. "support": {
  3740. "docs": "https://hyperf.wiki",
  3741. "issues": "https://github.com/hyperf/hyperf/issues",
  3742. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3743. "source": "https://github.com/hyperf/hyperf"
  3744. },
  3745. "funding": [
  3746. {
  3747. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3748. "type": "custom"
  3749. },
  3750. {
  3751. "url": "https://opencollective.com/hyperf",
  3752. "type": "open_collective"
  3753. }
  3754. ],
  3755. "time": "2024-09-25T02:54:12+00:00"
  3756. },
  3757. {
  3758. "name": "hyperf/service-governance-consul",
  3759. "version": "v3.1.42",
  3760. "source": {
  3761. "type": "git",
  3762. "url": "https://github.com/hyperf/service-governance-consul.git",
  3763. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e"
  3764. },
  3765. "dist": {
  3766. "type": "zip",
  3767. "url": "https://api.github.com/repos/hyperf/service-governance-consul/zipball/0c153a006eff3778a208ca5233a33ecb2685407e",
  3768. "reference": "0c153a006eff3778a208ca5233a33ecb2685407e",
  3769. "shasum": ""
  3770. },
  3771. "require": {
  3772. "hyperf/consul": "~3.1.0",
  3773. "hyperf/contract": "~3.1.0",
  3774. "hyperf/service-governance": "~3.1.0",
  3775. "hyperf/support": "~3.1.0",
  3776. "hyperf/utils": "~3.1.0",
  3777. "php": ">=8.1"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "branch-alias": {
  3782. "dev-master": "3.1-dev"
  3783. },
  3784. "hyperf": {
  3785. "config": "Hyperf\\ServiceGovernanceConsul\\ConfigProvider"
  3786. }
  3787. },
  3788. "autoload": {
  3789. "psr-4": {
  3790. "Hyperf\\ServiceGovernanceConsul\\": "src/"
  3791. }
  3792. },
  3793. "notification-url": "https://packagist.org/downloads/",
  3794. "license": [
  3795. "MIT"
  3796. ],
  3797. "description": "A consul adapter for service governance.",
  3798. "homepage": "https://hyperf.io",
  3799. "keywords": [
  3800. "consul-adapter",
  3801. "hyperf",
  3802. "php",
  3803. "service-governance",
  3804. "swoole"
  3805. ],
  3806. "support": {
  3807. "docs": "https://hyperf.wiki",
  3808. "issues": "https://github.com/hyperf/hyperf/issues",
  3809. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3810. "source": "https://github.com/hyperf/hyperf"
  3811. },
  3812. "funding": [
  3813. {
  3814. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3815. "type": "custom"
  3816. },
  3817. {
  3818. "url": "https://opencollective.com/hyperf",
  3819. "type": "open_collective"
  3820. }
  3821. ],
  3822. "time": "2024-09-25T02:54:12+00:00"
  3823. },
  3824. {
  3825. "name": "hyperf/service-governance-nacos",
  3826. "version": "v3.1.42",
  3827. "source": {
  3828. "type": "git",
  3829. "url": "https://github.com/hyperf/service-governance-nacos.git",
  3830. "reference": "9f85b659c0c6608e902364cfe0d897844447df25"
  3831. },
  3832. "dist": {
  3833. "type": "zip",
  3834. "url": "https://api.github.com/repos/hyperf/service-governance-nacos/zipball/9f85b659c0c6608e902364cfe0d897844447df25",
  3835. "reference": "9f85b659c0c6608e902364cfe0d897844447df25",
  3836. "shasum": ""
  3837. },
  3838. "require": {
  3839. "hyperf/codec": "~3.1.0",
  3840. "hyperf/contract": "~3.1.0",
  3841. "hyperf/nacos": "~3.1.0",
  3842. "hyperf/service-governance": "~3.1.0",
  3843. "hyperf/support": "~3.1.0",
  3844. "hyperf/utils": "~3.1.0",
  3845. "php": ">=8.1"
  3846. },
  3847. "type": "library",
  3848. "extra": {
  3849. "branch-alias": {
  3850. "dev-master": "3.1-dev"
  3851. },
  3852. "hyperf": {
  3853. "config": "Hyperf\\ServiceGovernanceNacos\\ConfigProvider"
  3854. }
  3855. },
  3856. "autoload": {
  3857. "psr-4": {
  3858. "Hyperf\\ServiceGovernanceNacos\\": "src/"
  3859. }
  3860. },
  3861. "notification-url": "https://packagist.org/downloads/",
  3862. "license": [
  3863. "MIT"
  3864. ],
  3865. "description": "A nacos adapter for service governance.",
  3866. "homepage": "https://hyperf.io",
  3867. "keywords": [
  3868. "hyperf",
  3869. "nacos-adapter",
  3870. "php",
  3871. "service-governance",
  3872. "swoole"
  3873. ],
  3874. "support": {
  3875. "docs": "https://hyperf.wiki",
  3876. "issues": "https://github.com/hyperf/hyperf/issues",
  3877. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3878. "source": "https://github.com/hyperf/hyperf"
  3879. },
  3880. "funding": [
  3881. {
  3882. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3883. "type": "custom"
  3884. },
  3885. {
  3886. "url": "https://opencollective.com/hyperf",
  3887. "type": "open_collective"
  3888. }
  3889. ],
  3890. "time": "2024-09-25T02:54:12+00:00"
  3891. },
  3892. {
  3893. "name": "hyperf/stdlib",
  3894. "version": "v3.1.42",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://github.com/hyperf/stdlib.git",
  3898. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://api.github.com/repos/hyperf/stdlib/zipball/13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3903. "reference": "13393734a4cc6c9878390b1f6b0fc7e5202c6b59",
  3904. "shasum": ""
  3905. },
  3906. "require": {
  3907. "php": ">=8.1"
  3908. },
  3909. "type": "library",
  3910. "extra": {
  3911. "branch-alias": {
  3912. "dev-master": "3.1-dev"
  3913. }
  3914. },
  3915. "autoload": {
  3916. "psr-4": {
  3917. "Hyperf\\Stdlib\\": "src/"
  3918. }
  3919. },
  3920. "notification-url": "https://packagist.org/downloads/",
  3921. "license": [
  3922. "MIT"
  3923. ],
  3924. "description": "A stdlib component for Hyperf.",
  3925. "homepage": "https://hyperf.io",
  3926. "keywords": [
  3927. "hyperf",
  3928. "php",
  3929. "stdlib",
  3930. "swoole"
  3931. ],
  3932. "support": {
  3933. "docs": "https://hyperf.wiki",
  3934. "issues": "https://github.com/hyperf/hyperf/issues",
  3935. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  3936. "source": "https://github.com/hyperf/hyperf"
  3937. },
  3938. "funding": [
  3939. {
  3940. "url": "https://hyperf.wiki/#/zh-cn/donate",
  3941. "type": "custom"
  3942. },
  3943. {
  3944. "url": "https://opencollective.com/hyperf",
  3945. "type": "open_collective"
  3946. }
  3947. ],
  3948. "time": "2024-09-25T02:54:12+00:00"
  3949. },
  3950. {
  3951. "name": "hyperf/stringable",
  3952. "version": "v3.1.43",
  3953. "source": {
  3954. "type": "git",
  3955. "url": "https://github.com/hyperf/stringable.git",
  3956. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755"
  3957. },
  3958. "dist": {
  3959. "type": "zip",
  3960. "url": "https://api.github.com/repos/hyperf/stringable/zipball/5467fc81559ae93b2b7a938a5e75c16645e49755",
  3961. "reference": "5467fc81559ae93b2b7a938a5e75c16645e49755",
  3962. "shasum": ""
  3963. },
  3964. "require": {
  3965. "ext-mbstring": "*",
  3966. "hyperf/collection": "~3.1.0",
  3967. "hyperf/conditionable": "~3.1.0",
  3968. "hyperf/macroable": "~3.1.0",
  3969. "hyperf/tappable": "~3.1.0",
  3970. "php": ">=8.1"
  3971. },
  3972. "suggest": {
  3973. "doctrine/inflector": "Required to use plural and singular methods.(^2.0|^3.0)",
  3974. "ramsey/uuid": "Required to use uuid and orderedUuid methods.(^4.7|^5.0)",
  3975. "symfony/uid": "Required to use ulid method.(^5.0|^6.0)"
  3976. },
  3977. "type": "library",
  3978. "extra": {
  3979. "branch-alias": {
  3980. "dev-master": "3.1-dev"
  3981. }
  3982. },
  3983. "autoload": {
  3984. "files": [
  3985. "src/Functions.php"
  3986. ],
  3987. "psr-4": {
  3988. "Hyperf\\Stringable\\": "src/"
  3989. }
  3990. },
  3991. "notification-url": "https://packagist.org/downloads/",
  3992. "license": [
  3993. "MIT"
  3994. ],
  3995. "description": "Hyperf Stringable package which come from illuminate/support",
  3996. "homepage": "https://hyperf.io",
  3997. "keywords": [
  3998. "hyperf",
  3999. "php",
  4000. "stringable",
  4001. "swoole"
  4002. ],
  4003. "support": {
  4004. "docs": "https://hyperf.wiki",
  4005. "issues": "https://github.com/hyperf/hyperf/issues",
  4006. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4007. "source": "https://github.com/hyperf/hyperf"
  4008. },
  4009. "funding": [
  4010. {
  4011. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4012. "type": "custom"
  4013. },
  4014. {
  4015. "url": "https://opencollective.com/hyperf",
  4016. "type": "open_collective"
  4017. }
  4018. ],
  4019. "time": "2024-10-09T02:28:40+00:00"
  4020. },
  4021. {
  4022. "name": "hyperf/support",
  4023. "version": "v3.1.42",
  4024. "source": {
  4025. "type": "git",
  4026. "url": "https://github.com/hyperf/support.git",
  4027. "reference": "443d90791361f6d04f134f640b0794fc2d870e42"
  4028. },
  4029. "dist": {
  4030. "type": "zip",
  4031. "url": "https://api.github.com/repos/hyperf/support/zipball/443d90791361f6d04f134f640b0794fc2d870e42",
  4032. "reference": "443d90791361f6d04f134f640b0794fc2d870e42",
  4033. "shasum": ""
  4034. },
  4035. "require": {
  4036. "hyperf/collection": "~3.1.0",
  4037. "hyperf/context": "~3.1.0",
  4038. "hyperf/contract": "~3.1.0",
  4039. "hyperf/coroutine": "~3.1.0",
  4040. "hyperf/macroable": "~3.1.0",
  4041. "hyperf/stringable": "~3.1.0",
  4042. "php": ">=8.1"
  4043. },
  4044. "suggest": {
  4045. "nesbot/carbon": "Use Carbon as DateTime object.(^2.0)"
  4046. },
  4047. "type": "library",
  4048. "extra": {
  4049. "branch-alias": {
  4050. "dev-master": "3.1-dev"
  4051. }
  4052. },
  4053. "autoload": {
  4054. "files": [
  4055. "src/Functions.php"
  4056. ],
  4057. "psr-4": {
  4058. "Hyperf\\Support\\": "src/"
  4059. }
  4060. },
  4061. "notification-url": "https://packagist.org/downloads/",
  4062. "license": [
  4063. "MIT"
  4064. ],
  4065. "description": "A support component for Hyperf.",
  4066. "homepage": "https://hyperf.io",
  4067. "keywords": [
  4068. "hyperf",
  4069. "php",
  4070. "support",
  4071. "swoole"
  4072. ],
  4073. "support": {
  4074. "docs": "https://hyperf.wiki",
  4075. "issues": "https://github.com/hyperf/hyperf/issues",
  4076. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4077. "source": "https://github.com/hyperf/hyperf"
  4078. },
  4079. "funding": [
  4080. {
  4081. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4082. "type": "custom"
  4083. },
  4084. {
  4085. "url": "https://opencollective.com/hyperf",
  4086. "type": "open_collective"
  4087. }
  4088. ],
  4089. "time": "2024-09-25T02:54:12+00:00"
  4090. },
  4091. {
  4092. "name": "hyperf/tappable",
  4093. "version": "v3.1.42",
  4094. "source": {
  4095. "type": "git",
  4096. "url": "https://github.com/hyperf/tappable.git",
  4097. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8"
  4098. },
  4099. "dist": {
  4100. "type": "zip",
  4101. "url": "https://api.github.com/repos/hyperf/tappable/zipball/f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4102. "reference": "f5c5d343c95238dcb3fe500876ceadc175e221f8",
  4103. "shasum": ""
  4104. },
  4105. "require": {
  4106. "php": ">=8.1"
  4107. },
  4108. "type": "library",
  4109. "extra": {
  4110. "branch-alias": {
  4111. "dev-master": "3.1-dev"
  4112. }
  4113. },
  4114. "autoload": {
  4115. "files": [
  4116. "src/Functions.php"
  4117. ],
  4118. "psr-4": {
  4119. "Hyperf\\Tappable\\": "src/"
  4120. }
  4121. },
  4122. "notification-url": "https://packagist.org/downloads/",
  4123. "license": [
  4124. "MIT"
  4125. ],
  4126. "description": "Hyperf Macroable package which come from illuminate/tappable",
  4127. "homepage": "https://hyperf.io",
  4128. "keywords": [
  4129. "hyperf",
  4130. "php",
  4131. "swoole",
  4132. "tappable"
  4133. ],
  4134. "support": {
  4135. "docs": "https://hyperf.wiki",
  4136. "issues": "https://github.com/hyperf/hyperf/issues",
  4137. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4138. "source": "https://github.com/hyperf/hyperf"
  4139. },
  4140. "funding": [
  4141. {
  4142. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4143. "type": "custom"
  4144. },
  4145. {
  4146. "url": "https://opencollective.com/hyperf",
  4147. "type": "open_collective"
  4148. }
  4149. ],
  4150. "time": "2024-09-25T02:54:12+00:00"
  4151. },
  4152. {
  4153. "name": "hyperf/utils",
  4154. "version": "v3.1.42",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/hyperf/utils.git",
  4158. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/hyperf/utils/zipball/4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4163. "reference": "4b13a567a61d08a3c4d058499e28a5b26fc18f1c",
  4164. "shasum": ""
  4165. },
  4166. "require": {
  4167. "doctrine/inflector": "^2.0",
  4168. "hyperf/code-parser": "~3.1.0",
  4169. "hyperf/codec": "~3.1.0",
  4170. "hyperf/collection": "~3.1.0",
  4171. "hyperf/context": "~3.1.0",
  4172. "hyperf/contract": "~3.1.0",
  4173. "hyperf/coordinator": "~3.1.0",
  4174. "hyperf/coroutine": "~3.1.0",
  4175. "hyperf/engine": "^2.0",
  4176. "hyperf/macroable": "~3.1.0",
  4177. "hyperf/serializer": "~3.1.0",
  4178. "hyperf/stringable": "~3.1.0",
  4179. "hyperf/support": "~3.1.0",
  4180. "php": ">=8.1"
  4181. },
  4182. "type": "library",
  4183. "extra": {
  4184. "branch-alias": {
  4185. "dev-master": "3.1-dev"
  4186. }
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "MIT"
  4191. ],
  4192. "description": "A tools package that could help developer solved the problem quickly.",
  4193. "homepage": "https://hyperf.io",
  4194. "keywords": [
  4195. "hyperf",
  4196. "php",
  4197. "swoole",
  4198. "utils"
  4199. ],
  4200. "support": {
  4201. "docs": "https://hyperf.wiki",
  4202. "issues": "https://github.com/hyperf/hyperf/issues",
  4203. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  4204. "source": "https://github.com/hyperf/hyperf"
  4205. },
  4206. "funding": [
  4207. {
  4208. "url": "https://hyperf.wiki/#/zh-cn/donate",
  4209. "type": "custom"
  4210. },
  4211. {
  4212. "url": "https://opencollective.com/hyperf",
  4213. "type": "open_collective"
  4214. }
  4215. ],
  4216. "time": "2024-09-25T02:54:12+00:00"
  4217. },
  4218. {
  4219. "name": "jetbrains/phpstorm-attributes",
  4220. "version": "1.1",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/JetBrains/phpstorm-attributes.git",
  4224. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/JetBrains/phpstorm-attributes/zipball/22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4229. "reference": "22fb28d679deceedba8366dbae65cc8ebfc17e26",
  4230. "shasum": ""
  4231. },
  4232. "type": "library",
  4233. "autoload": {
  4234. "psr-4": {
  4235. "JetBrains\\PhpStorm\\": "src/"
  4236. }
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "Apache-2.0"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "JetBrains",
  4245. "homepage": "https://www.jetbrains.com"
  4246. }
  4247. ],
  4248. "description": "PhpStorm specific attributes",
  4249. "keywords": [
  4250. "attributes",
  4251. "jetbrains",
  4252. "phpstorm"
  4253. ],
  4254. "support": {
  4255. "issues": "https://youtrack.jetbrains.com/newIssue?project=WI",
  4256. "source": "https://github.com/JetBrains/phpstorm-attributes/tree/1.1"
  4257. },
  4258. "time": "2023-09-01T08:50:25+00:00"
  4259. },
  4260. {
  4261. "name": "laminas/laminas-mime",
  4262. "version": "2.12.0",
  4263. "source": {
  4264. "type": "git",
  4265. "url": "https://github.com/laminas/laminas-mime.git",
  4266. "reference": "08cc544778829b7d68d27a097885bd6e7130135e"
  4267. },
  4268. "dist": {
  4269. "type": "zip",
  4270. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/08cc544778829b7d68d27a097885bd6e7130135e",
  4271. "reference": "08cc544778829b7d68d27a097885bd6e7130135e",
  4272. "shasum": ""
  4273. },
  4274. "require": {
  4275. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  4276. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
  4277. },
  4278. "conflict": {
  4279. "zendframework/zend-mime": "*"
  4280. },
  4281. "require-dev": {
  4282. "laminas/laminas-coding-standard": "~2.4.0",
  4283. "laminas/laminas-mail": "^2.19.0",
  4284. "phpunit/phpunit": "~9.5.25"
  4285. },
  4286. "suggest": {
  4287. "laminas/laminas-mail": "Laminas\\Mail component"
  4288. },
  4289. "type": "library",
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Laminas\\Mime\\": "src/"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "BSD-3-Clause"
  4298. ],
  4299. "description": "Create and parse MIME messages and parts",
  4300. "homepage": "https://laminas.dev",
  4301. "keywords": [
  4302. "laminas",
  4303. "mime"
  4304. ],
  4305. "support": {
  4306. "chat": "https://laminas.dev/chat",
  4307. "docs": "https://docs.laminas.dev/laminas-mime/",
  4308. "forum": "https://discourse.laminas.dev",
  4309. "issues": "https://github.com/laminas/laminas-mime/issues",
  4310. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  4311. "source": "https://github.com/laminas/laminas-mime"
  4312. },
  4313. "funding": [
  4314. {
  4315. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4316. "type": "community_bridge"
  4317. }
  4318. ],
  4319. "time": "2023-11-02T16:47:19+00:00"
  4320. },
  4321. {
  4322. "name": "laminas/laminas-stdlib",
  4323. "version": "3.20.0",
  4324. "source": {
  4325. "type": "git",
  4326. "url": "https://github.com/laminas/laminas-stdlib.git",
  4327. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4"
  4328. },
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4332. "reference": "8974a1213be42c3e2f70b2c27b17f910291ab2f4",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4337. },
  4338. "conflict": {
  4339. "zendframework/zend-stdlib": "*"
  4340. },
  4341. "require-dev": {
  4342. "laminas/laminas-coding-standard": "^3.0",
  4343. "phpbench/phpbench": "^1.3.1",
  4344. "phpunit/phpunit": "^10.5.38",
  4345. "psalm/plugin-phpunit": "^0.19.0",
  4346. "vimeo/psalm": "^5.26.1"
  4347. },
  4348. "type": "library",
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Laminas\\Stdlib\\": "src/"
  4352. }
  4353. },
  4354. "notification-url": "https://packagist.org/downloads/",
  4355. "license": [
  4356. "BSD-3-Clause"
  4357. ],
  4358. "description": "SPL extensions, array utilities, error handlers, and more",
  4359. "homepage": "https://laminas.dev",
  4360. "keywords": [
  4361. "laminas",
  4362. "stdlib"
  4363. ],
  4364. "support": {
  4365. "chat": "https://laminas.dev/chat",
  4366. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  4367. "forum": "https://discourse.laminas.dev",
  4368. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  4369. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  4370. "source": "https://github.com/laminas/laminas-stdlib"
  4371. },
  4372. "funding": [
  4373. {
  4374. "url": "https://funding.communitybridge.org/projects/laminas-project",
  4375. "type": "community_bridge"
  4376. }
  4377. ],
  4378. "time": "2024-10-29T13:46:07+00:00"
  4379. },
  4380. {
  4381. "name": "markrogoyski/math-php",
  4382. "version": "v2.10.0",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://github.com/markrogoyski/math-php.git",
  4386. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://api.github.com/repos/markrogoyski/math-php/zipball/e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4391. "reference": "e587bfe3aadddfba0f3a40f49d2ed91132f30c5a",
  4392. "shasum": ""
  4393. },
  4394. "require": {
  4395. "ext-json": "*",
  4396. "php": ">=7.2.0"
  4397. },
  4398. "require-dev": {
  4399. "php-coveralls/php-coveralls": "^2.0",
  4400. "php-parallel-lint/php-parallel-lint": "^1.2",
  4401. "phploc/phploc": "*",
  4402. "phpmd/phpmd": "^2.6",
  4403. "phpstan/phpstan": "^1.10",
  4404. "phpunit/phpunit": "^8.5",
  4405. "squizlabs/php_codesniffer": "3.*"
  4406. },
  4407. "type": "library",
  4408. "autoload": {
  4409. "psr-4": {
  4410. "MathPHP\\": "src/"
  4411. }
  4412. },
  4413. "notification-url": "https://packagist.org/downloads/",
  4414. "license": [
  4415. "MIT"
  4416. ],
  4417. "authors": [
  4418. {
  4419. "name": "Mark Rogoyski",
  4420. "email": "mark@rogoyski.com",
  4421. "homepage": "https://github.com/markrogoyski",
  4422. "role": "Lead developer"
  4423. },
  4424. {
  4425. "name": "Kevin Nowaczyk",
  4426. "homepage": "https://github.com/Beakerboy",
  4427. "role": "Developer"
  4428. },
  4429. {
  4430. "name": "MathPHP Community of Contributors",
  4431. "homepage": "https://github.com/markrogoyski/math-php/graphs/contributors"
  4432. }
  4433. ],
  4434. "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",
  4435. "homepage": "https://github.com/markrogoyski/math-php/",
  4436. "keywords": [
  4437. "algebra",
  4438. "combinatorics",
  4439. "distributions",
  4440. "linear algebra",
  4441. "math",
  4442. "mathematics",
  4443. "matrix",
  4444. "numerical analysis",
  4445. "probability",
  4446. "regressions",
  4447. "statistics"
  4448. ],
  4449. "support": {
  4450. "issues": "https://github.com/markrogoyski/math-php/issues",
  4451. "source": "https://github.com/markrogoyski/math-php/tree/v2.10.0"
  4452. },
  4453. "time": "2024-04-17T00:09:51+00:00"
  4454. },
  4455. {
  4456. "name": "monolog/monolog",
  4457. "version": "3.7.0",
  4458. "source": {
  4459. "type": "git",
  4460. "url": "https://github.com/Seldaek/monolog.git",
  4461. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4462. },
  4463. "dist": {
  4464. "type": "zip",
  4465. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4466. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4467. "shasum": ""
  4468. },
  4469. "require": {
  4470. "php": ">=8.1",
  4471. "psr/log": "^2.0 || ^3.0"
  4472. },
  4473. "provide": {
  4474. "psr/log-implementation": "3.0.0"
  4475. },
  4476. "require-dev": {
  4477. "aws/aws-sdk-php": "^3.0",
  4478. "doctrine/couchdb": "~1.0@dev",
  4479. "elasticsearch/elasticsearch": "^7 || ^8",
  4480. "ext-json": "*",
  4481. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4482. "guzzlehttp/guzzle": "^7.4.5",
  4483. "guzzlehttp/psr7": "^2.2",
  4484. "mongodb/mongodb": "^1.8",
  4485. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4486. "phpstan/phpstan": "^1.9",
  4487. "phpstan/phpstan-deprecation-rules": "^1.0",
  4488. "phpstan/phpstan-strict-rules": "^1.4",
  4489. "phpunit/phpunit": "^10.5.17",
  4490. "predis/predis": "^1.1 || ^2",
  4491. "ruflin/elastica": "^7",
  4492. "symfony/mailer": "^5.4 || ^6",
  4493. "symfony/mime": "^5.4 || ^6"
  4494. },
  4495. "suggest": {
  4496. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4497. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4498. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4499. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4500. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4501. "ext-mbstring": "Allow to work properly with unicode symbols",
  4502. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4503. "ext-openssl": "Required to send log messages using SSL",
  4504. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4505. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4506. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4507. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4508. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4509. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4510. },
  4511. "type": "library",
  4512. "extra": {
  4513. "branch-alias": {
  4514. "dev-main": "3.x-dev"
  4515. }
  4516. },
  4517. "autoload": {
  4518. "psr-4": {
  4519. "Monolog\\": "src/Monolog"
  4520. }
  4521. },
  4522. "notification-url": "https://packagist.org/downloads/",
  4523. "license": [
  4524. "MIT"
  4525. ],
  4526. "authors": [
  4527. {
  4528. "name": "Jordi Boggiano",
  4529. "email": "j.boggiano@seld.be",
  4530. "homepage": "https://seld.be"
  4531. }
  4532. ],
  4533. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4534. "homepage": "https://github.com/Seldaek/monolog",
  4535. "keywords": [
  4536. "log",
  4537. "logging",
  4538. "psr-3"
  4539. ],
  4540. "support": {
  4541. "issues": "https://github.com/Seldaek/monolog/issues",
  4542. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4543. },
  4544. "funding": [
  4545. {
  4546. "url": "https://github.com/Seldaek",
  4547. "type": "github"
  4548. },
  4549. {
  4550. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4551. "type": "tidelift"
  4552. }
  4553. ],
  4554. "time": "2024-06-28T09:40:51+00:00"
  4555. },
  4556. {
  4557. "name": "nesbot/carbon",
  4558. "version": "2.72.5",
  4559. "source": {
  4560. "type": "git",
  4561. "url": "https://github.com/briannesbitt/Carbon.git",
  4562. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
  4563. },
  4564. "dist": {
  4565. "type": "zip",
  4566. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
  4567. "reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
  4568. "shasum": ""
  4569. },
  4570. "require": {
  4571. "carbonphp/carbon-doctrine-types": "*",
  4572. "ext-json": "*",
  4573. "php": "^7.1.8 || ^8.0",
  4574. "psr/clock": "^1.0",
  4575. "symfony/polyfill-mbstring": "^1.0",
  4576. "symfony/polyfill-php80": "^1.16",
  4577. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4578. },
  4579. "provide": {
  4580. "psr/clock-implementation": "1.0"
  4581. },
  4582. "require-dev": {
  4583. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4584. "doctrine/orm": "^2.7 || ^3.0",
  4585. "friendsofphp/php-cs-fixer": "^3.0",
  4586. "kylekatarnls/multi-tester": "^2.0",
  4587. "ondrejmirtes/better-reflection": "*",
  4588. "phpmd/phpmd": "^2.9",
  4589. "phpstan/extension-installer": "^1.0",
  4590. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4591. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4592. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4593. "squizlabs/php_codesniffer": "^3.4"
  4594. },
  4595. "bin": [
  4596. "bin/carbon"
  4597. ],
  4598. "type": "library",
  4599. "extra": {
  4600. "branch-alias": {
  4601. "dev-master": "3.x-dev",
  4602. "dev-2.x": "2.x-dev"
  4603. },
  4604. "laravel": {
  4605. "providers": [
  4606. "Carbon\\Laravel\\ServiceProvider"
  4607. ]
  4608. },
  4609. "phpstan": {
  4610. "includes": [
  4611. "extension.neon"
  4612. ]
  4613. }
  4614. },
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Carbon\\": "src/Carbon/"
  4618. }
  4619. },
  4620. "notification-url": "https://packagist.org/downloads/",
  4621. "license": [
  4622. "MIT"
  4623. ],
  4624. "authors": [
  4625. {
  4626. "name": "Brian Nesbitt",
  4627. "email": "brian@nesbot.com",
  4628. "homepage": "https://markido.com"
  4629. },
  4630. {
  4631. "name": "kylekatarnls",
  4632. "homepage": "https://github.com/kylekatarnls"
  4633. }
  4634. ],
  4635. "description": "An API extension for DateTime that supports 281 different languages.",
  4636. "homepage": "https://carbon.nesbot.com",
  4637. "keywords": [
  4638. "date",
  4639. "datetime",
  4640. "time"
  4641. ],
  4642. "support": {
  4643. "docs": "https://carbon.nesbot.com/docs",
  4644. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4645. "source": "https://github.com/briannesbitt/Carbon"
  4646. },
  4647. "funding": [
  4648. {
  4649. "url": "https://github.com/sponsors/kylekatarnls",
  4650. "type": "github"
  4651. },
  4652. {
  4653. "url": "https://opencollective.com/Carbon#sponsor",
  4654. "type": "opencollective"
  4655. },
  4656. {
  4657. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4658. "type": "tidelift"
  4659. }
  4660. ],
  4661. "time": "2024-06-03T19:18:41+00:00"
  4662. },
  4663. {
  4664. "name": "nikic/fast-route",
  4665. "version": "v1.3.0",
  4666. "source": {
  4667. "type": "git",
  4668. "url": "https://github.com/nikic/FastRoute.git",
  4669. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4670. },
  4671. "dist": {
  4672. "type": "zip",
  4673. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4674. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4675. "shasum": ""
  4676. },
  4677. "require": {
  4678. "php": ">=5.4.0"
  4679. },
  4680. "require-dev": {
  4681. "phpunit/phpunit": "^4.8.35|~5.7"
  4682. },
  4683. "type": "library",
  4684. "autoload": {
  4685. "files": [
  4686. "src/functions.php"
  4687. ],
  4688. "psr-4": {
  4689. "FastRoute\\": "src/"
  4690. }
  4691. },
  4692. "notification-url": "https://packagist.org/downloads/",
  4693. "license": [
  4694. "BSD-3-Clause"
  4695. ],
  4696. "authors": [
  4697. {
  4698. "name": "Nikita Popov",
  4699. "email": "nikic@php.net"
  4700. }
  4701. ],
  4702. "description": "Fast request router for PHP",
  4703. "keywords": [
  4704. "router",
  4705. "routing"
  4706. ],
  4707. "support": {
  4708. "issues": "https://github.com/nikic/FastRoute/issues",
  4709. "source": "https://github.com/nikic/FastRoute/tree/master"
  4710. },
  4711. "time": "2018-02-13T20:26:39+00:00"
  4712. },
  4713. {
  4714. "name": "nikic/php-parser",
  4715. "version": "v4.19.4",
  4716. "source": {
  4717. "type": "git",
  4718. "url": "https://github.com/nikic/PHP-Parser.git",
  4719. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2"
  4720. },
  4721. "dist": {
  4722. "type": "zip",
  4723. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4724. "reference": "715f4d25e225bc47b293a8b997fe6ce99bf987d2",
  4725. "shasum": ""
  4726. },
  4727. "require": {
  4728. "ext-tokenizer": "*",
  4729. "php": ">=7.1"
  4730. },
  4731. "require-dev": {
  4732. "ircmaxell/php-yacc": "^0.0.7",
  4733. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  4734. },
  4735. "bin": [
  4736. "bin/php-parse"
  4737. ],
  4738. "type": "library",
  4739. "extra": {
  4740. "branch-alias": {
  4741. "dev-master": "4.9-dev"
  4742. }
  4743. },
  4744. "autoload": {
  4745. "psr-4": {
  4746. "PhpParser\\": "lib/PhpParser"
  4747. }
  4748. },
  4749. "notification-url": "https://packagist.org/downloads/",
  4750. "license": [
  4751. "BSD-3-Clause"
  4752. ],
  4753. "authors": [
  4754. {
  4755. "name": "Nikita Popov"
  4756. }
  4757. ],
  4758. "description": "A PHP parser written in PHP",
  4759. "keywords": [
  4760. "parser",
  4761. "php"
  4762. ],
  4763. "support": {
  4764. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4765. "source": "https://github.com/nikic/PHP-Parser/tree/v4.19.4"
  4766. },
  4767. "time": "2024-09-29T15:01:53+00:00"
  4768. },
  4769. {
  4770. "name": "php-di/phpdoc-reader",
  4771. "version": "2.2.1",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  4775. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4780. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  4781. "shasum": ""
  4782. },
  4783. "require": {
  4784. "php": ">=7.2.0"
  4785. },
  4786. "require-dev": {
  4787. "mnapoli/hard-mode": "~0.3.0",
  4788. "phpunit/phpunit": "^8.5|^9.0"
  4789. },
  4790. "type": "library",
  4791. "autoload": {
  4792. "psr-4": {
  4793. "PhpDocReader\\": "src/PhpDocReader"
  4794. }
  4795. },
  4796. "notification-url": "https://packagist.org/downloads/",
  4797. "license": [
  4798. "MIT"
  4799. ],
  4800. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  4801. "keywords": [
  4802. "phpdoc",
  4803. "reflection"
  4804. ],
  4805. "support": {
  4806. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  4807. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  4808. },
  4809. "time": "2020-10-12T12:39:22+00:00"
  4810. },
  4811. {
  4812. "name": "phpoption/phpoption",
  4813. "version": "1.9.3",
  4814. "source": {
  4815. "type": "git",
  4816. "url": "https://github.com/schmittjoh/php-option.git",
  4817. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  4818. },
  4819. "dist": {
  4820. "type": "zip",
  4821. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4822. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  4823. "shasum": ""
  4824. },
  4825. "require": {
  4826. "php": "^7.2.5 || ^8.0"
  4827. },
  4828. "require-dev": {
  4829. "bamarni/composer-bin-plugin": "^1.8.2",
  4830. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  4831. },
  4832. "type": "library",
  4833. "extra": {
  4834. "bamarni-bin": {
  4835. "bin-links": true,
  4836. "forward-command": false
  4837. },
  4838. "branch-alias": {
  4839. "dev-master": "1.9-dev"
  4840. }
  4841. },
  4842. "autoload": {
  4843. "psr-4": {
  4844. "PhpOption\\": "src/PhpOption/"
  4845. }
  4846. },
  4847. "notification-url": "https://packagist.org/downloads/",
  4848. "license": [
  4849. "Apache-2.0"
  4850. ],
  4851. "authors": [
  4852. {
  4853. "name": "Johannes M. Schmitt",
  4854. "email": "schmittjoh@gmail.com",
  4855. "homepage": "https://github.com/schmittjoh"
  4856. },
  4857. {
  4858. "name": "Graham Campbell",
  4859. "email": "hello@gjcampbell.co.uk",
  4860. "homepage": "https://github.com/GrahamCampbell"
  4861. }
  4862. ],
  4863. "description": "Option Type for PHP",
  4864. "keywords": [
  4865. "language",
  4866. "option",
  4867. "php",
  4868. "type"
  4869. ],
  4870. "support": {
  4871. "issues": "https://github.com/schmittjoh/php-option/issues",
  4872. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  4873. },
  4874. "funding": [
  4875. {
  4876. "url": "https://github.com/GrahamCampbell",
  4877. "type": "github"
  4878. },
  4879. {
  4880. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  4881. "type": "tidelift"
  4882. }
  4883. ],
  4884. "time": "2024-07-20T21:41:07+00:00"
  4885. },
  4886. {
  4887. "name": "psr/cache",
  4888. "version": "3.0.0",
  4889. "source": {
  4890. "type": "git",
  4891. "url": "https://github.com/php-fig/cache.git",
  4892. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  4893. },
  4894. "dist": {
  4895. "type": "zip",
  4896. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4897. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  4898. "shasum": ""
  4899. },
  4900. "require": {
  4901. "php": ">=8.0.0"
  4902. },
  4903. "type": "library",
  4904. "extra": {
  4905. "branch-alias": {
  4906. "dev-master": "1.0.x-dev"
  4907. }
  4908. },
  4909. "autoload": {
  4910. "psr-4": {
  4911. "Psr\\Cache\\": "src/"
  4912. }
  4913. },
  4914. "notification-url": "https://packagist.org/downloads/",
  4915. "license": [
  4916. "MIT"
  4917. ],
  4918. "authors": [
  4919. {
  4920. "name": "PHP-FIG",
  4921. "homepage": "https://www.php-fig.org/"
  4922. }
  4923. ],
  4924. "description": "Common interface for caching libraries",
  4925. "keywords": [
  4926. "cache",
  4927. "psr",
  4928. "psr-6"
  4929. ],
  4930. "support": {
  4931. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  4932. },
  4933. "time": "2021-02-03T23:26:27+00:00"
  4934. },
  4935. {
  4936. "name": "psr/clock",
  4937. "version": "1.0.0",
  4938. "source": {
  4939. "type": "git",
  4940. "url": "https://github.com/php-fig/clock.git",
  4941. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  4942. },
  4943. "dist": {
  4944. "type": "zip",
  4945. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4946. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  4947. "shasum": ""
  4948. },
  4949. "require": {
  4950. "php": "^7.0 || ^8.0"
  4951. },
  4952. "type": "library",
  4953. "autoload": {
  4954. "psr-4": {
  4955. "Psr\\Clock\\": "src/"
  4956. }
  4957. },
  4958. "notification-url": "https://packagist.org/downloads/",
  4959. "license": [
  4960. "MIT"
  4961. ],
  4962. "authors": [
  4963. {
  4964. "name": "PHP-FIG",
  4965. "homepage": "https://www.php-fig.org/"
  4966. }
  4967. ],
  4968. "description": "Common interface for reading the clock.",
  4969. "homepage": "https://github.com/php-fig/clock",
  4970. "keywords": [
  4971. "clock",
  4972. "now",
  4973. "psr",
  4974. "psr-20",
  4975. "time"
  4976. ],
  4977. "support": {
  4978. "issues": "https://github.com/php-fig/clock/issues",
  4979. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  4980. },
  4981. "time": "2022-11-25T14:36:26+00:00"
  4982. },
  4983. {
  4984. "name": "psr/container",
  4985. "version": "2.0.2",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://github.com/php-fig/container.git",
  4989. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4994. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  4995. "shasum": ""
  4996. },
  4997. "require": {
  4998. "php": ">=7.4.0"
  4999. },
  5000. "type": "library",
  5001. "extra": {
  5002. "branch-alias": {
  5003. "dev-master": "2.0.x-dev"
  5004. }
  5005. },
  5006. "autoload": {
  5007. "psr-4": {
  5008. "Psr\\Container\\": "src/"
  5009. }
  5010. },
  5011. "notification-url": "https://packagist.org/downloads/",
  5012. "license": [
  5013. "MIT"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "PHP-FIG",
  5018. "homepage": "https://www.php-fig.org/"
  5019. }
  5020. ],
  5021. "description": "Common Container Interface (PHP FIG PSR-11)",
  5022. "homepage": "https://github.com/php-fig/container",
  5023. "keywords": [
  5024. "PSR-11",
  5025. "container",
  5026. "container-interface",
  5027. "container-interop",
  5028. "psr"
  5029. ],
  5030. "support": {
  5031. "issues": "https://github.com/php-fig/container/issues",
  5032. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5033. },
  5034. "time": "2021-11-05T16:47:00+00:00"
  5035. },
  5036. {
  5037. "name": "psr/event-dispatcher",
  5038. "version": "1.0.0",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/php-fig/event-dispatcher.git",
  5042. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5047. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "php": ">=7.2.0"
  5052. },
  5053. "type": "library",
  5054. "extra": {
  5055. "branch-alias": {
  5056. "dev-master": "1.0.x-dev"
  5057. }
  5058. },
  5059. "autoload": {
  5060. "psr-4": {
  5061. "Psr\\EventDispatcher\\": "src/"
  5062. }
  5063. },
  5064. "notification-url": "https://packagist.org/downloads/",
  5065. "license": [
  5066. "MIT"
  5067. ],
  5068. "authors": [
  5069. {
  5070. "name": "PHP-FIG",
  5071. "homepage": "http://www.php-fig.org/"
  5072. }
  5073. ],
  5074. "description": "Standard interfaces for event handling.",
  5075. "keywords": [
  5076. "events",
  5077. "psr",
  5078. "psr-14"
  5079. ],
  5080. "support": {
  5081. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5082. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5083. },
  5084. "time": "2019-01-08T18:20:26+00:00"
  5085. },
  5086. {
  5087. "name": "psr/http-client",
  5088. "version": "1.0.3",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/php-fig/http-client.git",
  5092. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5097. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5098. "shasum": ""
  5099. },
  5100. "require": {
  5101. "php": "^7.0 || ^8.0",
  5102. "psr/http-message": "^1.0 || ^2.0"
  5103. },
  5104. "type": "library",
  5105. "extra": {
  5106. "branch-alias": {
  5107. "dev-master": "1.0.x-dev"
  5108. }
  5109. },
  5110. "autoload": {
  5111. "psr-4": {
  5112. "Psr\\Http\\Client\\": "src/"
  5113. }
  5114. },
  5115. "notification-url": "https://packagist.org/downloads/",
  5116. "license": [
  5117. "MIT"
  5118. ],
  5119. "authors": [
  5120. {
  5121. "name": "PHP-FIG",
  5122. "homepage": "https://www.php-fig.org/"
  5123. }
  5124. ],
  5125. "description": "Common interface for HTTP clients",
  5126. "homepage": "https://github.com/php-fig/http-client",
  5127. "keywords": [
  5128. "http",
  5129. "http-client",
  5130. "psr",
  5131. "psr-18"
  5132. ],
  5133. "support": {
  5134. "source": "https://github.com/php-fig/http-client"
  5135. },
  5136. "time": "2023-09-23T14:17:50+00:00"
  5137. },
  5138. {
  5139. "name": "psr/http-factory",
  5140. "version": "1.1.0",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://github.com/php-fig/http-factory.git",
  5144. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5145. },
  5146. "dist": {
  5147. "type": "zip",
  5148. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5149. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5150. "shasum": ""
  5151. },
  5152. "require": {
  5153. "php": ">=7.1",
  5154. "psr/http-message": "^1.0 || ^2.0"
  5155. },
  5156. "type": "library",
  5157. "extra": {
  5158. "branch-alias": {
  5159. "dev-master": "1.0.x-dev"
  5160. }
  5161. },
  5162. "autoload": {
  5163. "psr-4": {
  5164. "Psr\\Http\\Message\\": "src/"
  5165. }
  5166. },
  5167. "notification-url": "https://packagist.org/downloads/",
  5168. "license": [
  5169. "MIT"
  5170. ],
  5171. "authors": [
  5172. {
  5173. "name": "PHP-FIG",
  5174. "homepage": "https://www.php-fig.org/"
  5175. }
  5176. ],
  5177. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5178. "keywords": [
  5179. "factory",
  5180. "http",
  5181. "message",
  5182. "psr",
  5183. "psr-17",
  5184. "psr-7",
  5185. "request",
  5186. "response"
  5187. ],
  5188. "support": {
  5189. "source": "https://github.com/php-fig/http-factory"
  5190. },
  5191. "time": "2024-04-15T12:06:14+00:00"
  5192. },
  5193. {
  5194. "name": "psr/http-message",
  5195. "version": "2.0",
  5196. "source": {
  5197. "type": "git",
  5198. "url": "https://github.com/php-fig/http-message.git",
  5199. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5200. },
  5201. "dist": {
  5202. "type": "zip",
  5203. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5204. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5205. "shasum": ""
  5206. },
  5207. "require": {
  5208. "php": "^7.2 || ^8.0"
  5209. },
  5210. "type": "library",
  5211. "extra": {
  5212. "branch-alias": {
  5213. "dev-master": "2.0.x-dev"
  5214. }
  5215. },
  5216. "autoload": {
  5217. "psr-4": {
  5218. "Psr\\Http\\Message\\": "src/"
  5219. }
  5220. },
  5221. "notification-url": "https://packagist.org/downloads/",
  5222. "license": [
  5223. "MIT"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "PHP-FIG",
  5228. "homepage": "https://www.php-fig.org/"
  5229. }
  5230. ],
  5231. "description": "Common interface for HTTP messages",
  5232. "homepage": "https://github.com/php-fig/http-message",
  5233. "keywords": [
  5234. "http",
  5235. "http-message",
  5236. "psr",
  5237. "psr-7",
  5238. "request",
  5239. "response"
  5240. ],
  5241. "support": {
  5242. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5243. },
  5244. "time": "2023-04-04T09:54:51+00:00"
  5245. },
  5246. {
  5247. "name": "psr/http-server-handler",
  5248. "version": "1.0.2",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/php-fig/http-server-handler.git",
  5252. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  5257. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  5258. "shasum": ""
  5259. },
  5260. "require": {
  5261. "php": ">=7.0",
  5262. "psr/http-message": "^1.0 || ^2.0"
  5263. },
  5264. "type": "library",
  5265. "extra": {
  5266. "branch-alias": {
  5267. "dev-master": "1.0.x-dev"
  5268. }
  5269. },
  5270. "autoload": {
  5271. "psr-4": {
  5272. "Psr\\Http\\Server\\": "src/"
  5273. }
  5274. },
  5275. "notification-url": "https://packagist.org/downloads/",
  5276. "license": [
  5277. "MIT"
  5278. ],
  5279. "authors": [
  5280. {
  5281. "name": "PHP-FIG",
  5282. "homepage": "https://www.php-fig.org/"
  5283. }
  5284. ],
  5285. "description": "Common interface for HTTP server-side request handler",
  5286. "keywords": [
  5287. "handler",
  5288. "http",
  5289. "http-interop",
  5290. "psr",
  5291. "psr-15",
  5292. "psr-7",
  5293. "request",
  5294. "response",
  5295. "server"
  5296. ],
  5297. "support": {
  5298. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  5299. },
  5300. "time": "2023-04-10T20:06:20+00:00"
  5301. },
  5302. {
  5303. "name": "psr/http-server-middleware",
  5304. "version": "1.0.2",
  5305. "source": {
  5306. "type": "git",
  5307. "url": "https://github.com/php-fig/http-server-middleware.git",
  5308. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  5309. },
  5310. "dist": {
  5311. "type": "zip",
  5312. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5313. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  5314. "shasum": ""
  5315. },
  5316. "require": {
  5317. "php": ">=7.0",
  5318. "psr/http-message": "^1.0 || ^2.0",
  5319. "psr/http-server-handler": "^1.0"
  5320. },
  5321. "type": "library",
  5322. "extra": {
  5323. "branch-alias": {
  5324. "dev-master": "1.0.x-dev"
  5325. }
  5326. },
  5327. "autoload": {
  5328. "psr-4": {
  5329. "Psr\\Http\\Server\\": "src/"
  5330. }
  5331. },
  5332. "notification-url": "https://packagist.org/downloads/",
  5333. "license": [
  5334. "MIT"
  5335. ],
  5336. "authors": [
  5337. {
  5338. "name": "PHP-FIG",
  5339. "homepage": "https://www.php-fig.org/"
  5340. }
  5341. ],
  5342. "description": "Common interface for HTTP server-side middleware",
  5343. "keywords": [
  5344. "http",
  5345. "http-interop",
  5346. "middleware",
  5347. "psr",
  5348. "psr-15",
  5349. "psr-7",
  5350. "request",
  5351. "response"
  5352. ],
  5353. "support": {
  5354. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  5355. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  5356. },
  5357. "time": "2023-04-11T06:14:47+00:00"
  5358. },
  5359. {
  5360. "name": "psr/log",
  5361. "version": "3.0.2",
  5362. "source": {
  5363. "type": "git",
  5364. "url": "https://github.com/php-fig/log.git",
  5365. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5366. },
  5367. "dist": {
  5368. "type": "zip",
  5369. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5370. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5371. "shasum": ""
  5372. },
  5373. "require": {
  5374. "php": ">=8.0.0"
  5375. },
  5376. "type": "library",
  5377. "extra": {
  5378. "branch-alias": {
  5379. "dev-master": "3.x-dev"
  5380. }
  5381. },
  5382. "autoload": {
  5383. "psr-4": {
  5384. "Psr\\Log\\": "src"
  5385. }
  5386. },
  5387. "notification-url": "https://packagist.org/downloads/",
  5388. "license": [
  5389. "MIT"
  5390. ],
  5391. "authors": [
  5392. {
  5393. "name": "PHP-FIG",
  5394. "homepage": "https://www.php-fig.org/"
  5395. }
  5396. ],
  5397. "description": "Common interface for logging libraries",
  5398. "homepage": "https://github.com/php-fig/log",
  5399. "keywords": [
  5400. "log",
  5401. "psr",
  5402. "psr-3"
  5403. ],
  5404. "support": {
  5405. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5406. },
  5407. "time": "2024-09-11T13:17:53+00:00"
  5408. },
  5409. {
  5410. "name": "psr/simple-cache",
  5411. "version": "3.0.0",
  5412. "source": {
  5413. "type": "git",
  5414. "url": "https://github.com/php-fig/simple-cache.git",
  5415. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5416. },
  5417. "dist": {
  5418. "type": "zip",
  5419. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5420. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5421. "shasum": ""
  5422. },
  5423. "require": {
  5424. "php": ">=8.0.0"
  5425. },
  5426. "type": "library",
  5427. "extra": {
  5428. "branch-alias": {
  5429. "dev-master": "3.0.x-dev"
  5430. }
  5431. },
  5432. "autoload": {
  5433. "psr-4": {
  5434. "Psr\\SimpleCache\\": "src/"
  5435. }
  5436. },
  5437. "notification-url": "https://packagist.org/downloads/",
  5438. "license": [
  5439. "MIT"
  5440. ],
  5441. "authors": [
  5442. {
  5443. "name": "PHP-FIG",
  5444. "homepage": "https://www.php-fig.org/"
  5445. }
  5446. ],
  5447. "description": "Common interfaces for simple caching",
  5448. "keywords": [
  5449. "cache",
  5450. "caching",
  5451. "psr",
  5452. "psr-16",
  5453. "simple-cache"
  5454. ],
  5455. "support": {
  5456. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5457. },
  5458. "time": "2021-10-29T13:26:27+00:00"
  5459. },
  5460. {
  5461. "name": "ralouphie/getallheaders",
  5462. "version": "3.0.3",
  5463. "source": {
  5464. "type": "git",
  5465. "url": "https://github.com/ralouphie/getallheaders.git",
  5466. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5467. },
  5468. "dist": {
  5469. "type": "zip",
  5470. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5471. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5472. "shasum": ""
  5473. },
  5474. "require": {
  5475. "php": ">=5.6"
  5476. },
  5477. "require-dev": {
  5478. "php-coveralls/php-coveralls": "^2.1",
  5479. "phpunit/phpunit": "^5 || ^6.5"
  5480. },
  5481. "type": "library",
  5482. "autoload": {
  5483. "files": [
  5484. "src/getallheaders.php"
  5485. ]
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "MIT"
  5490. ],
  5491. "authors": [
  5492. {
  5493. "name": "Ralph Khattar",
  5494. "email": "ralph.khattar@gmail.com"
  5495. }
  5496. ],
  5497. "description": "A polyfill for getallheaders.",
  5498. "support": {
  5499. "issues": "https://github.com/ralouphie/getallheaders/issues",
  5500. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  5501. },
  5502. "time": "2019-03-08T08:55:37+00:00"
  5503. },
  5504. {
  5505. "name": "swow/psr7-plus",
  5506. "version": "v1.1.2",
  5507. "source": {
  5508. "type": "git",
  5509. "url": "https://github.com/swow/psr7-plus.git",
  5510. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364"
  5511. },
  5512. "dist": {
  5513. "type": "zip",
  5514. "url": "https://api.github.com/repos/swow/psr7-plus/zipball/7acc4924be907d2ff64edee5a2bd116620e56364",
  5515. "reference": "7acc4924be907d2ff64edee5a2bd116620e56364",
  5516. "shasum": ""
  5517. },
  5518. "require": {
  5519. "php": ">=8.0",
  5520. "psr/http-client": "^1.0",
  5521. "psr/http-factory": "^1.0",
  5522. "psr/http-message": "^1.1|^2.0"
  5523. },
  5524. "type": "library",
  5525. "autoload": {
  5526. "psr-4": {
  5527. "Swow\\Psr7\\Message\\": "src/Message/"
  5528. }
  5529. },
  5530. "notification-url": "https://packagist.org/downloads/",
  5531. "license": [
  5532. "Apache-2.0"
  5533. ],
  5534. "authors": [
  5535. {
  5536. "name": "twose",
  5537. "email": "twosee@php.net"
  5538. }
  5539. ],
  5540. "description": "Modern strong-typed interfaces for Psr7, not only HTTP but also WebSocket",
  5541. "keywords": [
  5542. "http",
  5543. "psr17",
  5544. "psr7",
  5545. "swow",
  5546. "websocket"
  5547. ],
  5548. "support": {
  5549. "issues": "https://github.com/swow/swow",
  5550. "source": "https://github.com/swow/psr7-plus/tree/v1.1.2"
  5551. },
  5552. "time": "2023-06-15T09:18:11+00:00"
  5553. },
  5554. {
  5555. "name": "symfony/console",
  5556. "version": "v6.4.14",
  5557. "source": {
  5558. "type": "git",
  5559. "url": "https://github.com/symfony/console.git",
  5560. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b"
  5561. },
  5562. "dist": {
  5563. "type": "zip",
  5564. "url": "https://api.github.com/repos/symfony/console/zipball/897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5565. "reference": "897c2441ed4eec8a8a2c37b943427d24dba3f26b",
  5566. "shasum": ""
  5567. },
  5568. "require": {
  5569. "php": ">=8.1",
  5570. "symfony/deprecation-contracts": "^2.5|^3",
  5571. "symfony/polyfill-mbstring": "~1.0",
  5572. "symfony/service-contracts": "^2.5|^3",
  5573. "symfony/string": "^5.4|^6.0|^7.0"
  5574. },
  5575. "conflict": {
  5576. "symfony/dependency-injection": "<5.4",
  5577. "symfony/dotenv": "<5.4",
  5578. "symfony/event-dispatcher": "<5.4",
  5579. "symfony/lock": "<5.4",
  5580. "symfony/process": "<5.4"
  5581. },
  5582. "provide": {
  5583. "psr/log-implementation": "1.0|2.0|3.0"
  5584. },
  5585. "require-dev": {
  5586. "psr/log": "^1|^2|^3",
  5587. "symfony/config": "^5.4|^6.0|^7.0",
  5588. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5589. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5590. "symfony/http-foundation": "^6.4|^7.0",
  5591. "symfony/http-kernel": "^6.4|^7.0",
  5592. "symfony/lock": "^5.4|^6.0|^7.0",
  5593. "symfony/messenger": "^5.4|^6.0|^7.0",
  5594. "symfony/process": "^5.4|^6.0|^7.0",
  5595. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5596. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  5597. },
  5598. "type": "library",
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Symfony\\Component\\Console\\": ""
  5602. },
  5603. "exclude-from-classmap": [
  5604. "/Tests/"
  5605. ]
  5606. },
  5607. "notification-url": "https://packagist.org/downloads/",
  5608. "license": [
  5609. "MIT"
  5610. ],
  5611. "authors": [
  5612. {
  5613. "name": "Fabien Potencier",
  5614. "email": "fabien@symfony.com"
  5615. },
  5616. {
  5617. "name": "Symfony Community",
  5618. "homepage": "https://symfony.com/contributors"
  5619. }
  5620. ],
  5621. "description": "Eases the creation of beautiful and testable command line interfaces",
  5622. "homepage": "https://symfony.com",
  5623. "keywords": [
  5624. "cli",
  5625. "command-line",
  5626. "console",
  5627. "terminal"
  5628. ],
  5629. "support": {
  5630. "source": "https://github.com/symfony/console/tree/v6.4.14"
  5631. },
  5632. "funding": [
  5633. {
  5634. "url": "https://symfony.com/sponsor",
  5635. "type": "custom"
  5636. },
  5637. {
  5638. "url": "https://github.com/fabpot",
  5639. "type": "github"
  5640. },
  5641. {
  5642. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5643. "type": "tidelift"
  5644. }
  5645. ],
  5646. "time": "2024-11-05T15:34:40+00:00"
  5647. },
  5648. {
  5649. "name": "symfony/deprecation-contracts",
  5650. "version": "v3.5.0",
  5651. "source": {
  5652. "type": "git",
  5653. "url": "https://github.com/symfony/deprecation-contracts.git",
  5654. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  5655. },
  5656. "dist": {
  5657. "type": "zip",
  5658. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5659. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  5660. "shasum": ""
  5661. },
  5662. "require": {
  5663. "php": ">=8.1"
  5664. },
  5665. "type": "library",
  5666. "extra": {
  5667. "branch-alias": {
  5668. "dev-main": "3.5-dev"
  5669. },
  5670. "thanks": {
  5671. "name": "symfony/contracts",
  5672. "url": "https://github.com/symfony/contracts"
  5673. }
  5674. },
  5675. "autoload": {
  5676. "files": [
  5677. "function.php"
  5678. ]
  5679. },
  5680. "notification-url": "https://packagist.org/downloads/",
  5681. "license": [
  5682. "MIT"
  5683. ],
  5684. "authors": [
  5685. {
  5686. "name": "Nicolas Grekas",
  5687. "email": "p@tchwork.com"
  5688. },
  5689. {
  5690. "name": "Symfony Community",
  5691. "homepage": "https://symfony.com/contributors"
  5692. }
  5693. ],
  5694. "description": "A generic function and convention to trigger deprecation notices",
  5695. "homepage": "https://symfony.com",
  5696. "support": {
  5697. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  5698. },
  5699. "funding": [
  5700. {
  5701. "url": "https://symfony.com/sponsor",
  5702. "type": "custom"
  5703. },
  5704. {
  5705. "url": "https://github.com/fabpot",
  5706. "type": "github"
  5707. },
  5708. {
  5709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5710. "type": "tidelift"
  5711. }
  5712. ],
  5713. "time": "2024-04-18T09:32:20+00:00"
  5714. },
  5715. {
  5716. "name": "symfony/finder",
  5717. "version": "v6.4.13",
  5718. "source": {
  5719. "type": "git",
  5720. "url": "https://github.com/symfony/finder.git",
  5721. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958"
  5722. },
  5723. "dist": {
  5724. "type": "zip",
  5725. "url": "https://api.github.com/repos/symfony/finder/zipball/daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5726. "reference": "daea9eca0b08d0ed1dc9ab702a46128fd1be4958",
  5727. "shasum": ""
  5728. },
  5729. "require": {
  5730. "php": ">=8.1"
  5731. },
  5732. "require-dev": {
  5733. "symfony/filesystem": "^6.0|^7.0"
  5734. },
  5735. "type": "library",
  5736. "autoload": {
  5737. "psr-4": {
  5738. "Symfony\\Component\\Finder\\": ""
  5739. },
  5740. "exclude-from-classmap": [
  5741. "/Tests/"
  5742. ]
  5743. },
  5744. "notification-url": "https://packagist.org/downloads/",
  5745. "license": [
  5746. "MIT"
  5747. ],
  5748. "authors": [
  5749. {
  5750. "name": "Fabien Potencier",
  5751. "email": "fabien@symfony.com"
  5752. },
  5753. {
  5754. "name": "Symfony Community",
  5755. "homepage": "https://symfony.com/contributors"
  5756. }
  5757. ],
  5758. "description": "Finds files and directories via an intuitive fluent interface",
  5759. "homepage": "https://symfony.com",
  5760. "support": {
  5761. "source": "https://github.com/symfony/finder/tree/v6.4.13"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://symfony.com/sponsor",
  5766. "type": "custom"
  5767. },
  5768. {
  5769. "url": "https://github.com/fabpot",
  5770. "type": "github"
  5771. },
  5772. {
  5773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5774. "type": "tidelift"
  5775. }
  5776. ],
  5777. "time": "2024-10-01T08:30:56+00:00"
  5778. },
  5779. {
  5780. "name": "symfony/polyfill-ctype",
  5781. "version": "v1.31.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/symfony/polyfill-ctype.git",
  5785. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5790. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5791. "shasum": ""
  5792. },
  5793. "require": {
  5794. "php": ">=7.2"
  5795. },
  5796. "provide": {
  5797. "ext-ctype": "*"
  5798. },
  5799. "suggest": {
  5800. "ext-ctype": "For best performance"
  5801. },
  5802. "type": "library",
  5803. "extra": {
  5804. "thanks": {
  5805. "name": "symfony/polyfill",
  5806. "url": "https://github.com/symfony/polyfill"
  5807. }
  5808. },
  5809. "autoload": {
  5810. "files": [
  5811. "bootstrap.php"
  5812. ],
  5813. "psr-4": {
  5814. "Symfony\\Polyfill\\Ctype\\": ""
  5815. }
  5816. },
  5817. "notification-url": "https://packagist.org/downloads/",
  5818. "license": [
  5819. "MIT"
  5820. ],
  5821. "authors": [
  5822. {
  5823. "name": "Gert de Pagter",
  5824. "email": "BackEndTea@gmail.com"
  5825. },
  5826. {
  5827. "name": "Symfony Community",
  5828. "homepage": "https://symfony.com/contributors"
  5829. }
  5830. ],
  5831. "description": "Symfony polyfill for ctype functions",
  5832. "homepage": "https://symfony.com",
  5833. "keywords": [
  5834. "compatibility",
  5835. "ctype",
  5836. "polyfill",
  5837. "portable"
  5838. ],
  5839. "support": {
  5840. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5841. },
  5842. "funding": [
  5843. {
  5844. "url": "https://symfony.com/sponsor",
  5845. "type": "custom"
  5846. },
  5847. {
  5848. "url": "https://github.com/fabpot",
  5849. "type": "github"
  5850. },
  5851. {
  5852. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5853. "type": "tidelift"
  5854. }
  5855. ],
  5856. "time": "2024-09-09T11:45:10+00:00"
  5857. },
  5858. {
  5859. "name": "symfony/polyfill-intl-grapheme",
  5860. "version": "v1.31.0",
  5861. "source": {
  5862. "type": "git",
  5863. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5864. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5865. },
  5866. "dist": {
  5867. "type": "zip",
  5868. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5869. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5870. "shasum": ""
  5871. },
  5872. "require": {
  5873. "php": ">=7.2"
  5874. },
  5875. "suggest": {
  5876. "ext-intl": "For best performance"
  5877. },
  5878. "type": "library",
  5879. "extra": {
  5880. "thanks": {
  5881. "name": "symfony/polyfill",
  5882. "url": "https://github.com/symfony/polyfill"
  5883. }
  5884. },
  5885. "autoload": {
  5886. "files": [
  5887. "bootstrap.php"
  5888. ],
  5889. "psr-4": {
  5890. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5891. }
  5892. },
  5893. "notification-url": "https://packagist.org/downloads/",
  5894. "license": [
  5895. "MIT"
  5896. ],
  5897. "authors": [
  5898. {
  5899. "name": "Nicolas Grekas",
  5900. "email": "p@tchwork.com"
  5901. },
  5902. {
  5903. "name": "Symfony Community",
  5904. "homepage": "https://symfony.com/contributors"
  5905. }
  5906. ],
  5907. "description": "Symfony polyfill for intl's grapheme_* functions",
  5908. "homepage": "https://symfony.com",
  5909. "keywords": [
  5910. "compatibility",
  5911. "grapheme",
  5912. "intl",
  5913. "polyfill",
  5914. "portable",
  5915. "shim"
  5916. ],
  5917. "support": {
  5918. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5919. },
  5920. "funding": [
  5921. {
  5922. "url": "https://symfony.com/sponsor",
  5923. "type": "custom"
  5924. },
  5925. {
  5926. "url": "https://github.com/fabpot",
  5927. "type": "github"
  5928. },
  5929. {
  5930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5931. "type": "tidelift"
  5932. }
  5933. ],
  5934. "time": "2024-09-09T11:45:10+00:00"
  5935. },
  5936. {
  5937. "name": "symfony/polyfill-intl-normalizer",
  5938. "version": "v1.31.0",
  5939. "source": {
  5940. "type": "git",
  5941. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5942. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5943. },
  5944. "dist": {
  5945. "type": "zip",
  5946. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5947. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5948. "shasum": ""
  5949. },
  5950. "require": {
  5951. "php": ">=7.2"
  5952. },
  5953. "suggest": {
  5954. "ext-intl": "For best performance"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "thanks": {
  5959. "name": "symfony/polyfill",
  5960. "url": "https://github.com/symfony/polyfill"
  5961. }
  5962. },
  5963. "autoload": {
  5964. "files": [
  5965. "bootstrap.php"
  5966. ],
  5967. "psr-4": {
  5968. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5969. },
  5970. "classmap": [
  5971. "Resources/stubs"
  5972. ]
  5973. },
  5974. "notification-url": "https://packagist.org/downloads/",
  5975. "license": [
  5976. "MIT"
  5977. ],
  5978. "authors": [
  5979. {
  5980. "name": "Nicolas Grekas",
  5981. "email": "p@tchwork.com"
  5982. },
  5983. {
  5984. "name": "Symfony Community",
  5985. "homepage": "https://symfony.com/contributors"
  5986. }
  5987. ],
  5988. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5989. "homepage": "https://symfony.com",
  5990. "keywords": [
  5991. "compatibility",
  5992. "intl",
  5993. "normalizer",
  5994. "polyfill",
  5995. "portable",
  5996. "shim"
  5997. ],
  5998. "support": {
  5999. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  6000. },
  6001. "funding": [
  6002. {
  6003. "url": "https://symfony.com/sponsor",
  6004. "type": "custom"
  6005. },
  6006. {
  6007. "url": "https://github.com/fabpot",
  6008. "type": "github"
  6009. },
  6010. {
  6011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6012. "type": "tidelift"
  6013. }
  6014. ],
  6015. "time": "2024-09-09T11:45:10+00:00"
  6016. },
  6017. {
  6018. "name": "symfony/polyfill-mbstring",
  6019. "version": "v1.31.0",
  6020. "source": {
  6021. "type": "git",
  6022. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6023. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  6024. },
  6025. "dist": {
  6026. "type": "zip",
  6027. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6028. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  6029. "shasum": ""
  6030. },
  6031. "require": {
  6032. "php": ">=7.2"
  6033. },
  6034. "provide": {
  6035. "ext-mbstring": "*"
  6036. },
  6037. "suggest": {
  6038. "ext-mbstring": "For best performance"
  6039. },
  6040. "type": "library",
  6041. "extra": {
  6042. "thanks": {
  6043. "name": "symfony/polyfill",
  6044. "url": "https://github.com/symfony/polyfill"
  6045. }
  6046. },
  6047. "autoload": {
  6048. "files": [
  6049. "bootstrap.php"
  6050. ],
  6051. "psr-4": {
  6052. "Symfony\\Polyfill\\Mbstring\\": ""
  6053. }
  6054. },
  6055. "notification-url": "https://packagist.org/downloads/",
  6056. "license": [
  6057. "MIT"
  6058. ],
  6059. "authors": [
  6060. {
  6061. "name": "Nicolas Grekas",
  6062. "email": "p@tchwork.com"
  6063. },
  6064. {
  6065. "name": "Symfony Community",
  6066. "homepage": "https://symfony.com/contributors"
  6067. }
  6068. ],
  6069. "description": "Symfony polyfill for the Mbstring extension",
  6070. "homepage": "https://symfony.com",
  6071. "keywords": [
  6072. "compatibility",
  6073. "mbstring",
  6074. "polyfill",
  6075. "portable",
  6076. "shim"
  6077. ],
  6078. "support": {
  6079. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  6080. },
  6081. "funding": [
  6082. {
  6083. "url": "https://symfony.com/sponsor",
  6084. "type": "custom"
  6085. },
  6086. {
  6087. "url": "https://github.com/fabpot",
  6088. "type": "github"
  6089. },
  6090. {
  6091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6092. "type": "tidelift"
  6093. }
  6094. ],
  6095. "time": "2024-09-09T11:45:10+00:00"
  6096. },
  6097. {
  6098. "name": "symfony/polyfill-php80",
  6099. "version": "v1.31.0",
  6100. "source": {
  6101. "type": "git",
  6102. "url": "https://github.com/symfony/polyfill-php80.git",
  6103. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  6104. },
  6105. "dist": {
  6106. "type": "zip",
  6107. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6108. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  6109. "shasum": ""
  6110. },
  6111. "require": {
  6112. "php": ">=7.2"
  6113. },
  6114. "type": "library",
  6115. "extra": {
  6116. "thanks": {
  6117. "name": "symfony/polyfill",
  6118. "url": "https://github.com/symfony/polyfill"
  6119. }
  6120. },
  6121. "autoload": {
  6122. "files": [
  6123. "bootstrap.php"
  6124. ],
  6125. "psr-4": {
  6126. "Symfony\\Polyfill\\Php80\\": ""
  6127. },
  6128. "classmap": [
  6129. "Resources/stubs"
  6130. ]
  6131. },
  6132. "notification-url": "https://packagist.org/downloads/",
  6133. "license": [
  6134. "MIT"
  6135. ],
  6136. "authors": [
  6137. {
  6138. "name": "Ion Bazan",
  6139. "email": "ion.bazan@gmail.com"
  6140. },
  6141. {
  6142. "name": "Nicolas Grekas",
  6143. "email": "p@tchwork.com"
  6144. },
  6145. {
  6146. "name": "Symfony Community",
  6147. "homepage": "https://symfony.com/contributors"
  6148. }
  6149. ],
  6150. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6151. "homepage": "https://symfony.com",
  6152. "keywords": [
  6153. "compatibility",
  6154. "polyfill",
  6155. "portable",
  6156. "shim"
  6157. ],
  6158. "support": {
  6159. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  6160. },
  6161. "funding": [
  6162. {
  6163. "url": "https://symfony.com/sponsor",
  6164. "type": "custom"
  6165. },
  6166. {
  6167. "url": "https://github.com/fabpot",
  6168. "type": "github"
  6169. },
  6170. {
  6171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6172. "type": "tidelift"
  6173. }
  6174. ],
  6175. "time": "2024-09-09T11:45:10+00:00"
  6176. },
  6177. {
  6178. "name": "symfony/service-contracts",
  6179. "version": "v3.5.0",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/symfony/service-contracts.git",
  6183. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6188. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  6189. "shasum": ""
  6190. },
  6191. "require": {
  6192. "php": ">=8.1",
  6193. "psr/container": "^1.1|^2.0",
  6194. "symfony/deprecation-contracts": "^2.5|^3"
  6195. },
  6196. "conflict": {
  6197. "ext-psr": "<1.1|>=2"
  6198. },
  6199. "type": "library",
  6200. "extra": {
  6201. "branch-alias": {
  6202. "dev-main": "3.5-dev"
  6203. },
  6204. "thanks": {
  6205. "name": "symfony/contracts",
  6206. "url": "https://github.com/symfony/contracts"
  6207. }
  6208. },
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Symfony\\Contracts\\Service\\": ""
  6212. },
  6213. "exclude-from-classmap": [
  6214. "/Test/"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Nicolas Grekas",
  6224. "email": "p@tchwork.com"
  6225. },
  6226. {
  6227. "name": "Symfony Community",
  6228. "homepage": "https://symfony.com/contributors"
  6229. }
  6230. ],
  6231. "description": "Generic abstractions related to writing services",
  6232. "homepage": "https://symfony.com",
  6233. "keywords": [
  6234. "abstractions",
  6235. "contracts",
  6236. "decoupling",
  6237. "interfaces",
  6238. "interoperability",
  6239. "standards"
  6240. ],
  6241. "support": {
  6242. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  6243. },
  6244. "funding": [
  6245. {
  6246. "url": "https://symfony.com/sponsor",
  6247. "type": "custom"
  6248. },
  6249. {
  6250. "url": "https://github.com/fabpot",
  6251. "type": "github"
  6252. },
  6253. {
  6254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6255. "type": "tidelift"
  6256. }
  6257. ],
  6258. "time": "2024-04-18T09:32:20+00:00"
  6259. },
  6260. {
  6261. "name": "symfony/string",
  6262. "version": "v6.4.13",
  6263. "source": {
  6264. "type": "git",
  6265. "url": "https://github.com/symfony/string.git",
  6266. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627"
  6267. },
  6268. "dist": {
  6269. "type": "zip",
  6270. "url": "https://api.github.com/repos/symfony/string/zipball/38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6271. "reference": "38371c60c71c72b3d64d8d76f6b1bb81a2cc3627",
  6272. "shasum": ""
  6273. },
  6274. "require": {
  6275. "php": ">=8.1",
  6276. "symfony/polyfill-ctype": "~1.8",
  6277. "symfony/polyfill-intl-grapheme": "~1.0",
  6278. "symfony/polyfill-intl-normalizer": "~1.0",
  6279. "symfony/polyfill-mbstring": "~1.0"
  6280. },
  6281. "conflict": {
  6282. "symfony/translation-contracts": "<2.5"
  6283. },
  6284. "require-dev": {
  6285. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6286. "symfony/http-client": "^5.4|^6.0|^7.0",
  6287. "symfony/intl": "^6.2|^7.0",
  6288. "symfony/translation-contracts": "^2.5|^3.0",
  6289. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6290. },
  6291. "type": "library",
  6292. "autoload": {
  6293. "files": [
  6294. "Resources/functions.php"
  6295. ],
  6296. "psr-4": {
  6297. "Symfony\\Component\\String\\": ""
  6298. },
  6299. "exclude-from-classmap": [
  6300. "/Tests/"
  6301. ]
  6302. },
  6303. "notification-url": "https://packagist.org/downloads/",
  6304. "license": [
  6305. "MIT"
  6306. ],
  6307. "authors": [
  6308. {
  6309. "name": "Nicolas Grekas",
  6310. "email": "p@tchwork.com"
  6311. },
  6312. {
  6313. "name": "Symfony Community",
  6314. "homepage": "https://symfony.com/contributors"
  6315. }
  6316. ],
  6317. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6318. "homepage": "https://symfony.com",
  6319. "keywords": [
  6320. "grapheme",
  6321. "i18n",
  6322. "string",
  6323. "unicode",
  6324. "utf-8",
  6325. "utf8"
  6326. ],
  6327. "support": {
  6328. "source": "https://github.com/symfony/string/tree/v6.4.13"
  6329. },
  6330. "funding": [
  6331. {
  6332. "url": "https://symfony.com/sponsor",
  6333. "type": "custom"
  6334. },
  6335. {
  6336. "url": "https://github.com/fabpot",
  6337. "type": "github"
  6338. },
  6339. {
  6340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6341. "type": "tidelift"
  6342. }
  6343. ],
  6344. "time": "2024-09-25T14:18:03+00:00"
  6345. },
  6346. {
  6347. "name": "symfony/translation",
  6348. "version": "v6.4.13",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://github.com/symfony/translation.git",
  6352. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6357. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6358. "shasum": ""
  6359. },
  6360. "require": {
  6361. "php": ">=8.1",
  6362. "symfony/deprecation-contracts": "^2.5|^3",
  6363. "symfony/polyfill-mbstring": "~1.0",
  6364. "symfony/translation-contracts": "^2.5|^3.0"
  6365. },
  6366. "conflict": {
  6367. "symfony/config": "<5.4",
  6368. "symfony/console": "<5.4",
  6369. "symfony/dependency-injection": "<5.4",
  6370. "symfony/http-client-contracts": "<2.5",
  6371. "symfony/http-kernel": "<5.4",
  6372. "symfony/service-contracts": "<2.5",
  6373. "symfony/twig-bundle": "<5.4",
  6374. "symfony/yaml": "<5.4"
  6375. },
  6376. "provide": {
  6377. "symfony/translation-implementation": "2.3|3.0"
  6378. },
  6379. "require-dev": {
  6380. "nikic/php-parser": "^4.18|^5.0",
  6381. "psr/log": "^1|^2|^3",
  6382. "symfony/config": "^5.4|^6.0|^7.0",
  6383. "symfony/console": "^5.4|^6.0|^7.0",
  6384. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6385. "symfony/finder": "^5.4|^6.0|^7.0",
  6386. "symfony/http-client-contracts": "^2.5|^3.0",
  6387. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6388. "symfony/intl": "^5.4|^6.0|^7.0",
  6389. "symfony/polyfill-intl-icu": "^1.21",
  6390. "symfony/routing": "^5.4|^6.0|^7.0",
  6391. "symfony/service-contracts": "^2.5|^3",
  6392. "symfony/yaml": "^5.4|^6.0|^7.0"
  6393. },
  6394. "type": "library",
  6395. "autoload": {
  6396. "files": [
  6397. "Resources/functions.php"
  6398. ],
  6399. "psr-4": {
  6400. "Symfony\\Component\\Translation\\": ""
  6401. },
  6402. "exclude-from-classmap": [
  6403. "/Tests/"
  6404. ]
  6405. },
  6406. "notification-url": "https://packagist.org/downloads/",
  6407. "license": [
  6408. "MIT"
  6409. ],
  6410. "authors": [
  6411. {
  6412. "name": "Fabien Potencier",
  6413. "email": "fabien@symfony.com"
  6414. },
  6415. {
  6416. "name": "Symfony Community",
  6417. "homepage": "https://symfony.com/contributors"
  6418. }
  6419. ],
  6420. "description": "Provides tools to internationalize your application",
  6421. "homepage": "https://symfony.com",
  6422. "support": {
  6423. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://symfony.com/sponsor",
  6428. "type": "custom"
  6429. },
  6430. {
  6431. "url": "https://github.com/fabpot",
  6432. "type": "github"
  6433. },
  6434. {
  6435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6436. "type": "tidelift"
  6437. }
  6438. ],
  6439. "time": "2024-09-27T18:14:25+00:00"
  6440. },
  6441. {
  6442. "name": "symfony/translation-contracts",
  6443. "version": "v3.5.0",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/symfony/translation-contracts.git",
  6447. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6452. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "php": ">=8.1"
  6457. },
  6458. "type": "library",
  6459. "extra": {
  6460. "branch-alias": {
  6461. "dev-main": "3.5-dev"
  6462. },
  6463. "thanks": {
  6464. "name": "symfony/contracts",
  6465. "url": "https://github.com/symfony/contracts"
  6466. }
  6467. },
  6468. "autoload": {
  6469. "psr-4": {
  6470. "Symfony\\Contracts\\Translation\\": ""
  6471. },
  6472. "exclude-from-classmap": [
  6473. "/Test/"
  6474. ]
  6475. },
  6476. "notification-url": "https://packagist.org/downloads/",
  6477. "license": [
  6478. "MIT"
  6479. ],
  6480. "authors": [
  6481. {
  6482. "name": "Nicolas Grekas",
  6483. "email": "p@tchwork.com"
  6484. },
  6485. {
  6486. "name": "Symfony Community",
  6487. "homepage": "https://symfony.com/contributors"
  6488. }
  6489. ],
  6490. "description": "Generic abstractions related to translation",
  6491. "homepage": "https://symfony.com",
  6492. "keywords": [
  6493. "abstractions",
  6494. "contracts",
  6495. "decoupling",
  6496. "interfaces",
  6497. "interoperability",
  6498. "standards"
  6499. ],
  6500. "support": {
  6501. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  6502. },
  6503. "funding": [
  6504. {
  6505. "url": "https://symfony.com/sponsor",
  6506. "type": "custom"
  6507. },
  6508. {
  6509. "url": "https://github.com/fabpot",
  6510. "type": "github"
  6511. },
  6512. {
  6513. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6514. "type": "tidelift"
  6515. }
  6516. ],
  6517. "time": "2024-04-18T09:32:20+00:00"
  6518. },
  6519. {
  6520. "name": "vlucas/phpdotenv",
  6521. "version": "v5.6.1",
  6522. "source": {
  6523. "type": "git",
  6524. "url": "https://github.com/vlucas/phpdotenv.git",
  6525. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  6526. },
  6527. "dist": {
  6528. "type": "zip",
  6529. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6530. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6531. "shasum": ""
  6532. },
  6533. "require": {
  6534. "ext-pcre": "*",
  6535. "graham-campbell/result-type": "^1.1.3",
  6536. "php": "^7.2.5 || ^8.0",
  6537. "phpoption/phpoption": "^1.9.3",
  6538. "symfony/polyfill-ctype": "^1.24",
  6539. "symfony/polyfill-mbstring": "^1.24",
  6540. "symfony/polyfill-php80": "^1.24"
  6541. },
  6542. "require-dev": {
  6543. "bamarni/composer-bin-plugin": "^1.8.2",
  6544. "ext-filter": "*",
  6545. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6546. },
  6547. "suggest": {
  6548. "ext-filter": "Required to use the boolean validator."
  6549. },
  6550. "type": "library",
  6551. "extra": {
  6552. "bamarni-bin": {
  6553. "bin-links": true,
  6554. "forward-command": false
  6555. },
  6556. "branch-alias": {
  6557. "dev-master": "5.6-dev"
  6558. }
  6559. },
  6560. "autoload": {
  6561. "psr-4": {
  6562. "Dotenv\\": "src/"
  6563. }
  6564. },
  6565. "notification-url": "https://packagist.org/downloads/",
  6566. "license": [
  6567. "BSD-3-Clause"
  6568. ],
  6569. "authors": [
  6570. {
  6571. "name": "Graham Campbell",
  6572. "email": "hello@gjcampbell.co.uk",
  6573. "homepage": "https://github.com/GrahamCampbell"
  6574. },
  6575. {
  6576. "name": "Vance Lucas",
  6577. "email": "vance@vancelucas.com",
  6578. "homepage": "https://github.com/vlucas"
  6579. }
  6580. ],
  6581. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6582. "keywords": [
  6583. "dotenv",
  6584. "env",
  6585. "environment"
  6586. ],
  6587. "support": {
  6588. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6589. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://github.com/GrahamCampbell",
  6594. "type": "github"
  6595. },
  6596. {
  6597. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6598. "type": "tidelift"
  6599. }
  6600. ],
  6601. "time": "2024-07-20T21:52:34+00:00"
  6602. }
  6603. ],
  6604. "packages-dev": [
  6605. {
  6606. "name": "clue/ndjson-react",
  6607. "version": "v1.3.0",
  6608. "source": {
  6609. "type": "git",
  6610. "url": "https://github.com/clue/reactphp-ndjson.git",
  6611. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0"
  6612. },
  6613. "dist": {
  6614. "type": "zip",
  6615. "url": "https://api.github.com/repos/clue/reactphp-ndjson/zipball/392dc165fce93b5bb5c637b67e59619223c931b0",
  6616. "reference": "392dc165fce93b5bb5c637b67e59619223c931b0",
  6617. "shasum": ""
  6618. },
  6619. "require": {
  6620. "php": ">=5.3",
  6621. "react/stream": "^1.2"
  6622. },
  6623. "require-dev": {
  6624. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35",
  6625. "react/event-loop": "^1.2"
  6626. },
  6627. "type": "library",
  6628. "autoload": {
  6629. "psr-4": {
  6630. "Clue\\React\\NDJson\\": "src/"
  6631. }
  6632. },
  6633. "notification-url": "https://packagist.org/downloads/",
  6634. "license": [
  6635. "MIT"
  6636. ],
  6637. "authors": [
  6638. {
  6639. "name": "Christian Lück",
  6640. "email": "christian@clue.engineering"
  6641. }
  6642. ],
  6643. "description": "Streaming newline-delimited JSON (NDJSON) parser and encoder for ReactPHP.",
  6644. "homepage": "https://github.com/clue/reactphp-ndjson",
  6645. "keywords": [
  6646. "NDJSON",
  6647. "json",
  6648. "jsonlines",
  6649. "newline",
  6650. "reactphp",
  6651. "streaming"
  6652. ],
  6653. "support": {
  6654. "issues": "https://github.com/clue/reactphp-ndjson/issues",
  6655. "source": "https://github.com/clue/reactphp-ndjson/tree/v1.3.0"
  6656. },
  6657. "funding": [
  6658. {
  6659. "url": "https://clue.engineering/support",
  6660. "type": "custom"
  6661. },
  6662. {
  6663. "url": "https://github.com/clue",
  6664. "type": "github"
  6665. }
  6666. ],
  6667. "time": "2022-12-23T10:58:28+00:00"
  6668. },
  6669. {
  6670. "name": "composer/pcre",
  6671. "version": "3.3.1",
  6672. "source": {
  6673. "type": "git",
  6674. "url": "https://github.com/composer/pcre.git",
  6675. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4"
  6676. },
  6677. "dist": {
  6678. "type": "zip",
  6679. "url": "https://api.github.com/repos/composer/pcre/zipball/63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6680. "reference": "63aaeac21d7e775ff9bc9d45021e1745c97521c4",
  6681. "shasum": ""
  6682. },
  6683. "require": {
  6684. "php": "^7.4 || ^8.0"
  6685. },
  6686. "conflict": {
  6687. "phpstan/phpstan": "<1.11.10"
  6688. },
  6689. "require-dev": {
  6690. "phpstan/phpstan": "^1.11.10",
  6691. "phpstan/phpstan-strict-rules": "^1.1",
  6692. "phpunit/phpunit": "^8 || ^9"
  6693. },
  6694. "type": "library",
  6695. "extra": {
  6696. "branch-alias": {
  6697. "dev-main": "3.x-dev"
  6698. },
  6699. "phpstan": {
  6700. "includes": [
  6701. "extension.neon"
  6702. ]
  6703. }
  6704. },
  6705. "autoload": {
  6706. "psr-4": {
  6707. "Composer\\Pcre\\": "src"
  6708. }
  6709. },
  6710. "notification-url": "https://packagist.org/downloads/",
  6711. "license": [
  6712. "MIT"
  6713. ],
  6714. "authors": [
  6715. {
  6716. "name": "Jordi Boggiano",
  6717. "email": "j.boggiano@seld.be",
  6718. "homepage": "http://seld.be"
  6719. }
  6720. ],
  6721. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6722. "keywords": [
  6723. "PCRE",
  6724. "preg",
  6725. "regex",
  6726. "regular expression"
  6727. ],
  6728. "support": {
  6729. "issues": "https://github.com/composer/pcre/issues",
  6730. "source": "https://github.com/composer/pcre/tree/3.3.1"
  6731. },
  6732. "funding": [
  6733. {
  6734. "url": "https://packagist.com",
  6735. "type": "custom"
  6736. },
  6737. {
  6738. "url": "https://github.com/composer",
  6739. "type": "github"
  6740. },
  6741. {
  6742. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6743. "type": "tidelift"
  6744. }
  6745. ],
  6746. "time": "2024-08-27T18:44:43+00:00"
  6747. },
  6748. {
  6749. "name": "composer/semver",
  6750. "version": "3.4.3",
  6751. "source": {
  6752. "type": "git",
  6753. "url": "https://github.com/composer/semver.git",
  6754. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  6755. },
  6756. "dist": {
  6757. "type": "zip",
  6758. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6759. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  6760. "shasum": ""
  6761. },
  6762. "require": {
  6763. "php": "^5.3.2 || ^7.0 || ^8.0"
  6764. },
  6765. "require-dev": {
  6766. "phpstan/phpstan": "^1.11",
  6767. "symfony/phpunit-bridge": "^3 || ^7"
  6768. },
  6769. "type": "library",
  6770. "extra": {
  6771. "branch-alias": {
  6772. "dev-main": "3.x-dev"
  6773. }
  6774. },
  6775. "autoload": {
  6776. "psr-4": {
  6777. "Composer\\Semver\\": "src"
  6778. }
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "MIT"
  6783. ],
  6784. "authors": [
  6785. {
  6786. "name": "Nils Adermann",
  6787. "email": "naderman@naderman.de",
  6788. "homepage": "http://www.naderman.de"
  6789. },
  6790. {
  6791. "name": "Jordi Boggiano",
  6792. "email": "j.boggiano@seld.be",
  6793. "homepage": "http://seld.be"
  6794. },
  6795. {
  6796. "name": "Rob Bast",
  6797. "email": "rob.bast@gmail.com",
  6798. "homepage": "http://robbast.nl"
  6799. }
  6800. ],
  6801. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  6802. "keywords": [
  6803. "semantic",
  6804. "semver",
  6805. "validation",
  6806. "versioning"
  6807. ],
  6808. "support": {
  6809. "irc": "ircs://irc.libera.chat:6697/composer",
  6810. "issues": "https://github.com/composer/semver/issues",
  6811. "source": "https://github.com/composer/semver/tree/3.4.3"
  6812. },
  6813. "funding": [
  6814. {
  6815. "url": "https://packagist.com",
  6816. "type": "custom"
  6817. },
  6818. {
  6819. "url": "https://github.com/composer",
  6820. "type": "github"
  6821. },
  6822. {
  6823. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6824. "type": "tidelift"
  6825. }
  6826. ],
  6827. "time": "2024-09-19T14:15:21+00:00"
  6828. },
  6829. {
  6830. "name": "composer/xdebug-handler",
  6831. "version": "3.0.5",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://github.com/composer/xdebug-handler.git",
  6835. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
  6840. "reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
  6841. "shasum": ""
  6842. },
  6843. "require": {
  6844. "composer/pcre": "^1 || ^2 || ^3",
  6845. "php": "^7.2.5 || ^8.0",
  6846. "psr/log": "^1 || ^2 || ^3"
  6847. },
  6848. "require-dev": {
  6849. "phpstan/phpstan": "^1.0",
  6850. "phpstan/phpstan-strict-rules": "^1.1",
  6851. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  6852. },
  6853. "type": "library",
  6854. "autoload": {
  6855. "psr-4": {
  6856. "Composer\\XdebugHandler\\": "src"
  6857. }
  6858. },
  6859. "notification-url": "https://packagist.org/downloads/",
  6860. "license": [
  6861. "MIT"
  6862. ],
  6863. "authors": [
  6864. {
  6865. "name": "John Stevenson",
  6866. "email": "john-stevenson@blueyonder.co.uk"
  6867. }
  6868. ],
  6869. "description": "Restarts a process without Xdebug.",
  6870. "keywords": [
  6871. "Xdebug",
  6872. "performance"
  6873. ],
  6874. "support": {
  6875. "irc": "ircs://irc.libera.chat:6697/composer",
  6876. "issues": "https://github.com/composer/xdebug-handler/issues",
  6877. "source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
  6878. },
  6879. "funding": [
  6880. {
  6881. "url": "https://packagist.com",
  6882. "type": "custom"
  6883. },
  6884. {
  6885. "url": "https://github.com/composer",
  6886. "type": "github"
  6887. },
  6888. {
  6889. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6890. "type": "tidelift"
  6891. }
  6892. ],
  6893. "time": "2024-05-06T16:37:16+00:00"
  6894. },
  6895. {
  6896. "name": "evenement/evenement",
  6897. "version": "v3.0.2",
  6898. "source": {
  6899. "type": "git",
  6900. "url": "https://github.com/igorw/evenement.git",
  6901. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  6902. },
  6903. "dist": {
  6904. "type": "zip",
  6905. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6906. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  6907. "shasum": ""
  6908. },
  6909. "require": {
  6910. "php": ">=7.0"
  6911. },
  6912. "require-dev": {
  6913. "phpunit/phpunit": "^9 || ^6"
  6914. },
  6915. "type": "library",
  6916. "autoload": {
  6917. "psr-4": {
  6918. "Evenement\\": "src/"
  6919. }
  6920. },
  6921. "notification-url": "https://packagist.org/downloads/",
  6922. "license": [
  6923. "MIT"
  6924. ],
  6925. "authors": [
  6926. {
  6927. "name": "Igor Wiedler",
  6928. "email": "igor@wiedler.ch"
  6929. }
  6930. ],
  6931. "description": "Événement is a very simple event dispatching library for PHP",
  6932. "keywords": [
  6933. "event-dispatcher",
  6934. "event-emitter"
  6935. ],
  6936. "support": {
  6937. "issues": "https://github.com/igorw/evenement/issues",
  6938. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  6939. },
  6940. "time": "2023-08-08T05:53:35+00:00"
  6941. },
  6942. {
  6943. "name": "fidry/cpu-core-counter",
  6944. "version": "1.2.0",
  6945. "source": {
  6946. "type": "git",
  6947. "url": "https://github.com/theofidry/cpu-core-counter.git",
  6948. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  6949. },
  6950. "dist": {
  6951. "type": "zip",
  6952. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  6953. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  6954. "shasum": ""
  6955. },
  6956. "require": {
  6957. "php": "^7.2 || ^8.0"
  6958. },
  6959. "require-dev": {
  6960. "fidry/makefile": "^0.2.0",
  6961. "fidry/php-cs-fixer-config": "^1.1.2",
  6962. "phpstan/extension-installer": "^1.2.0",
  6963. "phpstan/phpstan": "^1.9.2",
  6964. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  6965. "phpstan/phpstan-phpunit": "^1.2.2",
  6966. "phpstan/phpstan-strict-rules": "^1.4.4",
  6967. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  6968. "webmozarts/strict-phpunit": "^7.5"
  6969. },
  6970. "type": "library",
  6971. "autoload": {
  6972. "psr-4": {
  6973. "Fidry\\CpuCoreCounter\\": "src/"
  6974. }
  6975. },
  6976. "notification-url": "https://packagist.org/downloads/",
  6977. "license": [
  6978. "MIT"
  6979. ],
  6980. "authors": [
  6981. {
  6982. "name": "Théo FIDRY",
  6983. "email": "theo.fidry@gmail.com"
  6984. }
  6985. ],
  6986. "description": "Tiny utility to get the number of CPU cores.",
  6987. "keywords": [
  6988. "CPU",
  6989. "core"
  6990. ],
  6991. "support": {
  6992. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  6993. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  6994. },
  6995. "funding": [
  6996. {
  6997. "url": "https://github.com/theofidry",
  6998. "type": "github"
  6999. }
  7000. ],
  7001. "time": "2024-08-06T10:04:20+00:00"
  7002. },
  7003. {
  7004. "name": "friendsofphp/php-cs-fixer",
  7005. "version": "v3.64.0",
  7006. "source": {
  7007. "type": "git",
  7008. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7009. "reference": "58dd9c931c785a79739310aef5178928305ffa67"
  7010. },
  7011. "dist": {
  7012. "type": "zip",
  7013. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/58dd9c931c785a79739310aef5178928305ffa67",
  7014. "reference": "58dd9c931c785a79739310aef5178928305ffa67",
  7015. "shasum": ""
  7016. },
  7017. "require": {
  7018. "clue/ndjson-react": "^1.0",
  7019. "composer/semver": "^3.4",
  7020. "composer/xdebug-handler": "^3.0.3",
  7021. "ext-filter": "*",
  7022. "ext-json": "*",
  7023. "ext-tokenizer": "*",
  7024. "fidry/cpu-core-counter": "^1.0",
  7025. "php": "^7.4 || ^8.0",
  7026. "react/child-process": "^0.6.5",
  7027. "react/event-loop": "^1.0",
  7028. "react/promise": "^2.0 || ^3.0",
  7029. "react/socket": "^1.0",
  7030. "react/stream": "^1.0",
  7031. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7032. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7033. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7034. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7035. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7036. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7037. "symfony/polyfill-mbstring": "^1.28",
  7038. "symfony/polyfill-php80": "^1.28",
  7039. "symfony/polyfill-php81": "^1.28",
  7040. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7041. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7042. },
  7043. "require-dev": {
  7044. "facile-it/paraunit": "^1.3 || ^2.3",
  7045. "infection/infection": "^0.29.5",
  7046. "justinrainbow/json-schema": "^5.2",
  7047. "keradus/cli-executor": "^2.1",
  7048. "mikey179/vfsstream": "^1.6.11",
  7049. "php-coveralls/php-coveralls": "^2.7",
  7050. "php-cs-fixer/accessible-object": "^1.1",
  7051. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.5",
  7052. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.5",
  7053. "phpunit/phpunit": "^9.6.19 || ^10.5.21 || ^11.2",
  7054. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7055. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7056. },
  7057. "suggest": {
  7058. "ext-dom": "For handling output formats in XML",
  7059. "ext-mbstring": "For handling non-UTF8 characters."
  7060. },
  7061. "bin": [
  7062. "php-cs-fixer"
  7063. ],
  7064. "type": "application",
  7065. "autoload": {
  7066. "psr-4": {
  7067. "PhpCsFixer\\": "src/"
  7068. },
  7069. "exclude-from-classmap": [
  7070. "src/Fixer/Internal/*"
  7071. ]
  7072. },
  7073. "notification-url": "https://packagist.org/downloads/",
  7074. "license": [
  7075. "MIT"
  7076. ],
  7077. "authors": [
  7078. {
  7079. "name": "Fabien Potencier",
  7080. "email": "fabien@symfony.com"
  7081. },
  7082. {
  7083. "name": "Dariusz Rumiński",
  7084. "email": "dariusz.ruminski@gmail.com"
  7085. }
  7086. ],
  7087. "description": "A tool to automatically fix PHP code style",
  7088. "keywords": [
  7089. "Static code analysis",
  7090. "fixer",
  7091. "standards",
  7092. "static analysis"
  7093. ],
  7094. "support": {
  7095. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7096. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.64.0"
  7097. },
  7098. "funding": [
  7099. {
  7100. "url": "https://github.com/keradus",
  7101. "type": "github"
  7102. }
  7103. ],
  7104. "time": "2024-08-30T23:09:38+00:00"
  7105. },
  7106. {
  7107. "name": "hamcrest/hamcrest-php",
  7108. "version": "v2.0.1",
  7109. "source": {
  7110. "type": "git",
  7111. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7112. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7113. },
  7114. "dist": {
  7115. "type": "zip",
  7116. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7117. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7118. "shasum": ""
  7119. },
  7120. "require": {
  7121. "php": "^5.3|^7.0|^8.0"
  7122. },
  7123. "replace": {
  7124. "cordoval/hamcrest-php": "*",
  7125. "davedevelopment/hamcrest-php": "*",
  7126. "kodova/hamcrest-php": "*"
  7127. },
  7128. "require-dev": {
  7129. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7130. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7131. },
  7132. "type": "library",
  7133. "extra": {
  7134. "branch-alias": {
  7135. "dev-master": "2.1-dev"
  7136. }
  7137. },
  7138. "autoload": {
  7139. "classmap": [
  7140. "hamcrest"
  7141. ]
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "BSD-3-Clause"
  7146. ],
  7147. "description": "This is the PHP port of Hamcrest Matchers",
  7148. "keywords": [
  7149. "test"
  7150. ],
  7151. "support": {
  7152. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7153. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7154. },
  7155. "time": "2020-07-09T08:09:16+00:00"
  7156. },
  7157. {
  7158. "name": "hyperf/devtool",
  7159. "version": "v3.1.42",
  7160. "source": {
  7161. "type": "git",
  7162. "url": "https://github.com/hyperf/devtool.git",
  7163. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3"
  7164. },
  7165. "dist": {
  7166. "type": "zip",
  7167. "url": "https://api.github.com/repos/hyperf/devtool/zipball/ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7168. "reference": "ae1c8f547c21eb591a94ae3fbacf054542de82d3",
  7169. "shasum": ""
  7170. },
  7171. "require": {
  7172. "hyperf/code-parser": "~3.1.0",
  7173. "hyperf/command": "~3.1.0",
  7174. "hyperf/contract": "~3.1.0",
  7175. "hyperf/di": "~3.1.0",
  7176. "hyperf/support": "~3.1.0",
  7177. "hyperf/utils": "~3.1.0",
  7178. "php": ">=8.1"
  7179. },
  7180. "type": "library",
  7181. "extra": {
  7182. "branch-alias": {
  7183. "dev-master": "3.1-dev"
  7184. },
  7185. "hyperf": {
  7186. "config": "Hyperf\\Devtool\\ConfigProvider"
  7187. }
  7188. },
  7189. "autoload": {
  7190. "psr-4": {
  7191. "Hyperf\\Devtool\\": "src/"
  7192. }
  7193. },
  7194. "notification-url": "https://packagist.org/downloads/",
  7195. "license": [
  7196. "MIT"
  7197. ],
  7198. "description": "A Devtool for Hyperf.",
  7199. "homepage": "https://hyperf.io",
  7200. "keywords": [
  7201. "dev",
  7202. "devtool",
  7203. "hyperf",
  7204. "php",
  7205. "swoole"
  7206. ],
  7207. "support": {
  7208. "docs": "https://hyperf.wiki",
  7209. "issues": "https://github.com/hyperf/hyperf/issues",
  7210. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  7211. "source": "https://github.com/hyperf/hyperf"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7216. "type": "custom"
  7217. },
  7218. {
  7219. "url": "https://opencollective.com/hyperf",
  7220. "type": "open_collective"
  7221. }
  7222. ],
  7223. "time": "2024-09-25T02:54:12+00:00"
  7224. },
  7225. {
  7226. "name": "hyperf/testing",
  7227. "version": "v3.1.44",
  7228. "source": {
  7229. "type": "git",
  7230. "url": "https://github.com/hyperf/testing.git",
  7231. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814"
  7232. },
  7233. "dist": {
  7234. "type": "zip",
  7235. "url": "https://api.github.com/repos/hyperf/testing/zipball/3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7236. "reference": "3cba517358bc980cd63b5a4a6c21978ec75f9814",
  7237. "shasum": ""
  7238. },
  7239. "require": {
  7240. "hyperf/codec": "~3.1.0",
  7241. "hyperf/collection": "~3.1.0",
  7242. "hyperf/contract": "~3.1.0",
  7243. "hyperf/coroutine": "~3.1.0",
  7244. "hyperf/http-message": "~3.1.0",
  7245. "hyperf/http-server": "~3.1.0",
  7246. "hyperf/support": "~3.1.0",
  7247. "hyperf/utils": "~3.1.0",
  7248. "php": ">=8.1",
  7249. "phpunit/phpunit": "^10.0",
  7250. "psr/container": "^1.0 || ^2.0",
  7251. "symfony/http-foundation": "^5.4 || ^6.0"
  7252. },
  7253. "suggest": {
  7254. "fakerphp/faker": "Required to use Faker feature.(^1.23)"
  7255. },
  7256. "bin": [
  7257. "co-phpunit"
  7258. ],
  7259. "type": "library",
  7260. "extra": {
  7261. "branch-alias": {
  7262. "dev-master": "3.1-dev"
  7263. }
  7264. },
  7265. "autoload": {
  7266. "psr-4": {
  7267. "Hyperf\\Testing\\": "src/"
  7268. }
  7269. },
  7270. "notification-url": "https://packagist.org/downloads/",
  7271. "license": [
  7272. "MIT"
  7273. ],
  7274. "description": "Testing for hyperf",
  7275. "keywords": [
  7276. "dev",
  7277. "php",
  7278. "swoole",
  7279. "testing"
  7280. ],
  7281. "support": {
  7282. "source": "https://github.com/hyperf/testing/tree/v3.1.44"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://opencollective.com/hyperf",
  7291. "type": "open_collective"
  7292. }
  7293. ],
  7294. "time": "2024-10-23T10:24:12+00:00"
  7295. },
  7296. {
  7297. "name": "hyperf/watcher",
  7298. "version": "v3.1.43",
  7299. "source": {
  7300. "type": "git",
  7301. "url": "https://github.com/hyperf/watcher.git",
  7302. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802"
  7303. },
  7304. "dist": {
  7305. "type": "zip",
  7306. "url": "https://api.github.com/repos/hyperf/watcher/zipball/a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7307. "reference": "a5f41a66a8b8f651335b4a7c403e03ff0b0f4802",
  7308. "shasum": ""
  7309. },
  7310. "require": {
  7311. "ext-posix": "*",
  7312. "hyperf/codec": "~3.1.0",
  7313. "hyperf/command": "~3.1.0",
  7314. "hyperf/di": "~3.1.0",
  7315. "hyperf/framework": "~3.1.0",
  7316. "hyperf/support": "~3.1.0",
  7317. "php": ">=8.1"
  7318. },
  7319. "type": "library",
  7320. "extra": {
  7321. "branch-alias": {
  7322. "dev-master": "3.1-dev"
  7323. },
  7324. "hyperf": {
  7325. "config": "Hyperf\\Watcher\\ConfigProvider"
  7326. }
  7327. },
  7328. "autoload": {
  7329. "files": [
  7330. "src/Functions.php"
  7331. ],
  7332. "psr-4": {
  7333. "Hyperf\\Watcher\\": "src/"
  7334. }
  7335. },
  7336. "notification-url": "https://packagist.org/downloads/",
  7337. "license": [
  7338. "MIT"
  7339. ],
  7340. "description": "Hot reload watcher for Hyperf",
  7341. "keywords": [
  7342. "dev",
  7343. "hyperf",
  7344. "php"
  7345. ],
  7346. "support": {
  7347. "issues": "https://github.com/hyperf/watcher/issues",
  7348. "source": "https://github.com/hyperf/watcher/tree/v3.1.43"
  7349. },
  7350. "funding": [
  7351. {
  7352. "url": "https://hyperf.wiki/#/zh-cn/donate",
  7353. "type": "custom"
  7354. },
  7355. {
  7356. "url": "https://opencollective.com/hyperf",
  7357. "type": "open_collective"
  7358. }
  7359. ],
  7360. "time": "2024-10-06T12:33:12+00:00"
  7361. },
  7362. {
  7363. "name": "mockery/mockery",
  7364. "version": "1.6.12",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/mockery/mockery.git",
  7368. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7373. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "hamcrest/hamcrest-php": "^2.0.1",
  7378. "lib-pcre": ">=7.0",
  7379. "php": ">=7.3"
  7380. },
  7381. "conflict": {
  7382. "phpunit/phpunit": "<8.0"
  7383. },
  7384. "require-dev": {
  7385. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7386. "symplify/easy-coding-standard": "^12.1.14"
  7387. },
  7388. "type": "library",
  7389. "autoload": {
  7390. "files": [
  7391. "library/helpers.php",
  7392. "library/Mockery.php"
  7393. ],
  7394. "psr-4": {
  7395. "Mockery\\": "library/Mockery"
  7396. }
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "license": [
  7400. "BSD-3-Clause"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Pádraic Brady",
  7405. "email": "padraic.brady@gmail.com",
  7406. "homepage": "https://github.com/padraic",
  7407. "role": "Author"
  7408. },
  7409. {
  7410. "name": "Dave Marshall",
  7411. "email": "dave.marshall@atstsolutions.co.uk",
  7412. "homepage": "https://davedevelopment.co.uk",
  7413. "role": "Developer"
  7414. },
  7415. {
  7416. "name": "Nathanael Esayeas",
  7417. "email": "nathanael.esayeas@protonmail.com",
  7418. "homepage": "https://github.com/ghostwriter",
  7419. "role": "Lead Developer"
  7420. }
  7421. ],
  7422. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7423. "homepage": "https://github.com/mockery/mockery",
  7424. "keywords": [
  7425. "BDD",
  7426. "TDD",
  7427. "library",
  7428. "mock",
  7429. "mock objects",
  7430. "mockery",
  7431. "stub",
  7432. "test",
  7433. "test double",
  7434. "testing"
  7435. ],
  7436. "support": {
  7437. "docs": "https://docs.mockery.io/",
  7438. "issues": "https://github.com/mockery/mockery/issues",
  7439. "rss": "https://github.com/mockery/mockery/releases.atom",
  7440. "security": "https://github.com/mockery/mockery/security/advisories",
  7441. "source": "https://github.com/mockery/mockery"
  7442. },
  7443. "time": "2024-05-16T03:13:13+00:00"
  7444. },
  7445. {
  7446. "name": "myclabs/deep-copy",
  7447. "version": "1.12.1",
  7448. "source": {
  7449. "type": "git",
  7450. "url": "https://github.com/myclabs/DeepCopy.git",
  7451. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  7452. },
  7453. "dist": {
  7454. "type": "zip",
  7455. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  7456. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  7457. "shasum": ""
  7458. },
  7459. "require": {
  7460. "php": "^7.1 || ^8.0"
  7461. },
  7462. "conflict": {
  7463. "doctrine/collections": "<1.6.8",
  7464. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7465. },
  7466. "require-dev": {
  7467. "doctrine/collections": "^1.6.8",
  7468. "doctrine/common": "^2.13.3 || ^3.2.2",
  7469. "phpspec/prophecy": "^1.10",
  7470. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7471. },
  7472. "type": "library",
  7473. "autoload": {
  7474. "files": [
  7475. "src/DeepCopy/deep_copy.php"
  7476. ],
  7477. "psr-4": {
  7478. "DeepCopy\\": "src/DeepCopy/"
  7479. }
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "description": "Create deep copies (clones) of your objects",
  7486. "keywords": [
  7487. "clone",
  7488. "copy",
  7489. "duplicate",
  7490. "object",
  7491. "object graph"
  7492. ],
  7493. "support": {
  7494. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7495. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  7496. },
  7497. "funding": [
  7498. {
  7499. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7500. "type": "tidelift"
  7501. }
  7502. ],
  7503. "time": "2024-11-08T17:47:46+00:00"
  7504. },
  7505. {
  7506. "name": "phar-io/manifest",
  7507. "version": "2.0.4",
  7508. "source": {
  7509. "type": "git",
  7510. "url": "https://github.com/phar-io/manifest.git",
  7511. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7512. },
  7513. "dist": {
  7514. "type": "zip",
  7515. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7516. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7517. "shasum": ""
  7518. },
  7519. "require": {
  7520. "ext-dom": "*",
  7521. "ext-libxml": "*",
  7522. "ext-phar": "*",
  7523. "ext-xmlwriter": "*",
  7524. "phar-io/version": "^3.0.1",
  7525. "php": "^7.2 || ^8.0"
  7526. },
  7527. "type": "library",
  7528. "extra": {
  7529. "branch-alias": {
  7530. "dev-master": "2.0.x-dev"
  7531. }
  7532. },
  7533. "autoload": {
  7534. "classmap": [
  7535. "src/"
  7536. ]
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "BSD-3-Clause"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Arne Blankerts",
  7545. "email": "arne@blankerts.de",
  7546. "role": "Developer"
  7547. },
  7548. {
  7549. "name": "Sebastian Heuer",
  7550. "email": "sebastian@phpeople.de",
  7551. "role": "Developer"
  7552. },
  7553. {
  7554. "name": "Sebastian Bergmann",
  7555. "email": "sebastian@phpunit.de",
  7556. "role": "Developer"
  7557. }
  7558. ],
  7559. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7560. "support": {
  7561. "issues": "https://github.com/phar-io/manifest/issues",
  7562. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7563. },
  7564. "funding": [
  7565. {
  7566. "url": "https://github.com/theseer",
  7567. "type": "github"
  7568. }
  7569. ],
  7570. "time": "2024-03-03T12:33:53+00:00"
  7571. },
  7572. {
  7573. "name": "phar-io/version",
  7574. "version": "3.2.1",
  7575. "source": {
  7576. "type": "git",
  7577. "url": "https://github.com/phar-io/version.git",
  7578. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7579. },
  7580. "dist": {
  7581. "type": "zip",
  7582. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7583. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7584. "shasum": ""
  7585. },
  7586. "require": {
  7587. "php": "^7.2 || ^8.0"
  7588. },
  7589. "type": "library",
  7590. "autoload": {
  7591. "classmap": [
  7592. "src/"
  7593. ]
  7594. },
  7595. "notification-url": "https://packagist.org/downloads/",
  7596. "license": [
  7597. "BSD-3-Clause"
  7598. ],
  7599. "authors": [
  7600. {
  7601. "name": "Arne Blankerts",
  7602. "email": "arne@blankerts.de",
  7603. "role": "Developer"
  7604. },
  7605. {
  7606. "name": "Sebastian Heuer",
  7607. "email": "sebastian@phpeople.de",
  7608. "role": "Developer"
  7609. },
  7610. {
  7611. "name": "Sebastian Bergmann",
  7612. "email": "sebastian@phpunit.de",
  7613. "role": "Developer"
  7614. }
  7615. ],
  7616. "description": "Library for handling version information and constraints",
  7617. "support": {
  7618. "issues": "https://github.com/phar-io/version/issues",
  7619. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7620. },
  7621. "time": "2022-02-21T01:04:05+00:00"
  7622. },
  7623. {
  7624. "name": "phpstan/phpstan",
  7625. "version": "1.12.9",
  7626. "source": {
  7627. "type": "git",
  7628. "url": "https://github.com/phpstan/phpstan.git",
  7629. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c"
  7630. },
  7631. "dist": {
  7632. "type": "zip",
  7633. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/ceb937fb39a92deabc02d20709cf14b2c452502c",
  7634. "reference": "ceb937fb39a92deabc02d20709cf14b2c452502c",
  7635. "shasum": ""
  7636. },
  7637. "require": {
  7638. "php": "^7.2|^8.0"
  7639. },
  7640. "conflict": {
  7641. "phpstan/phpstan-shim": "*"
  7642. },
  7643. "bin": [
  7644. "phpstan",
  7645. "phpstan.phar"
  7646. ],
  7647. "type": "library",
  7648. "autoload": {
  7649. "files": [
  7650. "bootstrap.php"
  7651. ]
  7652. },
  7653. "notification-url": "https://packagist.org/downloads/",
  7654. "license": [
  7655. "MIT"
  7656. ],
  7657. "description": "PHPStan - PHP Static Analysis Tool",
  7658. "keywords": [
  7659. "dev",
  7660. "static analysis"
  7661. ],
  7662. "support": {
  7663. "docs": "https://phpstan.org/user-guide/getting-started",
  7664. "forum": "https://github.com/phpstan/phpstan/discussions",
  7665. "issues": "https://github.com/phpstan/phpstan/issues",
  7666. "security": "https://github.com/phpstan/phpstan/security/policy",
  7667. "source": "https://github.com/phpstan/phpstan-src"
  7668. },
  7669. "funding": [
  7670. {
  7671. "url": "https://github.com/ondrejmirtes",
  7672. "type": "github"
  7673. },
  7674. {
  7675. "url": "https://github.com/phpstan",
  7676. "type": "github"
  7677. }
  7678. ],
  7679. "time": "2024-11-10T17:10:04+00:00"
  7680. },
  7681. {
  7682. "name": "phpunit/php-code-coverage",
  7683. "version": "10.1.16",
  7684. "source": {
  7685. "type": "git",
  7686. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7687. "reference": "7e308268858ed6baedc8704a304727d20bc07c77"
  7688. },
  7689. "dist": {
  7690. "type": "zip",
  7691. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/7e308268858ed6baedc8704a304727d20bc07c77",
  7692. "reference": "7e308268858ed6baedc8704a304727d20bc07c77",
  7693. "shasum": ""
  7694. },
  7695. "require": {
  7696. "ext-dom": "*",
  7697. "ext-libxml": "*",
  7698. "ext-xmlwriter": "*",
  7699. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7700. "php": ">=8.1",
  7701. "phpunit/php-file-iterator": "^4.1.0",
  7702. "phpunit/php-text-template": "^3.0.1",
  7703. "sebastian/code-unit-reverse-lookup": "^3.0.0",
  7704. "sebastian/complexity": "^3.2.0",
  7705. "sebastian/environment": "^6.1.0",
  7706. "sebastian/lines-of-code": "^2.0.2",
  7707. "sebastian/version": "^4.0.1",
  7708. "theseer/tokenizer": "^1.2.3"
  7709. },
  7710. "require-dev": {
  7711. "phpunit/phpunit": "^10.1"
  7712. },
  7713. "suggest": {
  7714. "ext-pcov": "PHP extension that provides line coverage",
  7715. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7716. },
  7717. "type": "library",
  7718. "extra": {
  7719. "branch-alias": {
  7720. "dev-main": "10.1.x-dev"
  7721. }
  7722. },
  7723. "autoload": {
  7724. "classmap": [
  7725. "src/"
  7726. ]
  7727. },
  7728. "notification-url": "https://packagist.org/downloads/",
  7729. "license": [
  7730. "BSD-3-Clause"
  7731. ],
  7732. "authors": [
  7733. {
  7734. "name": "Sebastian Bergmann",
  7735. "email": "sebastian@phpunit.de",
  7736. "role": "lead"
  7737. }
  7738. ],
  7739. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7740. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7741. "keywords": [
  7742. "coverage",
  7743. "testing",
  7744. "xunit"
  7745. ],
  7746. "support": {
  7747. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7748. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7749. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.16"
  7750. },
  7751. "funding": [
  7752. {
  7753. "url": "https://github.com/sebastianbergmann",
  7754. "type": "github"
  7755. }
  7756. ],
  7757. "time": "2024-08-22T04:31:57+00:00"
  7758. },
  7759. {
  7760. "name": "phpunit/php-file-iterator",
  7761. "version": "4.1.0",
  7762. "source": {
  7763. "type": "git",
  7764. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7765. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  7766. },
  7767. "dist": {
  7768. "type": "zip",
  7769. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7770. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  7771. "shasum": ""
  7772. },
  7773. "require": {
  7774. "php": ">=8.1"
  7775. },
  7776. "require-dev": {
  7777. "phpunit/phpunit": "^10.0"
  7778. },
  7779. "type": "library",
  7780. "extra": {
  7781. "branch-alias": {
  7782. "dev-main": "4.0-dev"
  7783. }
  7784. },
  7785. "autoload": {
  7786. "classmap": [
  7787. "src/"
  7788. ]
  7789. },
  7790. "notification-url": "https://packagist.org/downloads/",
  7791. "license": [
  7792. "BSD-3-Clause"
  7793. ],
  7794. "authors": [
  7795. {
  7796. "name": "Sebastian Bergmann",
  7797. "email": "sebastian@phpunit.de",
  7798. "role": "lead"
  7799. }
  7800. ],
  7801. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7802. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7803. "keywords": [
  7804. "filesystem",
  7805. "iterator"
  7806. ],
  7807. "support": {
  7808. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7809. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  7810. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  7811. },
  7812. "funding": [
  7813. {
  7814. "url": "https://github.com/sebastianbergmann",
  7815. "type": "github"
  7816. }
  7817. ],
  7818. "time": "2023-08-31T06:24:48+00:00"
  7819. },
  7820. {
  7821. "name": "phpunit/php-invoker",
  7822. "version": "4.0.0",
  7823. "source": {
  7824. "type": "git",
  7825. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7826. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  7827. },
  7828. "dist": {
  7829. "type": "zip",
  7830. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7831. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  7832. "shasum": ""
  7833. },
  7834. "require": {
  7835. "php": ">=8.1"
  7836. },
  7837. "require-dev": {
  7838. "ext-pcntl": "*",
  7839. "phpunit/phpunit": "^10.0"
  7840. },
  7841. "suggest": {
  7842. "ext-pcntl": "*"
  7843. },
  7844. "type": "library",
  7845. "extra": {
  7846. "branch-alias": {
  7847. "dev-main": "4.0-dev"
  7848. }
  7849. },
  7850. "autoload": {
  7851. "classmap": [
  7852. "src/"
  7853. ]
  7854. },
  7855. "notification-url": "https://packagist.org/downloads/",
  7856. "license": [
  7857. "BSD-3-Clause"
  7858. ],
  7859. "authors": [
  7860. {
  7861. "name": "Sebastian Bergmann",
  7862. "email": "sebastian@phpunit.de",
  7863. "role": "lead"
  7864. }
  7865. ],
  7866. "description": "Invoke callables with a timeout",
  7867. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7868. "keywords": [
  7869. "process"
  7870. ],
  7871. "support": {
  7872. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7873. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  7874. },
  7875. "funding": [
  7876. {
  7877. "url": "https://github.com/sebastianbergmann",
  7878. "type": "github"
  7879. }
  7880. ],
  7881. "time": "2023-02-03T06:56:09+00:00"
  7882. },
  7883. {
  7884. "name": "phpunit/php-text-template",
  7885. "version": "3.0.1",
  7886. "source": {
  7887. "type": "git",
  7888. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7889. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  7890. },
  7891. "dist": {
  7892. "type": "zip",
  7893. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7894. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  7895. "shasum": ""
  7896. },
  7897. "require": {
  7898. "php": ">=8.1"
  7899. },
  7900. "require-dev": {
  7901. "phpunit/phpunit": "^10.0"
  7902. },
  7903. "type": "library",
  7904. "extra": {
  7905. "branch-alias": {
  7906. "dev-main": "3.0-dev"
  7907. }
  7908. },
  7909. "autoload": {
  7910. "classmap": [
  7911. "src/"
  7912. ]
  7913. },
  7914. "notification-url": "https://packagist.org/downloads/",
  7915. "license": [
  7916. "BSD-3-Clause"
  7917. ],
  7918. "authors": [
  7919. {
  7920. "name": "Sebastian Bergmann",
  7921. "email": "sebastian@phpunit.de",
  7922. "role": "lead"
  7923. }
  7924. ],
  7925. "description": "Simple template engine.",
  7926. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7927. "keywords": [
  7928. "template"
  7929. ],
  7930. "support": {
  7931. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  7932. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  7933. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  7934. },
  7935. "funding": [
  7936. {
  7937. "url": "https://github.com/sebastianbergmann",
  7938. "type": "github"
  7939. }
  7940. ],
  7941. "time": "2023-08-31T14:07:24+00:00"
  7942. },
  7943. {
  7944. "name": "phpunit/php-timer",
  7945. "version": "6.0.0",
  7946. "source": {
  7947. "type": "git",
  7948. "url": "https://github.com/sebastianbergmann/php-timer.git",
  7949. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  7950. },
  7951. "dist": {
  7952. "type": "zip",
  7953. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7954. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  7955. "shasum": ""
  7956. },
  7957. "require": {
  7958. "php": ">=8.1"
  7959. },
  7960. "require-dev": {
  7961. "phpunit/phpunit": "^10.0"
  7962. },
  7963. "type": "library",
  7964. "extra": {
  7965. "branch-alias": {
  7966. "dev-main": "6.0-dev"
  7967. }
  7968. },
  7969. "autoload": {
  7970. "classmap": [
  7971. "src/"
  7972. ]
  7973. },
  7974. "notification-url": "https://packagist.org/downloads/",
  7975. "license": [
  7976. "BSD-3-Clause"
  7977. ],
  7978. "authors": [
  7979. {
  7980. "name": "Sebastian Bergmann",
  7981. "email": "sebastian@phpunit.de",
  7982. "role": "lead"
  7983. }
  7984. ],
  7985. "description": "Utility class for timing",
  7986. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  7987. "keywords": [
  7988. "timer"
  7989. ],
  7990. "support": {
  7991. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  7992. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  7993. },
  7994. "funding": [
  7995. {
  7996. "url": "https://github.com/sebastianbergmann",
  7997. "type": "github"
  7998. }
  7999. ],
  8000. "time": "2023-02-03T06:57:52+00:00"
  8001. },
  8002. {
  8003. "name": "phpunit/phpunit",
  8004. "version": "10.5.38",
  8005. "source": {
  8006. "type": "git",
  8007. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8008. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132"
  8009. },
  8010. "dist": {
  8011. "type": "zip",
  8012. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8013. "reference": "a86773b9e887a67bc53efa9da9ad6e3f2498c132",
  8014. "shasum": ""
  8015. },
  8016. "require": {
  8017. "ext-dom": "*",
  8018. "ext-json": "*",
  8019. "ext-libxml": "*",
  8020. "ext-mbstring": "*",
  8021. "ext-xml": "*",
  8022. "ext-xmlwriter": "*",
  8023. "myclabs/deep-copy": "^1.12.0",
  8024. "phar-io/manifest": "^2.0.4",
  8025. "phar-io/version": "^3.2.1",
  8026. "php": ">=8.1",
  8027. "phpunit/php-code-coverage": "^10.1.16",
  8028. "phpunit/php-file-iterator": "^4.1.0",
  8029. "phpunit/php-invoker": "^4.0.0",
  8030. "phpunit/php-text-template": "^3.0.1",
  8031. "phpunit/php-timer": "^6.0.0",
  8032. "sebastian/cli-parser": "^2.0.1",
  8033. "sebastian/code-unit": "^2.0.0",
  8034. "sebastian/comparator": "^5.0.3",
  8035. "sebastian/diff": "^5.1.1",
  8036. "sebastian/environment": "^6.1.0",
  8037. "sebastian/exporter": "^5.1.2",
  8038. "sebastian/global-state": "^6.0.2",
  8039. "sebastian/object-enumerator": "^5.0.0",
  8040. "sebastian/recursion-context": "^5.0.0",
  8041. "sebastian/type": "^4.0.0",
  8042. "sebastian/version": "^4.0.1"
  8043. },
  8044. "suggest": {
  8045. "ext-soap": "To be able to generate mocks based on WSDL files"
  8046. },
  8047. "bin": [
  8048. "phpunit"
  8049. ],
  8050. "type": "library",
  8051. "extra": {
  8052. "branch-alias": {
  8053. "dev-main": "10.5-dev"
  8054. }
  8055. },
  8056. "autoload": {
  8057. "files": [
  8058. "src/Framework/Assert/Functions.php"
  8059. ],
  8060. "classmap": [
  8061. "src/"
  8062. ]
  8063. },
  8064. "notification-url": "https://packagist.org/downloads/",
  8065. "license": [
  8066. "BSD-3-Clause"
  8067. ],
  8068. "authors": [
  8069. {
  8070. "name": "Sebastian Bergmann",
  8071. "email": "sebastian@phpunit.de",
  8072. "role": "lead"
  8073. }
  8074. ],
  8075. "description": "The PHP Unit Testing framework.",
  8076. "homepage": "https://phpunit.de/",
  8077. "keywords": [
  8078. "phpunit",
  8079. "testing",
  8080. "xunit"
  8081. ],
  8082. "support": {
  8083. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8084. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8085. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.38"
  8086. },
  8087. "funding": [
  8088. {
  8089. "url": "https://phpunit.de/sponsors.html",
  8090. "type": "custom"
  8091. },
  8092. {
  8093. "url": "https://github.com/sebastianbergmann",
  8094. "type": "github"
  8095. },
  8096. {
  8097. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8098. "type": "tidelift"
  8099. }
  8100. ],
  8101. "time": "2024-10-28T13:06:21+00:00"
  8102. },
  8103. {
  8104. "name": "react/cache",
  8105. "version": "v1.2.0",
  8106. "source": {
  8107. "type": "git",
  8108. "url": "https://github.com/reactphp/cache.git",
  8109. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b"
  8110. },
  8111. "dist": {
  8112. "type": "zip",
  8113. "url": "https://api.github.com/repos/reactphp/cache/zipball/d47c472b64aa5608225f47965a484b75c7817d5b",
  8114. "reference": "d47c472b64aa5608225f47965a484b75c7817d5b",
  8115. "shasum": ""
  8116. },
  8117. "require": {
  8118. "php": ">=5.3.0",
  8119. "react/promise": "^3.0 || ^2.0 || ^1.1"
  8120. },
  8121. "require-dev": {
  8122. "phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.35"
  8123. },
  8124. "type": "library",
  8125. "autoload": {
  8126. "psr-4": {
  8127. "React\\Cache\\": "src/"
  8128. }
  8129. },
  8130. "notification-url": "https://packagist.org/downloads/",
  8131. "license": [
  8132. "MIT"
  8133. ],
  8134. "authors": [
  8135. {
  8136. "name": "Christian Lück",
  8137. "email": "christian@clue.engineering",
  8138. "homepage": "https://clue.engineering/"
  8139. },
  8140. {
  8141. "name": "Cees-Jan Kiewiet",
  8142. "email": "reactphp@ceesjankiewiet.nl",
  8143. "homepage": "https://wyrihaximus.net/"
  8144. },
  8145. {
  8146. "name": "Jan Sorgalla",
  8147. "email": "jsorgalla@gmail.com",
  8148. "homepage": "https://sorgalla.com/"
  8149. },
  8150. {
  8151. "name": "Chris Boden",
  8152. "email": "cboden@gmail.com",
  8153. "homepage": "https://cboden.dev/"
  8154. }
  8155. ],
  8156. "description": "Async, Promise-based cache interface for ReactPHP",
  8157. "keywords": [
  8158. "cache",
  8159. "caching",
  8160. "promise",
  8161. "reactphp"
  8162. ],
  8163. "support": {
  8164. "issues": "https://github.com/reactphp/cache/issues",
  8165. "source": "https://github.com/reactphp/cache/tree/v1.2.0"
  8166. },
  8167. "funding": [
  8168. {
  8169. "url": "https://opencollective.com/reactphp",
  8170. "type": "open_collective"
  8171. }
  8172. ],
  8173. "time": "2022-11-30T15:59:55+00:00"
  8174. },
  8175. {
  8176. "name": "react/child-process",
  8177. "version": "v0.6.5",
  8178. "source": {
  8179. "type": "git",
  8180. "url": "https://github.com/reactphp/child-process.git",
  8181. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43"
  8182. },
  8183. "dist": {
  8184. "type": "zip",
  8185. "url": "https://api.github.com/repos/reactphp/child-process/zipball/e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8186. "reference": "e71eb1aa55f057c7a4a0d08d06b0b0a484bead43",
  8187. "shasum": ""
  8188. },
  8189. "require": {
  8190. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8191. "php": ">=5.3.0",
  8192. "react/event-loop": "^1.2",
  8193. "react/stream": "^1.2"
  8194. },
  8195. "require-dev": {
  8196. "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
  8197. "react/socket": "^1.8",
  8198. "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0"
  8199. },
  8200. "type": "library",
  8201. "autoload": {
  8202. "psr-4": {
  8203. "React\\ChildProcess\\": "src"
  8204. }
  8205. },
  8206. "notification-url": "https://packagist.org/downloads/",
  8207. "license": [
  8208. "MIT"
  8209. ],
  8210. "authors": [
  8211. {
  8212. "name": "Christian Lück",
  8213. "email": "christian@clue.engineering",
  8214. "homepage": "https://clue.engineering/"
  8215. },
  8216. {
  8217. "name": "Cees-Jan Kiewiet",
  8218. "email": "reactphp@ceesjankiewiet.nl",
  8219. "homepage": "https://wyrihaximus.net/"
  8220. },
  8221. {
  8222. "name": "Jan Sorgalla",
  8223. "email": "jsorgalla@gmail.com",
  8224. "homepage": "https://sorgalla.com/"
  8225. },
  8226. {
  8227. "name": "Chris Boden",
  8228. "email": "cboden@gmail.com",
  8229. "homepage": "https://cboden.dev/"
  8230. }
  8231. ],
  8232. "description": "Event-driven library for executing child processes with ReactPHP.",
  8233. "keywords": [
  8234. "event-driven",
  8235. "process",
  8236. "reactphp"
  8237. ],
  8238. "support": {
  8239. "issues": "https://github.com/reactphp/child-process/issues",
  8240. "source": "https://github.com/reactphp/child-process/tree/v0.6.5"
  8241. },
  8242. "funding": [
  8243. {
  8244. "url": "https://github.com/WyriHaximus",
  8245. "type": "github"
  8246. },
  8247. {
  8248. "url": "https://github.com/clue",
  8249. "type": "github"
  8250. }
  8251. ],
  8252. "time": "2022-09-16T13:41:56+00:00"
  8253. },
  8254. {
  8255. "name": "react/dns",
  8256. "version": "v1.13.0",
  8257. "source": {
  8258. "type": "git",
  8259. "url": "https://github.com/reactphp/dns.git",
  8260. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5"
  8261. },
  8262. "dist": {
  8263. "type": "zip",
  8264. "url": "https://api.github.com/repos/reactphp/dns/zipball/eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8265. "reference": "eb8ae001b5a455665c89c1df97f6fb682f8fb0f5",
  8266. "shasum": ""
  8267. },
  8268. "require": {
  8269. "php": ">=5.3.0",
  8270. "react/cache": "^1.0 || ^0.6 || ^0.5",
  8271. "react/event-loop": "^1.2",
  8272. "react/promise": "^3.2 || ^2.7 || ^1.2.1"
  8273. },
  8274. "require-dev": {
  8275. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8276. "react/async": "^4.3 || ^3 || ^2",
  8277. "react/promise-timer": "^1.11"
  8278. },
  8279. "type": "library",
  8280. "autoload": {
  8281. "psr-4": {
  8282. "React\\Dns\\": "src/"
  8283. }
  8284. },
  8285. "notification-url": "https://packagist.org/downloads/",
  8286. "license": [
  8287. "MIT"
  8288. ],
  8289. "authors": [
  8290. {
  8291. "name": "Christian Lück",
  8292. "email": "christian@clue.engineering",
  8293. "homepage": "https://clue.engineering/"
  8294. },
  8295. {
  8296. "name": "Cees-Jan Kiewiet",
  8297. "email": "reactphp@ceesjankiewiet.nl",
  8298. "homepage": "https://wyrihaximus.net/"
  8299. },
  8300. {
  8301. "name": "Jan Sorgalla",
  8302. "email": "jsorgalla@gmail.com",
  8303. "homepage": "https://sorgalla.com/"
  8304. },
  8305. {
  8306. "name": "Chris Boden",
  8307. "email": "cboden@gmail.com",
  8308. "homepage": "https://cboden.dev/"
  8309. }
  8310. ],
  8311. "description": "Async DNS resolver for ReactPHP",
  8312. "keywords": [
  8313. "async",
  8314. "dns",
  8315. "dns-resolver",
  8316. "reactphp"
  8317. ],
  8318. "support": {
  8319. "issues": "https://github.com/reactphp/dns/issues",
  8320. "source": "https://github.com/reactphp/dns/tree/v1.13.0"
  8321. },
  8322. "funding": [
  8323. {
  8324. "url": "https://opencollective.com/reactphp",
  8325. "type": "open_collective"
  8326. }
  8327. ],
  8328. "time": "2024-06-13T14:18:03+00:00"
  8329. },
  8330. {
  8331. "name": "react/event-loop",
  8332. "version": "v1.5.0",
  8333. "source": {
  8334. "type": "git",
  8335. "url": "https://github.com/reactphp/event-loop.git",
  8336. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354"
  8337. },
  8338. "dist": {
  8339. "type": "zip",
  8340. "url": "https://api.github.com/repos/reactphp/event-loop/zipball/bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8341. "reference": "bbe0bd8c51ffc05ee43f1729087ed3bdf7d53354",
  8342. "shasum": ""
  8343. },
  8344. "require": {
  8345. "php": ">=5.3.0"
  8346. },
  8347. "require-dev": {
  8348. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8349. },
  8350. "suggest": {
  8351. "ext-pcntl": "For signal handling support when using the StreamSelectLoop"
  8352. },
  8353. "type": "library",
  8354. "autoload": {
  8355. "psr-4": {
  8356. "React\\EventLoop\\": "src/"
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Christian Lück",
  8366. "email": "christian@clue.engineering",
  8367. "homepage": "https://clue.engineering/"
  8368. },
  8369. {
  8370. "name": "Cees-Jan Kiewiet",
  8371. "email": "reactphp@ceesjankiewiet.nl",
  8372. "homepage": "https://wyrihaximus.net/"
  8373. },
  8374. {
  8375. "name": "Jan Sorgalla",
  8376. "email": "jsorgalla@gmail.com",
  8377. "homepage": "https://sorgalla.com/"
  8378. },
  8379. {
  8380. "name": "Chris Boden",
  8381. "email": "cboden@gmail.com",
  8382. "homepage": "https://cboden.dev/"
  8383. }
  8384. ],
  8385. "description": "ReactPHP's core reactor event loop that libraries can use for evented I/O.",
  8386. "keywords": [
  8387. "asynchronous",
  8388. "event-loop"
  8389. ],
  8390. "support": {
  8391. "issues": "https://github.com/reactphp/event-loop/issues",
  8392. "source": "https://github.com/reactphp/event-loop/tree/v1.5.0"
  8393. },
  8394. "funding": [
  8395. {
  8396. "url": "https://opencollective.com/reactphp",
  8397. "type": "open_collective"
  8398. }
  8399. ],
  8400. "time": "2023-11-13T13:48:05+00:00"
  8401. },
  8402. {
  8403. "name": "react/promise",
  8404. "version": "v3.2.0",
  8405. "source": {
  8406. "type": "git",
  8407. "url": "https://github.com/reactphp/promise.git",
  8408. "reference": "8a164643313c71354582dc850b42b33fa12a4b63"
  8409. },
  8410. "dist": {
  8411. "type": "zip",
  8412. "url": "https://api.github.com/repos/reactphp/promise/zipball/8a164643313c71354582dc850b42b33fa12a4b63",
  8413. "reference": "8a164643313c71354582dc850b42b33fa12a4b63",
  8414. "shasum": ""
  8415. },
  8416. "require": {
  8417. "php": ">=7.1.0"
  8418. },
  8419. "require-dev": {
  8420. "phpstan/phpstan": "1.10.39 || 1.4.10",
  8421. "phpunit/phpunit": "^9.6 || ^7.5"
  8422. },
  8423. "type": "library",
  8424. "autoload": {
  8425. "files": [
  8426. "src/functions_include.php"
  8427. ],
  8428. "psr-4": {
  8429. "React\\Promise\\": "src/"
  8430. }
  8431. },
  8432. "notification-url": "https://packagist.org/downloads/",
  8433. "license": [
  8434. "MIT"
  8435. ],
  8436. "authors": [
  8437. {
  8438. "name": "Jan Sorgalla",
  8439. "email": "jsorgalla@gmail.com",
  8440. "homepage": "https://sorgalla.com/"
  8441. },
  8442. {
  8443. "name": "Christian Lück",
  8444. "email": "christian@clue.engineering",
  8445. "homepage": "https://clue.engineering/"
  8446. },
  8447. {
  8448. "name": "Cees-Jan Kiewiet",
  8449. "email": "reactphp@ceesjankiewiet.nl",
  8450. "homepage": "https://wyrihaximus.net/"
  8451. },
  8452. {
  8453. "name": "Chris Boden",
  8454. "email": "cboden@gmail.com",
  8455. "homepage": "https://cboden.dev/"
  8456. }
  8457. ],
  8458. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  8459. "keywords": [
  8460. "promise",
  8461. "promises"
  8462. ],
  8463. "support": {
  8464. "issues": "https://github.com/reactphp/promise/issues",
  8465. "source": "https://github.com/reactphp/promise/tree/v3.2.0"
  8466. },
  8467. "funding": [
  8468. {
  8469. "url": "https://opencollective.com/reactphp",
  8470. "type": "open_collective"
  8471. }
  8472. ],
  8473. "time": "2024-05-24T10:39:05+00:00"
  8474. },
  8475. {
  8476. "name": "react/socket",
  8477. "version": "v1.16.0",
  8478. "source": {
  8479. "type": "git",
  8480. "url": "https://github.com/reactphp/socket.git",
  8481. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1"
  8482. },
  8483. "dist": {
  8484. "type": "zip",
  8485. "url": "https://api.github.com/repos/reactphp/socket/zipball/23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8486. "reference": "23e4ff33ea3e160d2d1f59a0e6050e4b0fb0eac1",
  8487. "shasum": ""
  8488. },
  8489. "require": {
  8490. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8491. "php": ">=5.3.0",
  8492. "react/dns": "^1.13",
  8493. "react/event-loop": "^1.2",
  8494. "react/promise": "^3.2 || ^2.6 || ^1.2.1",
  8495. "react/stream": "^1.4"
  8496. },
  8497. "require-dev": {
  8498. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
  8499. "react/async": "^4.3 || ^3.3 || ^2",
  8500. "react/promise-stream": "^1.4",
  8501. "react/promise-timer": "^1.11"
  8502. },
  8503. "type": "library",
  8504. "autoload": {
  8505. "psr-4": {
  8506. "React\\Socket\\": "src/"
  8507. }
  8508. },
  8509. "notification-url": "https://packagist.org/downloads/",
  8510. "license": [
  8511. "MIT"
  8512. ],
  8513. "authors": [
  8514. {
  8515. "name": "Christian Lück",
  8516. "email": "christian@clue.engineering",
  8517. "homepage": "https://clue.engineering/"
  8518. },
  8519. {
  8520. "name": "Cees-Jan Kiewiet",
  8521. "email": "reactphp@ceesjankiewiet.nl",
  8522. "homepage": "https://wyrihaximus.net/"
  8523. },
  8524. {
  8525. "name": "Jan Sorgalla",
  8526. "email": "jsorgalla@gmail.com",
  8527. "homepage": "https://sorgalla.com/"
  8528. },
  8529. {
  8530. "name": "Chris Boden",
  8531. "email": "cboden@gmail.com",
  8532. "homepage": "https://cboden.dev/"
  8533. }
  8534. ],
  8535. "description": "Async, streaming plaintext TCP/IP and secure TLS socket server and client connections for ReactPHP",
  8536. "keywords": [
  8537. "Connection",
  8538. "Socket",
  8539. "async",
  8540. "reactphp",
  8541. "stream"
  8542. ],
  8543. "support": {
  8544. "issues": "https://github.com/reactphp/socket/issues",
  8545. "source": "https://github.com/reactphp/socket/tree/v1.16.0"
  8546. },
  8547. "funding": [
  8548. {
  8549. "url": "https://opencollective.com/reactphp",
  8550. "type": "open_collective"
  8551. }
  8552. ],
  8553. "time": "2024-07-26T10:38:09+00:00"
  8554. },
  8555. {
  8556. "name": "react/stream",
  8557. "version": "v1.4.0",
  8558. "source": {
  8559. "type": "git",
  8560. "url": "https://github.com/reactphp/stream.git",
  8561. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d"
  8562. },
  8563. "dist": {
  8564. "type": "zip",
  8565. "url": "https://api.github.com/repos/reactphp/stream/zipball/1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8566. "reference": "1e5b0acb8fe55143b5b426817155190eb6f5b18d",
  8567. "shasum": ""
  8568. },
  8569. "require": {
  8570. "evenement/evenement": "^3.0 || ^2.0 || ^1.0",
  8571. "php": ">=5.3.8",
  8572. "react/event-loop": "^1.2"
  8573. },
  8574. "require-dev": {
  8575. "clue/stream-filter": "~1.2",
  8576. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  8577. },
  8578. "type": "library",
  8579. "autoload": {
  8580. "psr-4": {
  8581. "React\\Stream\\": "src/"
  8582. }
  8583. },
  8584. "notification-url": "https://packagist.org/downloads/",
  8585. "license": [
  8586. "MIT"
  8587. ],
  8588. "authors": [
  8589. {
  8590. "name": "Christian Lück",
  8591. "email": "christian@clue.engineering",
  8592. "homepage": "https://clue.engineering/"
  8593. },
  8594. {
  8595. "name": "Cees-Jan Kiewiet",
  8596. "email": "reactphp@ceesjankiewiet.nl",
  8597. "homepage": "https://wyrihaximus.net/"
  8598. },
  8599. {
  8600. "name": "Jan Sorgalla",
  8601. "email": "jsorgalla@gmail.com",
  8602. "homepage": "https://sorgalla.com/"
  8603. },
  8604. {
  8605. "name": "Chris Boden",
  8606. "email": "cboden@gmail.com",
  8607. "homepage": "https://cboden.dev/"
  8608. }
  8609. ],
  8610. "description": "Event-driven readable and writable streams for non-blocking I/O in ReactPHP",
  8611. "keywords": [
  8612. "event-driven",
  8613. "io",
  8614. "non-blocking",
  8615. "pipe",
  8616. "reactphp",
  8617. "readable",
  8618. "stream",
  8619. "writable"
  8620. ],
  8621. "support": {
  8622. "issues": "https://github.com/reactphp/stream/issues",
  8623. "source": "https://github.com/reactphp/stream/tree/v1.4.0"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://opencollective.com/reactphp",
  8628. "type": "open_collective"
  8629. }
  8630. ],
  8631. "time": "2024-06-11T12:45:25+00:00"
  8632. },
  8633. {
  8634. "name": "sebastian/cli-parser",
  8635. "version": "2.0.1",
  8636. "source": {
  8637. "type": "git",
  8638. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8639. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8640. },
  8641. "dist": {
  8642. "type": "zip",
  8643. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8644. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8645. "shasum": ""
  8646. },
  8647. "require": {
  8648. "php": ">=8.1"
  8649. },
  8650. "require-dev": {
  8651. "phpunit/phpunit": "^10.0"
  8652. },
  8653. "type": "library",
  8654. "extra": {
  8655. "branch-alias": {
  8656. "dev-main": "2.0-dev"
  8657. }
  8658. },
  8659. "autoload": {
  8660. "classmap": [
  8661. "src/"
  8662. ]
  8663. },
  8664. "notification-url": "https://packagist.org/downloads/",
  8665. "license": [
  8666. "BSD-3-Clause"
  8667. ],
  8668. "authors": [
  8669. {
  8670. "name": "Sebastian Bergmann",
  8671. "email": "sebastian@phpunit.de",
  8672. "role": "lead"
  8673. }
  8674. ],
  8675. "description": "Library for parsing CLI options",
  8676. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8677. "support": {
  8678. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8679. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8680. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8681. },
  8682. "funding": [
  8683. {
  8684. "url": "https://github.com/sebastianbergmann",
  8685. "type": "github"
  8686. }
  8687. ],
  8688. "time": "2024-03-02T07:12:49+00:00"
  8689. },
  8690. {
  8691. "name": "sebastian/code-unit",
  8692. "version": "2.0.0",
  8693. "source": {
  8694. "type": "git",
  8695. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8696. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8697. },
  8698. "dist": {
  8699. "type": "zip",
  8700. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8701. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8702. "shasum": ""
  8703. },
  8704. "require": {
  8705. "php": ">=8.1"
  8706. },
  8707. "require-dev": {
  8708. "phpunit/phpunit": "^10.0"
  8709. },
  8710. "type": "library",
  8711. "extra": {
  8712. "branch-alias": {
  8713. "dev-main": "2.0-dev"
  8714. }
  8715. },
  8716. "autoload": {
  8717. "classmap": [
  8718. "src/"
  8719. ]
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "BSD-3-Clause"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Sebastian Bergmann",
  8728. "email": "sebastian@phpunit.de",
  8729. "role": "lead"
  8730. }
  8731. ],
  8732. "description": "Collection of value objects that represent the PHP code units",
  8733. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8734. "support": {
  8735. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8736. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8737. },
  8738. "funding": [
  8739. {
  8740. "url": "https://github.com/sebastianbergmann",
  8741. "type": "github"
  8742. }
  8743. ],
  8744. "time": "2023-02-03T06:58:43+00:00"
  8745. },
  8746. {
  8747. "name": "sebastian/code-unit-reverse-lookup",
  8748. "version": "3.0.0",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8752. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8757. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "php": ">=8.1"
  8762. },
  8763. "require-dev": {
  8764. "phpunit/phpunit": "^10.0"
  8765. },
  8766. "type": "library",
  8767. "extra": {
  8768. "branch-alias": {
  8769. "dev-main": "3.0-dev"
  8770. }
  8771. },
  8772. "autoload": {
  8773. "classmap": [
  8774. "src/"
  8775. ]
  8776. },
  8777. "notification-url": "https://packagist.org/downloads/",
  8778. "license": [
  8779. "BSD-3-Clause"
  8780. ],
  8781. "authors": [
  8782. {
  8783. "name": "Sebastian Bergmann",
  8784. "email": "sebastian@phpunit.de"
  8785. }
  8786. ],
  8787. "description": "Looks up which function or method a line of code belongs to",
  8788. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8789. "support": {
  8790. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8791. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8792. },
  8793. "funding": [
  8794. {
  8795. "url": "https://github.com/sebastianbergmann",
  8796. "type": "github"
  8797. }
  8798. ],
  8799. "time": "2023-02-03T06:59:15+00:00"
  8800. },
  8801. {
  8802. "name": "sebastian/comparator",
  8803. "version": "5.0.3",
  8804. "source": {
  8805. "type": "git",
  8806. "url": "https://github.com/sebastianbergmann/comparator.git",
  8807. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e"
  8808. },
  8809. "dist": {
  8810. "type": "zip",
  8811. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8812. "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e",
  8813. "shasum": ""
  8814. },
  8815. "require": {
  8816. "ext-dom": "*",
  8817. "ext-mbstring": "*",
  8818. "php": ">=8.1",
  8819. "sebastian/diff": "^5.0",
  8820. "sebastian/exporter": "^5.0"
  8821. },
  8822. "require-dev": {
  8823. "phpunit/phpunit": "^10.5"
  8824. },
  8825. "type": "library",
  8826. "extra": {
  8827. "branch-alias": {
  8828. "dev-main": "5.0-dev"
  8829. }
  8830. },
  8831. "autoload": {
  8832. "classmap": [
  8833. "src/"
  8834. ]
  8835. },
  8836. "notification-url": "https://packagist.org/downloads/",
  8837. "license": [
  8838. "BSD-3-Clause"
  8839. ],
  8840. "authors": [
  8841. {
  8842. "name": "Sebastian Bergmann",
  8843. "email": "sebastian@phpunit.de"
  8844. },
  8845. {
  8846. "name": "Jeff Welch",
  8847. "email": "whatthejeff@gmail.com"
  8848. },
  8849. {
  8850. "name": "Volker Dusch",
  8851. "email": "github@wallbash.com"
  8852. },
  8853. {
  8854. "name": "Bernhard Schussek",
  8855. "email": "bschussek@2bepublished.at"
  8856. }
  8857. ],
  8858. "description": "Provides the functionality to compare PHP values for equality",
  8859. "homepage": "https://github.com/sebastianbergmann/comparator",
  8860. "keywords": [
  8861. "comparator",
  8862. "compare",
  8863. "equality"
  8864. ],
  8865. "support": {
  8866. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8867. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8868. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.3"
  8869. },
  8870. "funding": [
  8871. {
  8872. "url": "https://github.com/sebastianbergmann",
  8873. "type": "github"
  8874. }
  8875. ],
  8876. "time": "2024-10-18T14:56:07+00:00"
  8877. },
  8878. {
  8879. "name": "sebastian/complexity",
  8880. "version": "3.2.0",
  8881. "source": {
  8882. "type": "git",
  8883. "url": "https://github.com/sebastianbergmann/complexity.git",
  8884. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8885. },
  8886. "dist": {
  8887. "type": "zip",
  8888. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8889. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8890. "shasum": ""
  8891. },
  8892. "require": {
  8893. "nikic/php-parser": "^4.18 || ^5.0",
  8894. "php": ">=8.1"
  8895. },
  8896. "require-dev": {
  8897. "phpunit/phpunit": "^10.0"
  8898. },
  8899. "type": "library",
  8900. "extra": {
  8901. "branch-alias": {
  8902. "dev-main": "3.2-dev"
  8903. }
  8904. },
  8905. "autoload": {
  8906. "classmap": [
  8907. "src/"
  8908. ]
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "BSD-3-Clause"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Sebastian Bergmann",
  8917. "email": "sebastian@phpunit.de",
  8918. "role": "lead"
  8919. }
  8920. ],
  8921. "description": "Library for calculating the complexity of PHP code units",
  8922. "homepage": "https://github.com/sebastianbergmann/complexity",
  8923. "support": {
  8924. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8925. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8926. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://github.com/sebastianbergmann",
  8931. "type": "github"
  8932. }
  8933. ],
  8934. "time": "2023-12-21T08:37:17+00:00"
  8935. },
  8936. {
  8937. "name": "sebastian/diff",
  8938. "version": "5.1.1",
  8939. "source": {
  8940. "type": "git",
  8941. "url": "https://github.com/sebastianbergmann/diff.git",
  8942. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8943. },
  8944. "dist": {
  8945. "type": "zip",
  8946. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8947. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8948. "shasum": ""
  8949. },
  8950. "require": {
  8951. "php": ">=8.1"
  8952. },
  8953. "require-dev": {
  8954. "phpunit/phpunit": "^10.0",
  8955. "symfony/process": "^6.4"
  8956. },
  8957. "type": "library",
  8958. "extra": {
  8959. "branch-alias": {
  8960. "dev-main": "5.1-dev"
  8961. }
  8962. },
  8963. "autoload": {
  8964. "classmap": [
  8965. "src/"
  8966. ]
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "BSD-3-Clause"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Sebastian Bergmann",
  8975. "email": "sebastian@phpunit.de"
  8976. },
  8977. {
  8978. "name": "Kore Nordmann",
  8979. "email": "mail@kore-nordmann.de"
  8980. }
  8981. ],
  8982. "description": "Diff implementation",
  8983. "homepage": "https://github.com/sebastianbergmann/diff",
  8984. "keywords": [
  8985. "diff",
  8986. "udiff",
  8987. "unidiff",
  8988. "unified diff"
  8989. ],
  8990. "support": {
  8991. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8992. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8993. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8994. },
  8995. "funding": [
  8996. {
  8997. "url": "https://github.com/sebastianbergmann",
  8998. "type": "github"
  8999. }
  9000. ],
  9001. "time": "2024-03-02T07:15:17+00:00"
  9002. },
  9003. {
  9004. "name": "sebastian/environment",
  9005. "version": "6.1.0",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/sebastianbergmann/environment.git",
  9009. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  9014. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": ">=8.1"
  9019. },
  9020. "require-dev": {
  9021. "phpunit/phpunit": "^10.0"
  9022. },
  9023. "suggest": {
  9024. "ext-posix": "*"
  9025. },
  9026. "type": "library",
  9027. "extra": {
  9028. "branch-alias": {
  9029. "dev-main": "6.1-dev"
  9030. }
  9031. },
  9032. "autoload": {
  9033. "classmap": [
  9034. "src/"
  9035. ]
  9036. },
  9037. "notification-url": "https://packagist.org/downloads/",
  9038. "license": [
  9039. "BSD-3-Clause"
  9040. ],
  9041. "authors": [
  9042. {
  9043. "name": "Sebastian Bergmann",
  9044. "email": "sebastian@phpunit.de"
  9045. }
  9046. ],
  9047. "description": "Provides functionality to handle HHVM/PHP environments",
  9048. "homepage": "https://github.com/sebastianbergmann/environment",
  9049. "keywords": [
  9050. "Xdebug",
  9051. "environment",
  9052. "hhvm"
  9053. ],
  9054. "support": {
  9055. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9056. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9057. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  9058. },
  9059. "funding": [
  9060. {
  9061. "url": "https://github.com/sebastianbergmann",
  9062. "type": "github"
  9063. }
  9064. ],
  9065. "time": "2024-03-23T08:47:14+00:00"
  9066. },
  9067. {
  9068. "name": "sebastian/exporter",
  9069. "version": "5.1.2",
  9070. "source": {
  9071. "type": "git",
  9072. "url": "https://github.com/sebastianbergmann/exporter.git",
  9073. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  9074. },
  9075. "dist": {
  9076. "type": "zip",
  9077. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  9078. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  9079. "shasum": ""
  9080. },
  9081. "require": {
  9082. "ext-mbstring": "*",
  9083. "php": ">=8.1",
  9084. "sebastian/recursion-context": "^5.0"
  9085. },
  9086. "require-dev": {
  9087. "phpunit/phpunit": "^10.0"
  9088. },
  9089. "type": "library",
  9090. "extra": {
  9091. "branch-alias": {
  9092. "dev-main": "5.1-dev"
  9093. }
  9094. },
  9095. "autoload": {
  9096. "classmap": [
  9097. "src/"
  9098. ]
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "BSD-3-Clause"
  9103. ],
  9104. "authors": [
  9105. {
  9106. "name": "Sebastian Bergmann",
  9107. "email": "sebastian@phpunit.de"
  9108. },
  9109. {
  9110. "name": "Jeff Welch",
  9111. "email": "whatthejeff@gmail.com"
  9112. },
  9113. {
  9114. "name": "Volker Dusch",
  9115. "email": "github@wallbash.com"
  9116. },
  9117. {
  9118. "name": "Adam Harvey",
  9119. "email": "aharvey@php.net"
  9120. },
  9121. {
  9122. "name": "Bernhard Schussek",
  9123. "email": "bschussek@gmail.com"
  9124. }
  9125. ],
  9126. "description": "Provides the functionality to export PHP variables for visualization",
  9127. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9128. "keywords": [
  9129. "export",
  9130. "exporter"
  9131. ],
  9132. "support": {
  9133. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9134. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9135. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  9136. },
  9137. "funding": [
  9138. {
  9139. "url": "https://github.com/sebastianbergmann",
  9140. "type": "github"
  9141. }
  9142. ],
  9143. "time": "2024-03-02T07:17:12+00:00"
  9144. },
  9145. {
  9146. "name": "sebastian/global-state",
  9147. "version": "6.0.2",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/sebastianbergmann/global-state.git",
  9151. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9156. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": ">=8.1",
  9161. "sebastian/object-reflector": "^3.0",
  9162. "sebastian/recursion-context": "^5.0"
  9163. },
  9164. "require-dev": {
  9165. "ext-dom": "*",
  9166. "phpunit/phpunit": "^10.0"
  9167. },
  9168. "type": "library",
  9169. "extra": {
  9170. "branch-alias": {
  9171. "dev-main": "6.0-dev"
  9172. }
  9173. },
  9174. "autoload": {
  9175. "classmap": [
  9176. "src/"
  9177. ]
  9178. },
  9179. "notification-url": "https://packagist.org/downloads/",
  9180. "license": [
  9181. "BSD-3-Clause"
  9182. ],
  9183. "authors": [
  9184. {
  9185. "name": "Sebastian Bergmann",
  9186. "email": "sebastian@phpunit.de"
  9187. }
  9188. ],
  9189. "description": "Snapshotting of global state",
  9190. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9191. "keywords": [
  9192. "global state"
  9193. ],
  9194. "support": {
  9195. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9196. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9197. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  9198. },
  9199. "funding": [
  9200. {
  9201. "url": "https://github.com/sebastianbergmann",
  9202. "type": "github"
  9203. }
  9204. ],
  9205. "time": "2024-03-02T07:19:19+00:00"
  9206. },
  9207. {
  9208. "name": "sebastian/lines-of-code",
  9209. "version": "2.0.2",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9213. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9218. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "nikic/php-parser": "^4.18 || ^5.0",
  9223. "php": ">=8.1"
  9224. },
  9225. "require-dev": {
  9226. "phpunit/phpunit": "^10.0"
  9227. },
  9228. "type": "library",
  9229. "extra": {
  9230. "branch-alias": {
  9231. "dev-main": "2.0-dev"
  9232. }
  9233. },
  9234. "autoload": {
  9235. "classmap": [
  9236. "src/"
  9237. ]
  9238. },
  9239. "notification-url": "https://packagist.org/downloads/",
  9240. "license": [
  9241. "BSD-3-Clause"
  9242. ],
  9243. "authors": [
  9244. {
  9245. "name": "Sebastian Bergmann",
  9246. "email": "sebastian@phpunit.de",
  9247. "role": "lead"
  9248. }
  9249. ],
  9250. "description": "Library for counting the lines of code in PHP source code",
  9251. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9252. "support": {
  9253. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9254. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9255. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9256. },
  9257. "funding": [
  9258. {
  9259. "url": "https://github.com/sebastianbergmann",
  9260. "type": "github"
  9261. }
  9262. ],
  9263. "time": "2023-12-21T08:38:20+00:00"
  9264. },
  9265. {
  9266. "name": "sebastian/object-enumerator",
  9267. "version": "5.0.0",
  9268. "source": {
  9269. "type": "git",
  9270. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9271. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9272. },
  9273. "dist": {
  9274. "type": "zip",
  9275. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9276. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9277. "shasum": ""
  9278. },
  9279. "require": {
  9280. "php": ">=8.1",
  9281. "sebastian/object-reflector": "^3.0",
  9282. "sebastian/recursion-context": "^5.0"
  9283. },
  9284. "require-dev": {
  9285. "phpunit/phpunit": "^10.0"
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-main": "5.0-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "classmap": [
  9295. "src/"
  9296. ]
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "license": [
  9300. "BSD-3-Clause"
  9301. ],
  9302. "authors": [
  9303. {
  9304. "name": "Sebastian Bergmann",
  9305. "email": "sebastian@phpunit.de"
  9306. }
  9307. ],
  9308. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9309. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9310. "support": {
  9311. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9312. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9313. },
  9314. "funding": [
  9315. {
  9316. "url": "https://github.com/sebastianbergmann",
  9317. "type": "github"
  9318. }
  9319. ],
  9320. "time": "2023-02-03T07:08:32+00:00"
  9321. },
  9322. {
  9323. "name": "sebastian/object-reflector",
  9324. "version": "3.0.0",
  9325. "source": {
  9326. "type": "git",
  9327. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9328. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9329. },
  9330. "dist": {
  9331. "type": "zip",
  9332. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9333. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9334. "shasum": ""
  9335. },
  9336. "require": {
  9337. "php": ">=8.1"
  9338. },
  9339. "require-dev": {
  9340. "phpunit/phpunit": "^10.0"
  9341. },
  9342. "type": "library",
  9343. "extra": {
  9344. "branch-alias": {
  9345. "dev-main": "3.0-dev"
  9346. }
  9347. },
  9348. "autoload": {
  9349. "classmap": [
  9350. "src/"
  9351. ]
  9352. },
  9353. "notification-url": "https://packagist.org/downloads/",
  9354. "license": [
  9355. "BSD-3-Clause"
  9356. ],
  9357. "authors": [
  9358. {
  9359. "name": "Sebastian Bergmann",
  9360. "email": "sebastian@phpunit.de"
  9361. }
  9362. ],
  9363. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9364. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9365. "support": {
  9366. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9367. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9368. },
  9369. "funding": [
  9370. {
  9371. "url": "https://github.com/sebastianbergmann",
  9372. "type": "github"
  9373. }
  9374. ],
  9375. "time": "2023-02-03T07:06:18+00:00"
  9376. },
  9377. {
  9378. "name": "sebastian/recursion-context",
  9379. "version": "5.0.0",
  9380. "source": {
  9381. "type": "git",
  9382. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9383. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9384. },
  9385. "dist": {
  9386. "type": "zip",
  9387. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9388. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9389. "shasum": ""
  9390. },
  9391. "require": {
  9392. "php": ">=8.1"
  9393. },
  9394. "require-dev": {
  9395. "phpunit/phpunit": "^10.0"
  9396. },
  9397. "type": "library",
  9398. "extra": {
  9399. "branch-alias": {
  9400. "dev-main": "5.0-dev"
  9401. }
  9402. },
  9403. "autoload": {
  9404. "classmap": [
  9405. "src/"
  9406. ]
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "BSD-3-Clause"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Sebastian Bergmann",
  9415. "email": "sebastian@phpunit.de"
  9416. },
  9417. {
  9418. "name": "Jeff Welch",
  9419. "email": "whatthejeff@gmail.com"
  9420. },
  9421. {
  9422. "name": "Adam Harvey",
  9423. "email": "aharvey@php.net"
  9424. }
  9425. ],
  9426. "description": "Provides functionality to recursively process PHP variables",
  9427. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9428. "support": {
  9429. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9430. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9431. },
  9432. "funding": [
  9433. {
  9434. "url": "https://github.com/sebastianbergmann",
  9435. "type": "github"
  9436. }
  9437. ],
  9438. "time": "2023-02-03T07:05:40+00:00"
  9439. },
  9440. {
  9441. "name": "sebastian/type",
  9442. "version": "4.0.0",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/sebastianbergmann/type.git",
  9446. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9451. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "php": ">=8.1"
  9456. },
  9457. "require-dev": {
  9458. "phpunit/phpunit": "^10.0"
  9459. },
  9460. "type": "library",
  9461. "extra": {
  9462. "branch-alias": {
  9463. "dev-main": "4.0-dev"
  9464. }
  9465. },
  9466. "autoload": {
  9467. "classmap": [
  9468. "src/"
  9469. ]
  9470. },
  9471. "notification-url": "https://packagist.org/downloads/",
  9472. "license": [
  9473. "BSD-3-Clause"
  9474. ],
  9475. "authors": [
  9476. {
  9477. "name": "Sebastian Bergmann",
  9478. "email": "sebastian@phpunit.de",
  9479. "role": "lead"
  9480. }
  9481. ],
  9482. "description": "Collection of value objects that represent the types of the PHP type system",
  9483. "homepage": "https://github.com/sebastianbergmann/type",
  9484. "support": {
  9485. "issues": "https://github.com/sebastianbergmann/type/issues",
  9486. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9487. },
  9488. "funding": [
  9489. {
  9490. "url": "https://github.com/sebastianbergmann",
  9491. "type": "github"
  9492. }
  9493. ],
  9494. "time": "2023-02-03T07:10:45+00:00"
  9495. },
  9496. {
  9497. "name": "sebastian/version",
  9498. "version": "4.0.1",
  9499. "source": {
  9500. "type": "git",
  9501. "url": "https://github.com/sebastianbergmann/version.git",
  9502. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9503. },
  9504. "dist": {
  9505. "type": "zip",
  9506. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9507. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9508. "shasum": ""
  9509. },
  9510. "require": {
  9511. "php": ">=8.1"
  9512. },
  9513. "type": "library",
  9514. "extra": {
  9515. "branch-alias": {
  9516. "dev-main": "4.0-dev"
  9517. }
  9518. },
  9519. "autoload": {
  9520. "classmap": [
  9521. "src/"
  9522. ]
  9523. },
  9524. "notification-url": "https://packagist.org/downloads/",
  9525. "license": [
  9526. "BSD-3-Clause"
  9527. ],
  9528. "authors": [
  9529. {
  9530. "name": "Sebastian Bergmann",
  9531. "email": "sebastian@phpunit.de",
  9532. "role": "lead"
  9533. }
  9534. ],
  9535. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9536. "homepage": "https://github.com/sebastianbergmann/version",
  9537. "support": {
  9538. "issues": "https://github.com/sebastianbergmann/version/issues",
  9539. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9540. },
  9541. "funding": [
  9542. {
  9543. "url": "https://github.com/sebastianbergmann",
  9544. "type": "github"
  9545. }
  9546. ],
  9547. "time": "2023-02-07T11:34:05+00:00"
  9548. },
  9549. {
  9550. "name": "swoole/ide-helper",
  9551. "version": "5.1.5",
  9552. "source": {
  9553. "type": "git",
  9554. "url": "https://github.com/swoole/ide-helper.git",
  9555. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943"
  9556. },
  9557. "dist": {
  9558. "type": "zip",
  9559. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/a4207701bb55fe0cea06f840d2054cbc4a90b943",
  9560. "reference": "a4207701bb55fe0cea06f840d2054cbc4a90b943",
  9561. "shasum": ""
  9562. },
  9563. "type": "library",
  9564. "notification-url": "https://packagist.org/downloads/",
  9565. "license": [
  9566. "Apache-2.0"
  9567. ],
  9568. "authors": [
  9569. {
  9570. "name": "Team Swoole",
  9571. "email": "team@swoole.com"
  9572. }
  9573. ],
  9574. "description": "IDE help files for Swoole.",
  9575. "support": {
  9576. "issues": "https://github.com/swoole/ide-helper/issues",
  9577. "source": "https://github.com/swoole/ide-helper/tree/5.1.5"
  9578. },
  9579. "time": "2024-11-05T07:35:30+00:00"
  9580. },
  9581. {
  9582. "name": "symfony/event-dispatcher",
  9583. "version": "v6.4.13",
  9584. "source": {
  9585. "type": "git",
  9586. "url": "https://github.com/symfony/event-dispatcher.git",
  9587. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  9588. },
  9589. "dist": {
  9590. "type": "zip",
  9591. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9592. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  9593. "shasum": ""
  9594. },
  9595. "require": {
  9596. "php": ">=8.1",
  9597. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9598. },
  9599. "conflict": {
  9600. "symfony/dependency-injection": "<5.4",
  9601. "symfony/service-contracts": "<2.5"
  9602. },
  9603. "provide": {
  9604. "psr/event-dispatcher-implementation": "1.0",
  9605. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9606. },
  9607. "require-dev": {
  9608. "psr/log": "^1|^2|^3",
  9609. "symfony/config": "^5.4|^6.0|^7.0",
  9610. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9611. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9612. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9613. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9614. "symfony/service-contracts": "^2.5|^3",
  9615. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "psr-4": {
  9620. "Symfony\\Component\\EventDispatcher\\": ""
  9621. },
  9622. "exclude-from-classmap": [
  9623. "/Tests/"
  9624. ]
  9625. },
  9626. "notification-url": "https://packagist.org/downloads/",
  9627. "license": [
  9628. "MIT"
  9629. ],
  9630. "authors": [
  9631. {
  9632. "name": "Fabien Potencier",
  9633. "email": "fabien@symfony.com"
  9634. },
  9635. {
  9636. "name": "Symfony Community",
  9637. "homepage": "https://symfony.com/contributors"
  9638. }
  9639. ],
  9640. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9641. "homepage": "https://symfony.com",
  9642. "support": {
  9643. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  9644. },
  9645. "funding": [
  9646. {
  9647. "url": "https://symfony.com/sponsor",
  9648. "type": "custom"
  9649. },
  9650. {
  9651. "url": "https://github.com/fabpot",
  9652. "type": "github"
  9653. },
  9654. {
  9655. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9656. "type": "tidelift"
  9657. }
  9658. ],
  9659. "time": "2024-09-25T14:18:03+00:00"
  9660. },
  9661. {
  9662. "name": "symfony/event-dispatcher-contracts",
  9663. "version": "v3.5.0",
  9664. "source": {
  9665. "type": "git",
  9666. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9667. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  9668. },
  9669. "dist": {
  9670. "type": "zip",
  9671. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  9672. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  9673. "shasum": ""
  9674. },
  9675. "require": {
  9676. "php": ">=8.1",
  9677. "psr/event-dispatcher": "^1"
  9678. },
  9679. "type": "library",
  9680. "extra": {
  9681. "branch-alias": {
  9682. "dev-main": "3.5-dev"
  9683. },
  9684. "thanks": {
  9685. "name": "symfony/contracts",
  9686. "url": "https://github.com/symfony/contracts"
  9687. }
  9688. },
  9689. "autoload": {
  9690. "psr-4": {
  9691. "Symfony\\Contracts\\EventDispatcher\\": ""
  9692. }
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "MIT"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Nicolas Grekas",
  9701. "email": "p@tchwork.com"
  9702. },
  9703. {
  9704. "name": "Symfony Community",
  9705. "homepage": "https://symfony.com/contributors"
  9706. }
  9707. ],
  9708. "description": "Generic abstractions related to dispatching event",
  9709. "homepage": "https://symfony.com",
  9710. "keywords": [
  9711. "abstractions",
  9712. "contracts",
  9713. "decoupling",
  9714. "interfaces",
  9715. "interoperability",
  9716. "standards"
  9717. ],
  9718. "support": {
  9719. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  9720. },
  9721. "funding": [
  9722. {
  9723. "url": "https://symfony.com/sponsor",
  9724. "type": "custom"
  9725. },
  9726. {
  9727. "url": "https://github.com/fabpot",
  9728. "type": "github"
  9729. },
  9730. {
  9731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9732. "type": "tidelift"
  9733. }
  9734. ],
  9735. "time": "2024-04-18T09:32:20+00:00"
  9736. },
  9737. {
  9738. "name": "symfony/filesystem",
  9739. "version": "v6.4.13",
  9740. "source": {
  9741. "type": "git",
  9742. "url": "https://github.com/symfony/filesystem.git",
  9743. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  9744. },
  9745. "dist": {
  9746. "type": "zip",
  9747. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9748. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  9749. "shasum": ""
  9750. },
  9751. "require": {
  9752. "php": ">=8.1",
  9753. "symfony/polyfill-ctype": "~1.8",
  9754. "symfony/polyfill-mbstring": "~1.8"
  9755. },
  9756. "require-dev": {
  9757. "symfony/process": "^5.4|^6.4|^7.0"
  9758. },
  9759. "type": "library",
  9760. "autoload": {
  9761. "psr-4": {
  9762. "Symfony\\Component\\Filesystem\\": ""
  9763. },
  9764. "exclude-from-classmap": [
  9765. "/Tests/"
  9766. ]
  9767. },
  9768. "notification-url": "https://packagist.org/downloads/",
  9769. "license": [
  9770. "MIT"
  9771. ],
  9772. "authors": [
  9773. {
  9774. "name": "Fabien Potencier",
  9775. "email": "fabien@symfony.com"
  9776. },
  9777. {
  9778. "name": "Symfony Community",
  9779. "homepage": "https://symfony.com/contributors"
  9780. }
  9781. ],
  9782. "description": "Provides basic utilities for the filesystem",
  9783. "homepage": "https://symfony.com",
  9784. "support": {
  9785. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  9786. },
  9787. "funding": [
  9788. {
  9789. "url": "https://symfony.com/sponsor",
  9790. "type": "custom"
  9791. },
  9792. {
  9793. "url": "https://github.com/fabpot",
  9794. "type": "github"
  9795. },
  9796. {
  9797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9798. "type": "tidelift"
  9799. }
  9800. ],
  9801. "time": "2024-10-25T15:07:50+00:00"
  9802. },
  9803. {
  9804. "name": "symfony/http-foundation",
  9805. "version": "v6.4.14",
  9806. "source": {
  9807. "type": "git",
  9808. "url": "https://github.com/symfony/http-foundation.git",
  9809. "reference": "ba020a321a95519303a3f09ec2824d34d601c388"
  9810. },
  9811. "dist": {
  9812. "type": "zip",
  9813. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ba020a321a95519303a3f09ec2824d34d601c388",
  9814. "reference": "ba020a321a95519303a3f09ec2824d34d601c388",
  9815. "shasum": ""
  9816. },
  9817. "require": {
  9818. "php": ">=8.1",
  9819. "symfony/deprecation-contracts": "^2.5|^3",
  9820. "symfony/polyfill-mbstring": "~1.1",
  9821. "symfony/polyfill-php83": "^1.27"
  9822. },
  9823. "conflict": {
  9824. "symfony/cache": "<6.3"
  9825. },
  9826. "require-dev": {
  9827. "doctrine/dbal": "^2.13.1|^3|^4",
  9828. "predis/predis": "^1.1|^2.0",
  9829. "symfony/cache": "^6.3|^7.0",
  9830. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9831. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9832. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  9833. "symfony/mime": "^5.4|^6.0|^7.0",
  9834. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  9835. },
  9836. "type": "library",
  9837. "autoload": {
  9838. "psr-4": {
  9839. "Symfony\\Component\\HttpFoundation\\": ""
  9840. },
  9841. "exclude-from-classmap": [
  9842. "/Tests/"
  9843. ]
  9844. },
  9845. "notification-url": "https://packagist.org/downloads/",
  9846. "license": [
  9847. "MIT"
  9848. ],
  9849. "authors": [
  9850. {
  9851. "name": "Fabien Potencier",
  9852. "email": "fabien@symfony.com"
  9853. },
  9854. {
  9855. "name": "Symfony Community",
  9856. "homepage": "https://symfony.com/contributors"
  9857. }
  9858. ],
  9859. "description": "Defines an object-oriented layer for the HTTP specification",
  9860. "homepage": "https://symfony.com",
  9861. "support": {
  9862. "source": "https://github.com/symfony/http-foundation/tree/v6.4.14"
  9863. },
  9864. "funding": [
  9865. {
  9866. "url": "https://symfony.com/sponsor",
  9867. "type": "custom"
  9868. },
  9869. {
  9870. "url": "https://github.com/fabpot",
  9871. "type": "github"
  9872. },
  9873. {
  9874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9875. "type": "tidelift"
  9876. }
  9877. ],
  9878. "time": "2024-11-05T16:39:55+00:00"
  9879. },
  9880. {
  9881. "name": "symfony/options-resolver",
  9882. "version": "v6.4.13",
  9883. "source": {
  9884. "type": "git",
  9885. "url": "https://github.com/symfony/options-resolver.git",
  9886. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db"
  9887. },
  9888. "dist": {
  9889. "type": "zip",
  9890. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  9891. "reference": "0a62a9f2504a8dd27083f89d21894ceb01cc59db",
  9892. "shasum": ""
  9893. },
  9894. "require": {
  9895. "php": ">=8.1",
  9896. "symfony/deprecation-contracts": "^2.5|^3"
  9897. },
  9898. "type": "library",
  9899. "autoload": {
  9900. "psr-4": {
  9901. "Symfony\\Component\\OptionsResolver\\": ""
  9902. },
  9903. "exclude-from-classmap": [
  9904. "/Tests/"
  9905. ]
  9906. },
  9907. "notification-url": "https://packagist.org/downloads/",
  9908. "license": [
  9909. "MIT"
  9910. ],
  9911. "authors": [
  9912. {
  9913. "name": "Fabien Potencier",
  9914. "email": "fabien@symfony.com"
  9915. },
  9916. {
  9917. "name": "Symfony Community",
  9918. "homepage": "https://symfony.com/contributors"
  9919. }
  9920. ],
  9921. "description": "Provides an improved replacement for the array_replace PHP function",
  9922. "homepage": "https://symfony.com",
  9923. "keywords": [
  9924. "config",
  9925. "configuration",
  9926. "options"
  9927. ],
  9928. "support": {
  9929. "source": "https://github.com/symfony/options-resolver/tree/v6.4.13"
  9930. },
  9931. "funding": [
  9932. {
  9933. "url": "https://symfony.com/sponsor",
  9934. "type": "custom"
  9935. },
  9936. {
  9937. "url": "https://github.com/fabpot",
  9938. "type": "github"
  9939. },
  9940. {
  9941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9942. "type": "tidelift"
  9943. }
  9944. ],
  9945. "time": "2024-09-25T14:18:03+00:00"
  9946. },
  9947. {
  9948. "name": "symfony/polyfill-php81",
  9949. "version": "v1.31.0",
  9950. "source": {
  9951. "type": "git",
  9952. "url": "https://github.com/symfony/polyfill-php81.git",
  9953. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  9954. },
  9955. "dist": {
  9956. "type": "zip",
  9957. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9958. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9959. "shasum": ""
  9960. },
  9961. "require": {
  9962. "php": ">=7.2"
  9963. },
  9964. "type": "library",
  9965. "extra": {
  9966. "thanks": {
  9967. "name": "symfony/polyfill",
  9968. "url": "https://github.com/symfony/polyfill"
  9969. }
  9970. },
  9971. "autoload": {
  9972. "files": [
  9973. "bootstrap.php"
  9974. ],
  9975. "psr-4": {
  9976. "Symfony\\Polyfill\\Php81\\": ""
  9977. },
  9978. "classmap": [
  9979. "Resources/stubs"
  9980. ]
  9981. },
  9982. "notification-url": "https://packagist.org/downloads/",
  9983. "license": [
  9984. "MIT"
  9985. ],
  9986. "authors": [
  9987. {
  9988. "name": "Nicolas Grekas",
  9989. "email": "p@tchwork.com"
  9990. },
  9991. {
  9992. "name": "Symfony Community",
  9993. "homepage": "https://symfony.com/contributors"
  9994. }
  9995. ],
  9996. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9997. "homepage": "https://symfony.com",
  9998. "keywords": [
  9999. "compatibility",
  10000. "polyfill",
  10001. "portable",
  10002. "shim"
  10003. ],
  10004. "support": {
  10005. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://symfony.com/sponsor",
  10010. "type": "custom"
  10011. },
  10012. {
  10013. "url": "https://github.com/fabpot",
  10014. "type": "github"
  10015. },
  10016. {
  10017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10018. "type": "tidelift"
  10019. }
  10020. ],
  10021. "time": "2024-09-09T11:45:10+00:00"
  10022. },
  10023. {
  10024. "name": "symfony/polyfill-php83",
  10025. "version": "v1.31.0",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/symfony/polyfill-php83.git",
  10029. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  10034. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  10035. "shasum": ""
  10036. },
  10037. "require": {
  10038. "php": ">=7.2"
  10039. },
  10040. "type": "library",
  10041. "extra": {
  10042. "thanks": {
  10043. "name": "symfony/polyfill",
  10044. "url": "https://github.com/symfony/polyfill"
  10045. }
  10046. },
  10047. "autoload": {
  10048. "files": [
  10049. "bootstrap.php"
  10050. ],
  10051. "psr-4": {
  10052. "Symfony\\Polyfill\\Php83\\": ""
  10053. },
  10054. "classmap": [
  10055. "Resources/stubs"
  10056. ]
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "MIT"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Nicolas Grekas",
  10065. "email": "p@tchwork.com"
  10066. },
  10067. {
  10068. "name": "Symfony Community",
  10069. "homepage": "https://symfony.com/contributors"
  10070. }
  10071. ],
  10072. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10073. "homepage": "https://symfony.com",
  10074. "keywords": [
  10075. "compatibility",
  10076. "polyfill",
  10077. "portable",
  10078. "shim"
  10079. ],
  10080. "support": {
  10081. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  10082. },
  10083. "funding": [
  10084. {
  10085. "url": "https://symfony.com/sponsor",
  10086. "type": "custom"
  10087. },
  10088. {
  10089. "url": "https://github.com/fabpot",
  10090. "type": "github"
  10091. },
  10092. {
  10093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10094. "type": "tidelift"
  10095. }
  10096. ],
  10097. "time": "2024-09-09T11:45:10+00:00"
  10098. },
  10099. {
  10100. "name": "symfony/process",
  10101. "version": "v6.4.14",
  10102. "source": {
  10103. "type": "git",
  10104. "url": "https://github.com/symfony/process.git",
  10105. "reference": "25214adbb0996d18112548de20c281be9f27279f"
  10106. },
  10107. "dist": {
  10108. "type": "zip",
  10109. "url": "https://api.github.com/repos/symfony/process/zipball/25214adbb0996d18112548de20c281be9f27279f",
  10110. "reference": "25214adbb0996d18112548de20c281be9f27279f",
  10111. "shasum": ""
  10112. },
  10113. "require": {
  10114. "php": ">=8.1"
  10115. },
  10116. "type": "library",
  10117. "autoload": {
  10118. "psr-4": {
  10119. "Symfony\\Component\\Process\\": ""
  10120. },
  10121. "exclude-from-classmap": [
  10122. "/Tests/"
  10123. ]
  10124. },
  10125. "notification-url": "https://packagist.org/downloads/",
  10126. "license": [
  10127. "MIT"
  10128. ],
  10129. "authors": [
  10130. {
  10131. "name": "Fabien Potencier",
  10132. "email": "fabien@symfony.com"
  10133. },
  10134. {
  10135. "name": "Symfony Community",
  10136. "homepage": "https://symfony.com/contributors"
  10137. }
  10138. ],
  10139. "description": "Executes commands in sub-processes",
  10140. "homepage": "https://symfony.com",
  10141. "support": {
  10142. "source": "https://github.com/symfony/process/tree/v6.4.14"
  10143. },
  10144. "funding": [
  10145. {
  10146. "url": "https://symfony.com/sponsor",
  10147. "type": "custom"
  10148. },
  10149. {
  10150. "url": "https://github.com/fabpot",
  10151. "type": "github"
  10152. },
  10153. {
  10154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10155. "type": "tidelift"
  10156. }
  10157. ],
  10158. "time": "2024-11-06T09:25:01+00:00"
  10159. },
  10160. {
  10161. "name": "symfony/stopwatch",
  10162. "version": "v6.4.13",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/symfony/stopwatch.git",
  10166. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10171. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "php": ">=8.1",
  10176. "symfony/service-contracts": "^2.5|^3"
  10177. },
  10178. "type": "library",
  10179. "autoload": {
  10180. "psr-4": {
  10181. "Symfony\\Component\\Stopwatch\\": ""
  10182. },
  10183. "exclude-from-classmap": [
  10184. "/Tests/"
  10185. ]
  10186. },
  10187. "notification-url": "https://packagist.org/downloads/",
  10188. "license": [
  10189. "MIT"
  10190. ],
  10191. "authors": [
  10192. {
  10193. "name": "Fabien Potencier",
  10194. "email": "fabien@symfony.com"
  10195. },
  10196. {
  10197. "name": "Symfony Community",
  10198. "homepage": "https://symfony.com/contributors"
  10199. }
  10200. ],
  10201. "description": "Provides a way to profile code",
  10202. "homepage": "https://symfony.com",
  10203. "support": {
  10204. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  10205. },
  10206. "funding": [
  10207. {
  10208. "url": "https://symfony.com/sponsor",
  10209. "type": "custom"
  10210. },
  10211. {
  10212. "url": "https://github.com/fabpot",
  10213. "type": "github"
  10214. },
  10215. {
  10216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10217. "type": "tidelift"
  10218. }
  10219. ],
  10220. "time": "2024-09-25T14:18:03+00:00"
  10221. },
  10222. {
  10223. "name": "theseer/tokenizer",
  10224. "version": "1.2.3",
  10225. "source": {
  10226. "type": "git",
  10227. "url": "https://github.com/theseer/tokenizer.git",
  10228. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10229. },
  10230. "dist": {
  10231. "type": "zip",
  10232. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10233. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10234. "shasum": ""
  10235. },
  10236. "require": {
  10237. "ext-dom": "*",
  10238. "ext-tokenizer": "*",
  10239. "ext-xmlwriter": "*",
  10240. "php": "^7.2 || ^8.0"
  10241. },
  10242. "type": "library",
  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": "Arne Blankerts",
  10255. "email": "arne@blankerts.de",
  10256. "role": "Developer"
  10257. }
  10258. ],
  10259. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10260. "support": {
  10261. "issues": "https://github.com/theseer/tokenizer/issues",
  10262. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10263. },
  10264. "funding": [
  10265. {
  10266. "url": "https://github.com/theseer",
  10267. "type": "github"
  10268. }
  10269. ],
  10270. "time": "2024-03-03T12:36:25+00:00"
  10271. }
  10272. ],
  10273. "aliases": [],
  10274. "minimum-stability": "dev",
  10275. "stability-flags": {},
  10276. "prefer-stable": true,
  10277. "prefer-lowest": false,
  10278. "platform": {
  10279. "php": ">=8.1"
  10280. },
  10281. "platform-dev": {},
  10282. "plugin-api-version": "2.6.0"
  10283. }